/* --- RESET E BÁSICOS --- */
:root {
    /* Paleta de Cores Premium */
    --gold: #C6A675;
    /* Dourado Sutil */
    --dark-coffee: #2C1E18;
    /* Marrom Profundo */
    --cream: #FAF6F0;
    /* Creme Suave */
    --text-dark: #333333;
    --white: #FFFFFF;

    /* Tipografia */
    --font-heading: 'Cormorant Garamond', serif;
    /* Elegante para Títulos */
    --font-body: 'Montserrat', sans-serif;
    /* Moderna para Textos */
}

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

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* --- HEADER SOFISTICADO --- */
.header {
    background: var(--dark-coffee);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(198, 166, 117, 0.2);
    /* Borda dourada bem suave em vez de preta */
}


.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Isso centraliza o logo e os links na mesma linha */
    height: 80px;
    /* Define uma altura fixa para o header se preferir */
}

.logo {
    height: 250px;
    /* Ajuste este valor (entre 50px e 80px) conforme seu gosto */
    width: auto;
    /* Mantém a proporção correta, sem distorcer */
    display: block;
    /* Remove espaços extras abaixo da imagem */
    object-fit: contain;
    /* Garante que a imagem caiba no espaço sem cortes */
    transition: transform 0.3s ease;
    /* Efeito suave se quiser animar depois */
}

/* Dica: se o logo parecer muito grudado no topo, adicione uma margem */
.logo:hover {
    transform: scale(1.05);
    /* Um leve zoom ao passar o mouse traz sofisticação */
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: white;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav a:hover:not(.btn-minimal) {
    color: var(--gold);
}



.weather-bar {
    width: 100%;
    background-color: #ffffff;
    /* Fundo limpo */
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    /* Linha dourada bem discreta */
    margin-top: 120px;
    /* Ajuste aqui para ficar logo abaixo do seu header fixo */
    transition: all 0.3s ease;
}

#weather-info {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #4b2c20;
    display: inline-block;
    vertical-align: middle;
}

.weather-phrase {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #4b2c20;
    /* Tom café profundo */
    margin: 0;
    line-height: 1.2;
}

/* Detalhe opcional: uma pequena bolinha dourada entre o clima e a frase */
.weather-bar::after {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background: #d4af37;
    margin: 15px auto 0;
}


/* --- BOTÕES PREMIUM --- */
.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--dark-coffee);
    color: var(--cream);
    font-weight: 600;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

.btn-primary:hover {
    background-color: var(--gold);
    color: var(--dark-coffee);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    color: var(--dark-coffee);
    font-weight: 600;
    border-bottom: 2px solid var(--gold);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

.btn-minimal {
    padding: 10px 20px;
    border: 1px solid var(--dark-coffee);
    color: white !important;
}

.btn-minimal:hover {
    background: var(--cream);
    color: var(--gold) !important;
}





/* --- HERO SECTION MODERNA --- */
.hero {
    padding-top: 50px;
    /* Compensa o header fixo */
    padding-bottom: 100px;
    background-color: var(--cream);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.subtitle {
    display: block;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--dark-coffee);
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* --- CARROSSEL PROFISSIONAL --- */
.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    /* Mais quadrado é mais moderno */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.slides {
    display: flex;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slides img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
    aspect-ratio: 4/5;
    /* Formato vertical chique (tipo Instagram portrait) */
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: 0.3s;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* --- SEÇÃO SOBRE A MARCA --- */
.section-sobre {
    padding: 1px 0;
    background-color: var(--white);
    /* Fundo limpo para destacar a pureza */
    text-align: center;
}

.sobre-content {
    max-width: 800px;
    margin: 0 auto;
}

.etimologia {
    display: block;
    color: var(--gold);
    letter-spacing: 5px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-sobre h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--dark-coffee);
    margin-bottom: 20px;
}

.divisor-gold {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 auto 40px;
}

.texto-significado {
    font-size: 1.25rem;
    color: var(--dark-coffee);
    font-family: var(--font-heading);
    /* Fonte clássica para o significado */
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.texto-missao {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Efeito de surgimento suave ao rolar (opcional) */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Configurações Gerais de Layout */
.grid-2 {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 0;
}

.grid-2.reverse {
    flex-direction: row-reverse;
}

.content-box {
    flex: 1;
}

.image-box {
    flex: 1;
}

.img-refined {
    width: 100%;
    height: auto;
    border-radius: 4px;
    /* Bordas levemente suavizadas para o look premium */
    box-shadow: 20px 20px 0px -5px #d4af37;
    /* Detalhe em dourado simulando moldura */
}

/* Lista do Kit */
.kit-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.kit-list li {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #444;
    display: flex;
    align-items: center;
}

.kit-list li::before {
    content: "•";
    color: #d4af37;
    /* Dourado */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Ajuste suave para links internos */
html {
    scroll-behavior: smooth;
}

/* Responsividade para Celular */
@media (max-width: 768px) {

    .grid-2,
    .grid-2.reverse {
        flex-direction: column;
        padding: 50px 20px;
        gap: 30px;
    }

    .content-box {
        text-align: center;
    }

    .divisor-gold {
        margin: 20px auto;
    }
}





/* --- FOOTER --- */


.footer {
    padding: 40px 0;
    background-color: var(--dark-coffee);
    color: rgba(250, 246, 240, 0.6);
    text-align: center;
    font-size: 0.8rem;
}


.footer-link {
    color: inherit;
    /* Mantém a cor do texto do footer */
    text-decoration: none;
    /* Remove o sublinhado padrão */
    font-weight: 600;
    /* Deixa o nome levemente em destaque */
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #d4af37;
    /* Muda para o dourado da marca ao passar o mouse */
    text-decoration: underline;
    /* Adiciona o sublinhado apenas no hover */
}


/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .nav {
        display: none;
    }

    /* Idealmente, faríamos um menu hambúrguer aqui */
}