﻿:root {
    --brand-bg: #f5f3ef;
    --brand-text: #111111;
    --brand-accent: #111111;
    --brand-highlight: #f5aa28;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--brand-bg);
    color: var(--brand-text);
}

/* Navbar */
.navbar {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.78rem;
    background-color: rgba(245, 243, 239, 0.9);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.nav-link {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.lang-switcher a {
    text-decoration: none;
    margin-left: .25rem;
    margin-right: .25rem;
    font-size: 0.7rem;
    opacity: 0.4;
}

    .lang-switcher a.active {
        opacity: 1;
        font-weight: 600;
    }

/* Hero */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem; /* espaço por causa do navbar sticky */
    padding-bottom: 4rem;
}

.hero-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    border-radius: 999px;
    border: 1px solid var(--brand-text);
    padding: .3rem .9rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.hero-title {
    font-size: clamp(2.6rem, 5vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    max-width: 28rem;
    font-size: 0.95rem;
}

.hero-cta {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-pill {
    border-radius: 999px;
    padding-inline: 1.8rem;
    padding-block: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
}

.hero-phone {
    border-radius: 2rem;
    border: 1px solid #ddd;
    padding: 1.5rem;
    background-color: #fff;
    max-width: 320px;
    margin-left: auto;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.phone-screen {
    border-radius: 1.7rem;
    background-color: #000;
    padding: 1rem;
    height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

.phone-product {
    border-radius: 1.2rem;
    background-color: #111;
    padding: 1rem;
}

    .phone-product h5 {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.16em;
    }

.phone-footer {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.8;
    text-align: center;
}

/* Seções genéricas */
section.section-block {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    opacity: 0.7;
}

.section-title {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 1.5rem;
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-text {
    max-width: 40rem;
    font-size: 0.95rem;
}

/* Cards “Chefs” */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.logo-card {
    background-color: transparent;
    border-radius: 1.5rem;
    padding: 1.2rem 0.5rem;
    text-align: center;
}

.avatar-wrapper {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 0.75rem;
    border: 2px solid #111; /* opcional, só pra destacar */
}

    .avatar-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.avatar-name {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}


/* Seção história */
.story-text {
    max-width: 38rem;
    font-size: 0.95rem;
}

.story-highlight {
    font-size: 1.1rem;
    font-weight: 600;
}

/* CTA Franquia */
.cta-franquia {
    border-radius: 2rem;
    border: 1px solid #111;
    padding: 3rem 2.5rem;
    text-align: center;
    background-color: #fff;
}

/* Footer */
footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    font-size: 0.8rem;
}

    footer .footer-links a {
        text-transform: uppercase;
        letter-spacing: 0.16em;
        font-size: 0.7rem;
        margin-right: 1.5rem;
        text-decoration: none;
        color: inherit;
        opacity: 0.7;
    }

        footer .footer-links a:hover {
            opacity: 1;
        }

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 6rem;
    }

    .hero-phone {
        margin-top: 3rem;
        margin-right: auto;
    }
}

.hero-banner-caption {
    position: absolute;
    top: 50%;
    right: 10%; /* Ajuste fino da posição horizontal */
    transform: translateY(-50%);
    width: 320px; /* Largura do bloco de texto */
    color: #000;
    text-align: right;
    z-index: 10;
}

.hero-banner-title-main {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 900;
    font-size: 2.6rem;
    line-height: 1.1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-banner-title-em {
    margin-top: .6rem;
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 2.4rem;
    text-decoration: underline;
}

.hero-banner-button {
    margin-top: 2rem;
}

    .hero-banner-button .btn-hero {
        border-radius: 999px;
        padding: 0.75rem 2.5rem;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.16em;
    }

/* Responsivo – se quiser ajustar pro mobile */
@media (max-width: 992px) {
    .hero-banner-caption {
        top: 60%;
        right: 50%;
        transform: translate(50%, -50%);
        width: 80%;
        text-align: center;
    }

    .hero-banner-title-main,
    .hero-banner-title-em {
        font-size: 2rem;
    }
}

/* Texto no bloco preto à esquerda */
.hero-banner-caption-left {
    position: absolute;
    top: 50%;
    left: 16%; /* empurra para dentro do bloco preto */
    transform: translateY(-50%);
    width: 360px;
    color: #fff;
    text-align: left;
    z-index: 10;
}

    /* Reaproveita as mesmas fontes/estilos do outro banner */
    .hero-banner-caption-left .hero-banner-title-main {
        font-family: 'Montserrat', system-ui, sans-serif;
        font-weight: 900;
        font-size: 2.6rem;
        line-height: 1.1;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .hero-banner-caption-left .hero-banner-title-em {
        margin-top: .8rem;
        font-family: 'Playfair Display', 'Times New Roman', serif;
        font-style: italic;
        font-weight: 700;
        font-size: 2.3rem;
        text-decoration: underline;
    }

/* Responsivo opcional */
@media (max-width: 992px) {
    .hero-banner-caption-left {
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        text-align: center;
    }
}
.section-text.section-text-full {
    max-width: 100% !important;
    width: 100%;
}