:root {
   --cor-texto: #4A3428;
   --cor-fundo: #F9F7F2;
   --cor-botao: #C5A059;
   --branco: #ffffff;
}

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: 'Montserrat', sans-serif;
   background-color: var(--cor-fundo);
   color: var(--cor-texto);
}

/* --- ESTILIZAÇÃO Scrool --- */
::-webkit-scrollbar {
   width: 10px;
}

::-webkit-scrollbar-track {
   background: var(--branco);
   padding: 2px;
}

::-webkit-scrollbar-thumb {
   background-color: var(--cor-texto);
   border-radius: 20px;
   border: 3px solid var(--branco);
}


/* --- ESTILIZAÇÃO DO HEADER --- */
header {
   position: fixed;
   /* Fica fixo no topo */
   top: 0;
   width: 100%;
   background-color: rgba(249, 247, 242, 0.95);
   /* Leve transparência */
   backdrop-filter: blur(10px);
   /* Efeito de vidro embaçado moderno */
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 15px 10%;
   z-index: 1000;
   box-shadow: 0 2px 10px rgba(74, 52, 40, 0.05);
}

.logo {
   font-family: 'Playfair Display', serif;
   font-size: 1.6rem;
   color: var(--cor-texto);
   text-decoration: none;
}

nav ul {
   display: flex;
   list-style: none;
   gap: 30px;
}

nav ul li a {
   text-decoration: none;
   color: var(--cor-texto);
   font-size: 0.9rem;
   font-weight: 400;
   transition: 0.3s;
   text-transform: uppercase;
   letter-spacing: 1px;
}

nav ul li a:hover {
   color: var(--cor-botao);
}

.header-cta {
   background-color: var(--cor-texto);
   color: var(--branco) !important;
   padding: 10px 20px;
   border-radius: 50px;
   font-size: 0.8rem !important;
   font-weight: 600 !important;
}

/* --- AJUSTE NA HERO PARA NÃO FICAR POR BAIXO DO HEADER --- */
.hero-section {
   display: flex;
   min-height: 100vh;
   padding: 100px 10% 0 10%;
   /* Padding top compensa o header fixo */
   align-items: center;
}

.hero-content {
   flex: 1;
   padding-right: 50px;
}

.hero-content h1 {
   font-family: 'Playfair Display', serif;
   font-size: 3.5rem;
   line-height: 1.2;
   margin-bottom: 20px;
}

.hero-content p {
   font-size: 1.1rem;
   margin-bottom: 30px;
   opacity: 0.9;
}

.hero-btn {
   display: inline-block;
   background-color: var(--cor-botao);
   color: white;
   padding: 18px 35px;
   text-decoration: none;
   border-radius: 50px;
   font-weight: bold;
   transition: 0.3s;
}

.hero-btn:hover {
   transform: translateY(-3px);
   box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

.hero-image {
   flex: 1;
   text-align: right;
}

.hero-image img {
   max-width: 100%;
   border-radius: 30px 100px 30px 30px;
   /* Formato assimétrico moderno */
   box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05);
}

/* Ajuste para a logo no Header */
.logo img {
   transition: transform 0.3s ease;
}

.logo img:hover {
   transform: scale(1.05);
   /* Um leve zoom ao passar o mouse */
}


/* Estilos para a Seção Sobre Nós */
.about-section {
   padding: 100px 10%;
   background-color: var(--branco);
   /* Fundo branco para diferenciar da Hero */
}

.about-container {
   display: flex;
   align-items: center;
   gap: 50px;
}

/* Ocupando 70% da largura */
.about-text {
   flex: 0 0 60%;
   color: var(--cor-texto);
}

.about-text .subtitle {
   text-transform: uppercase;
   letter-spacing: 2px;
   font-size: 0.8rem;
   color: var(--cor-botao);
   font-weight: 600;
   display: block;
   margin-bottom: 10px;
}

.about-text h2 {
   font-family: 'Playfair Display', serif;
   font-size: 2.8rem;
   margin-bottom: 25px;
   line-height: 1.2;
}

.about-text p {
   font-size: 1.1rem;
   margin-bottom: 20px;
   line-height: 1.8;
   font-weight: 300;
   color: #555;
}

/* Mini estatísticas para dar modernidade */
.stats {
   display: flex;
   gap: 40px;
   margin-top: 30px;
}

.stat-item strong {
   display: block;
   font-size: 1.8rem;
   color: var(--cor-texto);
   font-family: 'Playfair Display', serif;
}

.stat-item span {
   font-size: 0.9rem;
   color: var(--cor-botao);
}

/* Ocupando o restante (30%) */
.about-image {
   flex: 1;
}

.about-image img {
   width: 100%;
   height: 500px;
   object-fit: cover;
   /* Faz a foto preencher bem o espaço vertical */
   border-radius: 15px;
   box-shadow: -20px 20px 0px var(--cor-fundo);
   /* Detalhe estético: sombra sólida */
}

/* Estilos para a sessão qualidade */
.quality-section {
   padding: 100px 10%;
   background-color: var(--cor-fundo);
   /* #F9F7F2 */
   display: flex;
   flex-direction: column;
   gap: 60px;
}

.quality-header {
   max-width: 800px;
}

.quality-header h2 {
   font-family: 'Playfair Display', serif;
   font-size: 3rem;
   color: var(--cor-texto);
   /* #4A3428 */
   margin-bottom: 20px;
}

.quality-header .highlight {
   color: #D47A24;
   /* Um tom de laranja mais sofisticado/queimado */
}

.quality-header p {
   font-size: 1.1rem;
   line-height: 1.6;
   margin-bottom: 30px;
   color: #555;
}

.btn-order {
   display: inline-block;
   background-color: #D47A24;
   color: white;
   padding: 15px 40px;
   text-decoration: none;
   border-radius: 8px;
   font-weight: bold;
   text-transform: uppercase;
   font-size: 0.9rem;
   transition: 0.3s;
   box-shadow: 0 4px 15px rgba(212, 122, 36, 0.3);
}

.btn-order:hover {
   background-color: var(--cor-texto);
   transform: translateY(-2px);
}

/* Grid de Diferenciais */
.features-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
}

.feature-card {
   background: white;
   padding: 40px 30px;
   border-radius: 20px;
   transition: 0.3s;
   border: 1px solid rgba(74, 52, 40, 0.05);
}

.feature-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 20px 40px rgba(74, 52, 40, 0.08);
}

.icon-box {
   width: 50px;
   height: 50px;
   background-color: #D47A24;
   color: white;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   font-weight: bold;
   margin-bottom: 20px;
   font-size: 1.2rem;
}

.feature-card h3 {
   font-family: 'Playfair Display', serif;
   color: var(--cor-texto);
   font-size: 1.4rem;
   margin-bottom: 15px;
}

.feature-card p {
   font-size: 0.95rem;
   color: #666;
   line-height: 1.7;
}

/* Responsividade para a logo no celular */
@media (max-width: 968px) {
   .logo img {
      height: 45px;
      /* Logo um pouco menor no celular */
   }

   /* Estilos para a Seção Sobre Nós */
   .about-container {
      flex-direction: column;
   }

   .about-text {
      flex: 0 0 100%;
      text-align: center;
   }

   .about-image {
      width: 100%;
   }

   .about-image img {
      height: 300px;
   }

   .stats {
      justify-content: center;
   }
}

/* Estilos da sessão Catálogo */
.catalog-section {
   padding: 100px 10%;
   background-color: #fff;
}

.catalog-intro {
   text-align: center;
   max-width: 700px;
   margin: 0 auto 60px auto;
}

.catalog-intro .subtitle {
   color: var(--cor-botao);
   font-weight: 600;
   text-transform: uppercase;
   font-size: 0.8rem;
   letter-spacing: 2px;
}

.catalog-intro h2 {
   font-family: 'Playfair Display', serif;
   font-size: 3rem;
   color: var(--cor-texto);
   margin: 10px 0 20px 0;
}

.catalog-intro .highlight {
   color: #D47A24;
}

.catalog-main-btn {
   display: inline-block;
   margin-top: 20px;
   padding: 12px 30px;
   border: 2px solid var(--cor-texto);
   color: var(--cor-texto);
   text-decoration: none;
   font-weight: 600;
   font-size: 0.85rem;
   transition: 0.3s;
   border-radius: 8px;
}

.catalog-main-btn:hover {
   background-color: var(--cor-texto);
   color: #fff;
}

/* Grid */
.catalog-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
}

.product-card {
   background: var(--cor-fundo);
   border-radius: 20px;
   overflow: hidden;
   transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
   transform: translateY(-15px);
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.product-card-modal {
   background: var(--cor-fundo);
   border-radius: 20px;
   overflow: hidden;
   transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card-modal:hover {
   transform: translateY(-15px);
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.product-image {
   height: 350px;
   overflow: hidden;
}

.product-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: 0.5s;
}

.product-card:hover .product-image img {
   transform: scale(1.1);
}

.product-info {
   padding: 30px;
   text-align: center;
}

.category {
   font-size: 0.7rem;
   text-transform: uppercase;
   color: #999;
   letter-spacing: 1px;
}

.product-info h3 {
   font-family: 'Playfair Display', serif;
   font-size: 1.6rem;
   color: var(--cor-texto);
   margin: 10px 0;
}

.product-info p {
   font-size: 0.9rem;
   color: #666;
   margin-bottom: 20px;
}

.product-link {
   text-decoration: none;
   color: #D47A24;
   font-weight: 700;
   font-size: 0.9rem;
   transition: 0.3s;
}

.product-link:hover {
   letter-spacing: 0.5px;
}

/*//#region modal Catologo */
.btn-catalog {
    background-color: #8b5e3c;
    color: #fff;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    font-family: sans-serif;
}

.btn-catalog:hover { background-color: #6f4a2f; transform: scale(1.05); }

/* Fundo do Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
}

/* Container Branco */
.modal-content {
    background-color: #fdfaf7;
    margin: 3% auto;
    padding: 30px;
    width: 90%;
    max-width: 1200px;
    border-radius: 20px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.close-btn {
    position: absolute;
    right: 25px; top: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #8b5e3c;
}

/* Cabeçalho e Filtros */
.modal-header { text-align: center; margin-bottom: 30px; }
.filter-container { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.filter-btn {
    padding: 8px 20px;
    border: 1px solid #8b5e3c;
    background: white;
    color: #8b5e3c;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}
.filter-btn.active { background: #8b5e3c; color: white; }

/* Grid de 4 Colunas */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card do Produto */
.product-card-modal {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column; /* Alinhamento vertical */
    border: 1px solid #eee;
    position: relative;
}

.product-card-modal img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.product-card-modal h3 { font-size: 1.1rem; margin: 15px 0 10px; color: #444; }
.product-card-modal p { font-size: 0.9rem; color: #777; flex-grow: 1; margin-bottom: 15px; }
.price { font-size: 0.7rem; font-weight: bold; color: #8b5e3c; margin-bottom: 10px; }

/* Botão WhatsApp Fixo no Fundo */
.btn-wa {
    background-color: var(--cor-texto);
    color: white;
    text-align: center;
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    margin-top: auto; /* Mágica do alinhamento */
    transition: 0.3s;
}
.btn-wa:hover { background-color: var(--cor-texto); }

/* Badge */
.badge {
    position: absolute;
    top: 20px; left: 20px;
    background: #8b5e3cb0;
    color: white;
    padding: 4px 12px;
    font-size: 0.7rem;
    border-radius: 5px;
}

/* Responsividade */
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 650px) { .product-grid { grid-template-columns: 1fr; } }

.extra-sections { margin-top: 40px; padding-top: 20px; }
.extra-sections h3 { text-align: center; color: var(--cor-texto); margin-bottom: 20px; margin-top: 20px; 
   font-family: 'Playfair Display', serif; }
.extra-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.extra-table h4 { border-bottom: 2px solid #8b5e3c; padding-bottom: 5px; color: #444; }
.extra-table ul { list-style: none; padding: 0; }
.extra-table li { 
    display: flex; 
    justify-content: space-between; 
    padding: 8px 0; 
    border-bottom: 1px dashed #ddd;
    font-size: 0.9rem;
}
.extra-table span { font-weight: bold; color: #8b5e3c; }

@media (max-width: 600px) { .extra-grid { grid-template-columns: 1fr; } }

/* Fim do modal */


/* Estilos Depoimentos */
/* Estilos do Carrossel */
.reviews-section {
   padding: 80px 8%;
   background-color: #fff;
   text-align: center;
   position: relative;
   /* Necessário para posicionar as setas */
}

/* Container Principal do Swiper */
.swiper {
   width: 100%;
   padding: 50px 0;
   /* Espaço para não cortar a sombra dos cards */
   margin: 0 auto;
}

/* Garante que os slides fiquem lado a lado */
.swiper-wrapper {
   display: flex;
   flex-direction: row;
   /* Força a disposição horizontal */
}

.google-card {
   background: #ffffff;
   padding: 30px;
   border-radius: 18px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
   text-align: left;
   border: 1px solid #f0f0f0;
   height: 100%;
   display: flex;
   flex-direction: column;
   margin: 10px;
   /* Pequeno espaçamento entre cards */
}

/* Estilização dos Botões de Navegação (Setas) */
.swiper-button-next, .swiper-button-prev {
   color: #4A3428;
   /* Cor marrom do seu site */
   top: 60%;
   /* Ajusta a altura das setas */
}

.swiper-button-next:after, .swiper-button-prev:after {
   font-size: 24px;
   /* Tamanho das setas */
   font-weight: bold;
}

/* Paginação (pontinhos) */
.swiper-pagination-bullet-active {
   background: #D47A24;
   /* Cor de destaque */
}

/* Estilos Botão WhatsApp Flutuante */
.whatsapp-btn {
   position: fixed;
   bottom: 30px;
   right: 30px;
   background-color: var(--cor-texto);
   color: white;
   width: 60px;
   height: 60px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 30px;
   box-shadow: 0 10px 25px var(--cor-texto);
   z-index: 9999;
   text-decoration: none;
   transition: 0.3s;
}

.whatsapp-btn:hover {
   transform: scale(1.1);
}

.whatsapp-btn .tooltip {
   position: absolute;
   right: 75px;
   background: var(--cor-texto);
   color: white;
   padding: 8px 15px;
   border-radius: 10px;
   font-size: 0.8rem;
   white-space: nowrap;
   opacity: 0;
   transition: 0.3s;
   pointer-events: none;
}

.whatsapp-btn:hover .tooltip {
   opacity: 1;
}

/* --- ESTILIZAÇÃO DO RODAPÉ --- */
footer {
   background-color: var(--cor-fundo);
   /* #F9F7F2 */
   padding: 80px 8% 40px 8%;
   color: var(--cor-texto);
   /* #4A3428 */
   border-top: 1px solid rgba(74, 52, 40, 0.1);
}

.footer-container {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 40px;
   margin-bottom: 60px;
}

/* Coluna da Esquerda: Chamada Principal */
.footer-brand {
   flex: 1;
   min-width: 300px;
}

.footer-brand span {
   font-weight: 700;
   font-size: 1.2rem;
   display: block;
   margin-bottom: 15px;
}

.footer-brand h2 {
   font-family: 'Playfair Display', serif;
   font-size: 2.5rem;
   color: var(--cor-destaque);
   /* #D47A24 */
   line-height: 1.2;
   margin-bottom: 30px;
}

/* Coluna da Direita: Contato e Redes */
.footer-info {
   flex: 1;
   min-width: 250px;
   display: flex;
   flex-direction: column;
   align-items: flex-end;
}

.contact-item {
   text-align: right;
   margin-bottom: 30px;
}

.contact-item h3 {
   color: var(--cor-destaque);
   font-family: 'Playfair Display', serif;
   font-size: 1.8rem;
   margin-bottom: 5px;
}

.contact-item p {
   font-size: 1.1rem;
   font-weight: 500;
}

/* Redes Sociais com ícones minimalistas */
.social-links {
   display: flex;
   gap: 20px;
   margin-top: 10px;
}

.social-links a {
   color: var(--cor-texto);
   font-size: 1.5rem;
   transition: color 0.3s, transform 0.3s;
   text-decoration: none;
}

.social-links a:hover {
   color: var(--cor-destaque);
   transform: translateY(-3px);
}

/* Linha de Copyright */
.footer-bottom {
   border-top: 1px solid rgba(74, 52, 40, 0.1);
   padding-top: 30px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-size: 0.85rem;
   opacity: 0.8;
}


/* Responsividade */
@media (max-width: 968px) {
   header {
      padding: 15px 5%;
   }

   nav {
      display: none;
   }

   /* Esconde menu no mobile por enquanto */
   .hero-section {
      flex-direction: column-reverse;
      text-align: center;
      padding-top: 120px;
   }

   .hero-content {
      padding-right: 0;
      margin-top: 40px;
   }

   .hero-content h1 {
      font-size: 2.4rem;
   }
}

@media (max-width: 768px) {
   .quality-header h2 {
      font-size: 2.2rem;
   }

   .quality-section {
      padding: 60px 5%;
   }

   .catalog-section {
      padding: 60px 5%;
   }

   .catalog-intro h2 {
      font-size: 2.2rem;
   }

   .reviews-section {
      padding: 60px 5%;
   }

   .reviews-intro h2 {
      font-size: 2.2rem;
   }

   .swiper-button-next, .swiper-button-prev {
      display: none;
      /* Esconde setas no mobile para focar no toque/swipe */
   }

   .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .dev-brand {
        order: 2; /* Garante que o desenvolvedor apareça por último no mobile */
        font-size: 0.8rem;
    }
}