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

:root { 
    --cor-principal: #4D0D1A;
    --cor-secundaria: #2E0F16;
    --cor-tercearia: #E9E9EA;
    --cor-complemento: #5A493C;
    --cor-complemento2: #483628;
} 

@font-face {
    font-family: 'FonteAtto';
    src: url('fonts/LouisGeorgeCafe.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: var(--cor-tercearia);
    overflow-x: hidden;
}

/* =========================================
   CABEÇALHO (MANTIDO INTACTO)
   ========================================= */
.cabecalho {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 15px 25px 10px 25px;
    width: 100%;
}

.opcoes {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    font-family: 'FonteAtto', sans-serif;
    padding: 0 25px;
    align-items: center;
}

.opcoes a {
    color: var(--cor-principal);
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    display: flex;
    width: 60px;
    height: auto;
    align-items: center;
}

.buscarProduto {
    display: flex;
    padding: 0 15px;
    cursor: pointer;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
    margin-right: 40px;
}

.buscarProduto img {
    width: 18px;
    height: 18px;
}

/* =========================================
   HERO SECTION (BANNER PARALLAX NO TOPO)
   ========================================= */
.hero-sobre {
    height: 70vh;
    /* Aqui deves colocar a foto que queres de fundo */
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/img/BannerSobre.jpg') no-repeat;

    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 80px;
}

.hero-sobre h1 {
    font-size: 3.5rem;
    font-family: 'FonteAtto', sans-serif;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.hero-sobre p {
    font-size: 1.4rem;
    font-family: 'FonteAtto', sans-serif;
    margin-top: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.containerP {
    max-width: 1400px;
    margin: 0 auto;
}

/* =========================================
   NOSSA HISTÓRIA (TEXTO E IMAGEM)
   ========================================= */
.secao-historia {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding: 0 50px;
}

.historia-texto { 
    flex: 1; 
    font-family: 'FonteAtto', sans-serif;
    color: var(--cor-principal);
}

.historia-texto span {
    color: var(--cor-principal);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: bold;
}

.historia-texto h2 {
    font-size: 2.8rem;
    margin: 15px 0 25px 0;
}

.historia-texto p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--cor-complemento);
}

.historia-imagem { 
    flex: 1; 
    rotate: calc(-90deg);
    
}

.historia-imagem video {
    width: 100%;
    border-radius: 15px;
    box-shadow: 20px 20px 0px var(--cor-principal); /* Detalhe visual exclusivo da marca */
    display: block;
}

/* =========================================
   VALORES DA MARCA (CARDS COM ÍCONES)
   ========================================= */
.secao-valores {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 100px;
    padding: 50px;
    background-color: white;
    border-radius: 20px;
    font-family: 'FonteAtto', sans-serif;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.valor-card {
    text-align: center;
    padding: 30px;
}

.valor-card i {
    font-size: 3rem;
    color: var(--cor-principal);
    margin-bottom: 20px;
    display: block;
}

.valor-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--cor-principal);
}

.valor-card p {
    color: var(--cor-complemento);
    line-height: 1.6;
    font-size: 17px;
}

/* =========================================
   GALERIA DE REELS DO INSTAGRAM
   ========================================= */
.secao-reels {
    margin-bottom: 100px;
    padding: 0 50px;
    font-family: 'FonteAtto', sans-serif;
}

.titulo-reels {
    text-align: center;
    margin-bottom: 50px;
    color: var(--cor-principal);
}

.titulo-reels h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.titulo-reels p {
    font-size: 1.2rem;
    color: var(--cor-complemento);
}

.grid-reels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

.reel-item {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* =========================================
   RODAPÉ (MANTIDO INTACTO)
   ========================================= */
.depoimentos {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1%;
    width: 100%;
}

.phone1 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.phone1 img {
    width: 400px;
    height: auto;
}

/* Adicionada a classe do card do instagram que faltava neste arquivo */
.card-insta-site {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 500px; 
    margin: 40px auto; 
}

.tituloFooter {
    display: flex;
    margin-top: 9%;
    width: 100%;
    font-family: 'FonteAtto', sans-serif;
    font-size: 28px;
    color: var(--cor-principal);
    align-items: center;
    justify-content: center;
}

.insta {
    display: flex;
    background-color: var(--cor-principal);
    margin-top: 20px;
    padding: 25px;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    font-family: FonteAtto, sans-serif;
    gap: 5px;
    color: var(--cor-tercearia);
}

.insta i {
    color: var(--cor-tercearia);
    font-size: 40px;
}

.insta a {
    margin-top: 5px;
    color: var(--cor-tercearia);
    font-size: 24px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}

.insta a:hover {
    font-size: 26px;
    transition: 0.5s;
}

.infosRodape {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 30px;
    font-family: FonteAtto, sans-serif;
    color: var(--cor-principal);
}
/* Estilo para os Vídeos Nativos (Reels) */
.video-reel {
    width: 100%;
    height: 100%;
    max-height: 550px; /* Limita a altura para não ficar gigante no PC */
    object-fit: cover; /* Corta o vídeo suavemente para preencher o card sem achatar */
    border-radius: 15px; /* Bordas arredondadas padrão da marca */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    pointer-events: none; /* Impede que a cliente pause o vídeo sem querer ao clicar */
}
/* 
/* =========================================
   RESPONSIVIDADE (Telas menores que 768px)
   (regras originais + migrado do mobile.css)
   ========================================= */
@media (max-width: 768px) {

    html, body {
        /* respiro do menu fixo vem do rodapé (.rodape-base no style.css),
           pra não mostrar a faixa clara após o rodapé escuro */
        padding-bottom: 0;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* --- CABEÇALHO (mantido do original, adaptado ao padrão app) --- */
    .cabecalho {
        position: static !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 12px 15px !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        margin-bottom: 0;
        gap: 0;
    }

    .logo { margin: 0 !important; order: unset; }
    .logo img { width: 45px !important; height: auto !important; }

    .opcoes {
        width: auto;
        margin-left: 0;
        justify-content: center;
        gap: 15px;
    }

    .buscarProduto {
        margin: 0 !important;
        order: 2;
        position: static !important;
    }

    /* --- MENU INFERIOR FIXO (APP) --- */
    .opcoes {
        position: fixed !important;
        bottom: 0; left: 0; width: 100%;
        height: 70px;
        background: #ffffff !important;
        z-index: 3000;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 5px 10px !important;
        border-top: 1px solid rgba(0,0,0,0.1);
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
    }

    .opcoes a {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        font-size: 10px !important;
        font-weight: bold;
        color: var(--cor-complemento) !important;
        text-transform: uppercase;
        gap: 4px;
    }

    .opcoes a::before { font-family: "bootstrap-icons"; font-size: 20px; color: var(--cor-principal); }
    .opcoes a[href="/"]::before          { content: "\F425"; }
    .opcoes a[href="/produtos"]::before   { content: "\F3FA"; }
    .opcoes a[href*="promocao"]::before   { content: "\F5CE"; }

    .desktop-only { display: none !important; }
    .opcoes a.desktop-only { display: none !important; }
    .mobile-only { display: flex !important; }

    /* --- CONTEÚDO DA PÁGINA SOBRE (original) --- */
    .hero-sobre h1 { font-size: 2.2rem; }
    .hero-sobre p  { font-size: 1.1rem; }

    .secao-historia {
        flex-direction: column;
        padding: 0 20px;
        text-align: center;
        gap: 40px;
    }

    .historia-imagem img {
        box-shadow: 0px 15px 0px var(--cor-principal);
    }

    .secao-valores {
        grid-template-columns: 1fr;
        padding: 20px;
        margin: 0 20px 80px 20px;
    }

    .grid-reels {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

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

    /* --- PARALLAX OFF --- */
    .hero-sobre {
        background-attachment: scroll !important;
    }

        /* --- CARD INSTAGRAM MOBILE --- */
    .insta-card-mob {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 30px 20px;
        background: #fff;
        border-radius: 12px;
        text-decoration: none;
        color: var(--cor-principal);
        font-family: 'FonteAtto', sans-serif;
        text-align: center;
        border: 1px solid rgba(0,0,0,0.07);
        min-height: 180px;
        width: 100%;
    }
 
    .insta-card-mob i { font-size: 36px; color: #C13584; }
    .insta-card-mob span { font-size: 14px; line-height: 1.4; color: var(--cor-complemento); }
    .insta-card-mob strong { color: var(--cor-principal); }
 
    .insta-card-cta {
        display: inline-block;
        background-color: var(--cor-principal);
        color: #fff !important;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 13px !important;
        margin-top: 4px;
    }
}