@tailwind base;
@tailwind components;
@tailwind utilities;

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Saira", sans-serif;
  font-weight: 400;
  background-color: #f1f1f1;
  color: #132f28;
}

h2 {
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

/* Container */
.container {
  max-width: 1140px;
  margin: 0 auto;
}

/* Header */

/* header {
  background-color: #f1f1f1;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
} */

#logo img {
  max-width: 250px;
}

nav {
  position: relative;
  max-width: 1140px;
  margin: 0 auto; /* centraliza o conteúdo do nav */
  padding: 10px 20px;
  width: 100%;
}

/* === HEADER CONSISTENTE PARA TODAS AS PÁGINAS === */
/* ADICIONE ESTE CÓDIGO NOVO: */

.site-nav {
  background-color: #f1f1f1 !important;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.site-nav ul {
  background-color: #f1f1f1 !important;
}

.site-nav .bg-gray-50 {
  background-color: #f1f1f1 !important;
}

.site-nav .md\:bg-white {
  background-color: #f1f1f1 !important;
}

.site-nav .dark\:bg-gray-800 {
  background-color: #f1f1f1 !important;
}

.site-nav .md\:dark\:bg-gray-900 {
  background-color: #f1f1f1 !important;
}

/* Garantir que o container do nav tenha fundo consistente */
.site-nav .max-w-screen-xl {
  background-color: #f1f1f1;
}

.site-nav a {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #132f28;
  margin: 0 29px;
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: #1d9d74;
}
/* nav ul {
  background-color: #f1f1f1;
}
*/
nav a {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #132f28;
  margin: 0 29px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #1d9d74;
}


/* Seção Topo */
.topo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.right img {
  max-width: 600px;
  max-height: 800px;
}

.topo h1 {
  font-family: "DM Serif Display", serif;
  font-size: 60px;
  color: #043f07;
  line-height: 70px;
  padding-bottom: 30px;
}

.topo p {
  font-size: 24px;
  padding-bottom: 30px;
}

.app {
  cursor: pointer;
}

/* ESTILOS ADICIONAIS PARA SPA - Adicionar ao seu style.css existente */

/* Header de Produtos com Filtros */
.produtos-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.produtos-header h2 {
    margin-bottom: 20px;
}

.filtros-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-filtro {
    padding: 10px 20px;
    background-color: #f0f0f0;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #132f28;
    transition: all 0.3s ease;
}

.btn-filtro:hover {
    background-color: #e0e0e0;
    border-color: #1d9d74;
}

.btn-filtro.active {
    background-color: #1d9d74;
    color: white;
    border-color: #1d9d74;
}

.btn-voltar {
    background-color: #043f07;
    color: white;
    border-color: #043f07;
}

.btn-voltar:hover {
    background-color: #132f28;
    border-color: #132f28;
}

/* Animações para transição de produtos */
.produtos-lista {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Melhorias no card de categoria para indicar interatividade */
.categoria-card {
    position: relative;
    overflow: hidden;
}

.categoria-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(29, 157, 116, 0.2), transparent);
    transition: left 0.5s;
}

.categoria-card:hover::before {
    left: 100%;
}

.categoria-card.active {
    border-color: #1d9d74;
    background-color: #f0fff8;
    box-shadow: 0 4px 15px rgba(29, 157, 116, 0.3);
}

/* Badge do carrinho melhorado */
#carrinho-badge {
    animation: pulse 2s infinite;
}

/* Ajustes para o botão do carrinho com texto */
.btn-carrinho {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-carrinho:hover {
    background-color: #f3f4f6;
}

.btn-carrinho i {
    font-size: 1.25rem;
    color: #374151;
    min-width: 24px; /* Garante espaço fixo para o ícone */
}

.btn-carrinho:hover i {
    color: #16a34a;
}

.btn-carrinho span:not(.carrinho-badge) {
    font-weight: 500;
    font-size: 14px;
    color: #374151;
    white-space: nowrap;
}

.btn-carrinho:hover span:not(.carrinho-badge) {
    color: #16a34a;
}

/* Ajuste do badge para acomodar o texto */
.carrinho-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid #f1f1f1;
}

/* Ajustes específicos para desktop */
@media (min-width: 769px) {
    .btn-carrinho span:not(.carrinho-badge) {
        display: inline; /* Sempre mostra no desktop */
    }
    
    /* Ajuste da posição do badge quando tem texto */
    .btn-carrinho .carrinho-badge {
        top: -4px;
        right: 0px;
    }
}

/* Ajustes específicos para mobile */
@media (max-width: 768px) {
    /* No topo mobile */
    .md\:hidden .btn-carrinho {
        padding: 6px 8px;
    }
    
    .md\:hidden .btn-carrinho span:not(.carrinho-badge) {
        font-size: 12px;
    }
    
    /* No dropdown mobile */
    #navbar-default .btn-carrinho {
        justify-content: center;
        width: 100%;
        padding: 12px 16px;
    }
    
    #navbar-default .btn-carrinho span:not(.carrinho-badge) {
        font-size: 14px;
    }
}

/* Ajuste para telas muito pequenas */
@media (max-width: 360px) {
    .md\:hidden .btn-carrinho span:not(.carrinho-badge) {
        display: none; /* Esconde texto em telas muito pequenas */
    }
    
    .md\:hidden .btn-carrinho {
        padding: 6px;
    }
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Feedback visual ao adicionar produto */
@keyframes addToCart {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

.btn-adicionar-carrinho:active {
    animation: addToCart 0.3s ease;
}

/* Mensagem de categoria vazia */
.categoria-vazia {
    text-align: center;
    padding: 50px 20px;
    color: #808080;
    font-size: 18px;
}

/* Responsividade para filtros */
@media (max-width: 768px) {
    .filtros-container {
        width: 100%;
        padding: 0 20px;
    }
    
    .btn-filtro {
        font-size: 12px;
        padding: 8px 15px;
    }
}

@media (max-width: 425px) {
    .produtos-header h2 {
        font-size: 24px;
    }
    
    .filtros-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-filtro {
        width: 100%;
    }
}

/* Seção Sobre */
.sobre {
  padding: 50px 20px;
  text-align: center;
  background-color: #f5f5f5;
  margin-top: 5%;
}

.sobre h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.sobre p {
  font-size: 18px;
  color: #808080;
  line-height: 1.5;
}

/* Seção Produtos */
.produtos {
  padding: 50px 0px;
  text-align: center;
}

.produtos h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.produtos-lista {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
}

.produto-card {
  background-color: #f0f0f0;
  padding-bottom: 10px;
  text-align: center;
  transition: 0.3s;
}

.produto-card:hover {
  transform: scale(1.05);
  background-color: #fff9c8;
}

.produto-card img {
  width: 100%;
}

.produto-card h3 {
  margin-top: 15px;
  font-size: 18px;
}

.produto-card p {
  font-size: 16px;
  margin-top: 10px;
  color: #1d9d74;
}

.avaliacao i {
  color: #f1c40f;
}

/* Galeria */

.galeria {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  max-height: 1000px;
}

.galeria-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.item {
  overflow: hidden;
}

.foto-01 {
  grid-column: 1/7;
  grid-row: 1/4;
}

.foto-03 {
  grid-column: 1/4;
  grid-row: 4/7;
}

.foto-04 {
  grid-column: 4/7;
  grid-row: 4/7;
}

/* Produtos em Destaque */

.produtos-destaque {
  text-align: center;
  padding: 50px 0px;
}

.produtos-destaque h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

#destaque_p {
  animation-name: color;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

@keyframes color {
  0% {
    color: #f1f1f1;
  }
  50% {
    color: #808080;
  }
  50% {
    color: #043f07;
  }
}

.produto-card.destaque {
  background-color: #ffffff;
}

/* pagina detalhes */

.detalhe-produto {
  display: grid;
  grid-template-columns: 2fr 1fr;
  max-width: 1140px;
  margin: auto;
  gap: 24px;
  margin-bottom: 20px;
}

.detalhe-img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detalhe-produto p {
  padding-top: 30px;
  text-align: justify;
  margin-bottom: 20px;
}

.button-detalhes {
  background-color: #043f07;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  padding: 12px 60px;
  transition: 0.3s;
}

.button-detalhes:hover {
  background-color: #132f28;
}

.divisoria {
  max-width: 1140px;
  margin: auto;
  padding: 20px 0px;
}
.detalhe-mais {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1140px;
  margin: auto;
  gap: 24px;
  padding-bottom: 60px;
  justify-items: center;
  text-align: center;
}

.detalhe-mais h3 {
  padding-top: 15px;
}

.galeria-detalhe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Estilos para botões de detalhes */
.btn-detalhes {
    display: inline-block;
    background-color: #043f07;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-align: center;
}

.btn-detalhes:hover {
    background-color: #1d9d74;
    color: white;
    transform: translateY(-2px);
}

/* Melhorar a aparência dos cards de produto */
.produto-card {
    background-color: #f0f0f0;
    padding-bottom: 10px;
    text-align: center;
    transition: 0.3s;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.produto-card:hover {
    transform: scale(1.05);
    background-color: #fff9c8;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.produto-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.produto-card h3 {
    margin-top: 15px;
    font-size: 18px;
    padding: 0 10px;
}

.produto-card p {
    font-size: 16px;
    margin-top: 10px;
    color: #1d9d74;
    font-weight: bold;
}
/* Seção Contato */
.contato {
  padding: 50px 30px;
  background-color: #f5f5f5;
  display: flex;
  justify-content: space-between;
}

.form h2 {
  margin-bottom: 10px;
}
.map h2 {
  margin-bottom: 10px;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  max-width: 600px;
}

form button {
  padding: 12px 20px;
  background-color: #043f07;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background-color: #132f28;
}

/* Rodapé */
footer {
  background-color: #f1f1f1;
  padding: 20px 0;
  color: #132f28;
  text-align: center;
}

footer .social-media a {
  color: #043f07;
  width: 15px;
  margin: 0 5px;
}

footer .social-media a:hover {
  color: white;
}

@media (max-width: 768px) {
  nav {
    padding: 0px 30px;
  }

  .container {
    max-width: 700px;
    margin: 0 auto;
  }

  #logo img {
    max-width: 120px;
  }

  .topo {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .topo .left {
    max-width: 100%;
    text-align: center;
  }

  .topo h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .produtos-lista .produto-card {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
  }

  .produtos h2 {
    font-size: 28px;
  }

  .vasoplanta {
    flex-direction: column;
    text-align: center;
  }

  .vasoplanta .texto {
    max-width: 100%;
  }

  footer .social-media a {
    margin: 0 15px;
  }

  .contato {
    flex-direction: column;
    align-items: center;
  }

  .form {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
  }

  .map {
    width: 100%;
    text-align: center;
  }

  .map iframe {
    width: 100%;
    height: 200px;
  }

  .right img {
    width: 100%;
  }
}

/* ===== ESTILOS DO CARRINHO ===== */

/* Botão do Carrinho no Header */
.btn-carrinho {
    position: relative;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-carrinho:hover {
    color: #1d9d74;
}

.carrinho-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Container do carrinho na navegação */
.carrinho-container {
    display: flex;
    align-items: center;
}

/* Modal do Carrinho */
.overlay-carrinho {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay-carrinho.active {
    opacity: 1;
    visibility: visible;
}

.modal-carrinho {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: white;
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.modal-carrinho.active {
    right: 0;
}

.carrinho-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.carrinho-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: #333;
}

.badge-carrinho {
    background: #1d9d74;
    color: white;
    border-radius: 20px;
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
}

.btn-fechar-carrinho {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #666;
    padding: 0.5rem;
}

.btn-fechar-carrinho:hover {
    color: #333;
}

.carrinho-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.carrinho-vazio {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.carrinho-vazio i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ddd;
}

.carrinho-vazio p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-continuar-comprando {
    background: #1d9d74;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-continuar-comprando:hover {
    background: #177a5a;
}

/* Itens do Carrinho */
.itens-carrinho {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.item-carrinho {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
    align-items: center;
}

.item-imagem {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.item-info {
    flex: 1;
}

.item-nome {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.item-preco {
    margin: 0 0 0.5rem 0;
    color: #1d9d74;
    font-weight: 600;
    font-size: 0.9rem;
}

.controles-quantidade {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.controles-quantidade button {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #333;
}

.controles-quantidade button:hover {
    background: #f8f9fa;
    border-color: #1d9d74;
}

.quantidade {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.item-total {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.item-total span {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.btn-remover-carrinho {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 0.9rem;
}

.btn-remover-carrinho:hover {
    color: #c0392b;
}

/* Botão Adicionar ao Carrinho - Verde mais claro */
.btn-adicionar-carrinho {
    display: inline-block;
    background-color: #22c55e; /* Verde mais claro e moderno */
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 4px rgba(34, 197, 94, 0.2);
}

.btn-adicionar-carrinho:hover {
    background-color: #16a34a; /* Verde um pouco mais escuro no hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(34, 197, 94, 0.3);
}

.btn-adicionar-carrinho:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(34, 197, 94, 0.2);
}

/* Botão Ver Detalhes - Verde escuro original */
.btn-detalhes {
    display: inline-block;
    background-color: #043f07; /* Verde escuro original */
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 8px;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 4px rgba(4, 63, 7, 0.2);
}

.btn-detalhes:hover {
    background-color: #1d9d74; /* Verde médio no hover */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(4, 63, 7, 0.3);
}

.btn-detalhes:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(4, 63, 7, 0.2);
}

/* Footer do Carrinho */
.carrinho-footer {
    border-top: 1px solid #eee;
    padding: 1.5rem;
    background: #f8f9fa;
}

.total-container {
    margin-bottom: 1rem;
}

.subtotal, .frete, .total-final {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
}

.subtotal, .frete {
    border-bottom: 1px solid #eee;
}

.total-final {
    border-top: 2px solid #ddd;
    padding-top: 0.5rem;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.acoes-carrinho {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.acoes-carrinho button {
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.acoes-carrinho button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-limpar-carrinho {
    background: #6c757d;
    color: white;
}

.btn-limpar-carrinho:hover:not(:disabled) {
    background: #5a6268;
}

.btn-finalizar-compra {
    background: #1d9d74;
    color: white;
}

.btn-finalizar-compra:hover:not(:disabled) {
    background: #177a5a;
}

/* Notificação */
.notificacao-carrinho {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #1d9d74;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.notificacao-carrinho.show {
    transform: translateX(0);
}

.notificacao-conteudo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notificacao-conteudo i {
    font-size: 1.2rem;
}

/* Responsivo */
@media (max-width: 480px) {
    .modal-carrinho {
        width: 100%;
        right: -100%;
    }
    
    .item-carrinho {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .item-total {
        align-items: center;
        flex-direction: row;
        gap: 1rem;
    }
}

/* Estilos para páginas de categoria */
.produtos-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    padding: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .produtos-lista {
        grid-template-columns: 1fr;
    }
    
    .form-cliente {
        padding: 20px;
    }
}

@media (max-width: 682px) {
  .topo {
    display: grid;
    grid-template-columns: 1fr;

    gap: 24px;
    justify-items: center;
  }

  .produtos-lista {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 5px;
    justify-items: center;
  }
}

@media (max-width: 425px) {
  nav {
    padding: 0px 15px;
  }

  .topo {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    align-items: start;
    padding: 0px 0px;
  }

  .right img {
    padding: 0px 10px;
  }

  .produtos-lista {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 5px;
    justify-items: center;
  }

  .topo h1 {
    font-size: 30px;
    line-height: 40px;
    padding-bottom: 40px;
  }

  .topo p {
    font-size: 18px;
    padding-bottom: 50px;
  }

  .detalhe-produto {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    margin: 10px;
    gap: 24px;
    margin-bottom: 20px;
    text-align: center;
    padding: 10px 0px;
  }

  .divisoria {
    text-align: center;
  }

  .detalhe-mais {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 10px;
    gap: 24px;
    padding-bottom: 60px;
    justify-items: center;
    text-align: center;
  }

  .detalhe-mais h3 {
    display: none;
  }
  
}
