* {
    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: flex;
    justify-content: space-between;
    padding: 15px 25px 10px 25px;
    width: 100%;
}

.opcoes {
    display: flex;
    width: 25%;
    gap: 10px;
    justify-content: space-around;
    font-family: 'FonteAtto', sans-serif;
    padding: 0 15px;
    margin-left: 20px;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -20vw;
}

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

.buscarProduto {
    display: flex;
    padding: 0 15px;
    cursor: pointer;  
    align-items: center;
    justify-content: center;
    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/banner1.png');
    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)
   ========================================= */
@media (max-width: 768px) {
    /* Ajustes do Cabeçalho */
    .cabecalho {
        flex-direction: column;
        align-items: center;
        margin-bottom: 15px;
        padding: 15px;
        gap: 15px;
        position: relative;
    }

    .logo {
        margin: 0;
        order: -1;
    }

    .logo img {
        width: 100px;
        height: 100px;
    }

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

    .buscarProduto {
        margin: 0;
        position: absolute;
        top: 40px;
        right: 20px;
    }

    /* Ajustes da página Sobre no telemóvel */
    .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); /* Reduz sombra no mobile */
    }

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

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

    /* Footer Mobile */
    .phone1 {
        flex-direction: column;
        align-items: center;
    }
}