/* Reset Básico */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; color: #333; line-height: 1.6; overflow-x: hidden; }

/* --- NAVBAR & HAMBURGUER --- */
.navbar {
    position: fixed; top: 0; width: 100%; height: 70px;
    background: rgba(255, 255, 255, 0.98);
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 5%; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Menu Toggle (Hamburguer) */
.menu-toggle {
    display: none; /* Escondido no Desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #8b5e3c;
    transition: 0.3s;
    border-radius: 3px;
}

/* MOBILE NAV (Até 768px) */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%; /* Escondido */
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s ease;
        gap: 30px;
    }

    .nav-links.active { right: 0; }

    /* Animação Hamburguer para X */
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Seções Flexíveis no Mobile */
    .section-flex, .section-flex.reverse {
        flex-direction: column !important;
        padding: 40px 5%;
        gap: 20px;
    }

    .hero-content h1 { font-size: 2.2rem; }
    
    .brand-logo { font-size: 1.8rem; }
}



.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 25px; }
.nav-links a { text-decoration: none; color: #555; font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: #8b5e3c; }

/* .quiling-texto{
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
} */

/* Primeiro, declaramos a fonte */
@font-face {
  font-family: 'Amsterdam';
  src: url('../fonts/amsterdam.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap; /* Ajuda no carregamento rápido */
}

.text_logo{
  font-family: Amsterdam;
  font-size: 1.3em;
  font-weight: 700;
  color: #8b5e3c;
}

/* Banner Hero */
.hero-banner {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('img/capa.jpg') center/cover;
    background-attachment:fixed;
    display: flex; 
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; margin-bottom: 20px; }
.btn-primary { 
    background: #8b5e3c; color: white; padding: 15px 30px; 
    text-decoration: none; border-radius: 50px; display: inline-block; margin-top: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* Section Apresentacao*/
.display-1 {
  /* Tamanho da fonte (Bootstrap utiliza 5rem) */
  font-size: 4rem;
  
  /* Peso da fonte (Geralmente mais fino para um visual elegante) */
  font-weight: 300;
  
  /* Altura da linha para evitar espaços excessivos */
  line-height: 1.2;
  
  /* Comportamento de bloco conforme sua descrição */
  display: block;
  width: 100%;
  
  /* Margem inferior padrão para espaçamento de layout */
  margin-bottom: 0.5rem;
}

/* Responsividade básica (opcional, mas recomendada) */
@media (max-width: 768px) {
  .display-1 {
    font-size: calc(1.625rem + 4.5vw);
  }
}

/* Botão WhatsApp */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background: #25d366; border-radius: 50%; display: flex; align-items: center; 
    justify-content: center; z-index: 1001; box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}
.whatsapp-float img { width: 35px; }

/* Seções e Animações */
.section-flex { 
    display: flex; align-items: center; padding: 80px 10%; gap: 50px; 
}
.section-flex.reverse { flex-direction: row-reverse; }
.text-box { flex: 1; }
.image-box { flex: 1; }
.image-box img { width: 100%; border-radius: 15px; box-shadow: 10px 10px 30px rgba(0,0,0,0.1); }

/* Animação de Entrada ao Scroll */
.reveal { opacity: 0; transform: translateY(50px); transition: all 1s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }


/* Container Centralizador */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    align-items: center;
}

.carousel-wrapper {
    overflow: hidden; /* Esconde as imagens fora da área */
    width: 100%;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Suavidade na troca */
}

.product-card {
    min-width: calc(100% / 3); /* Mostra 3 itens por vez em telas grandes */
    padding: 15px;
    text-align: center;
}

@media (max-width: 768px) {
    .product-card { min-width: 100%; } /* No mobile mostra 1 por vez */
}

.product-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Botões de Navegação  Carousel*/
.carousel-btn {
    background: rgba(139, 94, 60, 0.8);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 15px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    transition: 0.3s;
}

.carousel-btn:hover { background: #6b472e; }
.prev { left: -30px; }
.next { right: -30px; }



/* Título da Seção */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #8b5e3c;
    text-align: center;
}


.btn-encomendas { 
    background: #8b5e3c; color: white; padding: 15px 30px; 
    text-decoration: none; border-radius: 50px; display: inline-block; margin-top: 20px;
}



/* Rodapé */

/* Configurações Gerais do Footer */
/* Reset básico para evitar margens indesejadas */
.main-footer {
    background-color: #121212; /* Fundo bem escuro */
    color: #e0e0e0; /* Texto cinza claro para não cansar a vista */
    padding: 30px 0;
    border-top: 1px solid #333; /* Linha sutil no topo */
    font-family: sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between; /* Separa as 3 colunas */
    align-items: center; /* Alinha verticalmente no centro */
}

/* Coluna 1: Logo */
.brand-logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffffff;
    font-family: Amsterdam;
}

/* Coluna 2: Copyright */
.copyright-section {
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0.7;
}

/* Coluna 3: Ícones */
.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #bb86fc; /* Um roxo neon suave para o hover */
    transform: scale(1.2);
}

/* RESPONSIVIDADE (Mobile) */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Empilha as colunas */
        gap: 25px;
        text-align: center;
    }
    
    .footer-column {
        width: 100%;
    }
}
/* Responsividade para Telas Maiores (Desktop) */
@media (min-width: 768px) {
    .social-links ul {
        flex-direction: row; /* Coloca os itens lado a lado no PC */
        justify-content: center;
        gap: 40px;
    }
}

/* --- FOOTER RESPONSIVO --- */
.main-footer {
    background-color: #121212;
    color: #e0e0e0;
    padding: 40px 5%;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* Permite quebra de linha */
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px; /* Garante que as colunas não fiquem espremidas */
    text-align: center;
}

/* Alinhamento condicional */
@media (min-width: 769px) {
    .logo-section { text-align: left; }
    .contacts-section { text-align: right; }
}

@media (max-width: 768px) {
    .footer-column { text-align: center; }
}