/* ============================================
   OLIS | Gastronomia de Origem
   Brand CSS — Identidade Visual Completa
   ============================================ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
    /* Brand Colors */
    --verde:        #2D5A27;
    --verde-dark:   #1E3E1A;
    --verde-light:  #3A7332;
    --rosa:         #E8A0A0;
    --rosa-light:   #F2C4C4;
    --rosa-pale:    #F9E4E4;
    --rosa-bg:      #FDF0F0;
    --oliva:        #A8B83D;
    --oliva-dark:   #8A9A2E;
    --creme:        #FFF9F5;
    --creme-dark:   #F5EDE6;
    --branco:       #FFFFFF;
    --texto:        #2C2C2C;
    --texto-light:  #5A5A5A;
    --texto-muted:  #8A8A8A;
    
    /* Typography */
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-display-text: 'DM Serif Text', Georgia, serif;
    --font-body:    'Inter', -apple-system, sans-serif;
    
    /* Spacing */
    --section-py:   clamp(80px, 10vw, 140px);
    --container:    1200px;
    --gap:          clamp(16px, 3vw, 32px);
    
    /* Transitions */
    --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm:    0 2px 8px rgba(45, 90, 39, 0.06);
    --shadow-md:    0 8px 32px rgba(45, 90, 39, 0.08);
    --shadow-lg:    0 16px 48px rgba(45, 90, 39, 0.12);
    --shadow-card:  0 4px 20px rgba(45, 90, 39, 0.05);
    
    /* Border Radius */
    --radius-sm:    8px;
    --radius-md:    16px;
    --radius-lg:    24px;
    --radius-xl:    40px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--texto);
    background-color: var(--creme);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ─── TYPOGRAPHY ─── */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--oliva);
    margin-bottom: 16px;
    position: relative;
    padding-left: 28px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background-color: var(--oliva);
}

.section-tag--light {
    color: var(--rosa-light);
}

.section-tag--light::before {
    background-color: var(--rosa-light);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    color: var(--verde);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.section-title--light {
    color: var(--creme);
}

.section-title em, .section-title i {
    font-style: italic;
    color: var(--oliva-dark);
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--verde);
    color: var(--creme);
    border-color: var(--verde);
}

.btn--primary:hover {
    background-color: var(--verde-dark);
    border-color: var(--verde-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background-color: transparent;
    color: var(--verde);
    border-color: var(--verde);
}

.btn--secondary:hover {
    background-color: var(--verde);
    color: var(--creme);
    transform: translateY(-2px);
}

.btn--outline {
    background-color: transparent;
    color: var(--rosa-light);
    border-color: rgba(232, 160, 160, 0.4);
}

.btn--outline:hover {
    background-color: rgba(232, 160, 160, 0.1);
    border-color: var(--rosa-light);
}

.btn--card {
    background-color: var(--verde);
    color: var(--creme);
    border-color: var(--verde);
    width: 100%;
    margin-top: auto;
}

.btn--card:hover {
    background-color: var(--verde-dark);
    border-color: var(--verde-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--card-featured {
    background-color: var(--rosa);
    color: var(--verde-dark);
    border-color: var(--rosa);
    width: 100%;
    margin-top: auto;
    font-weight: 600;
}

.btn--card-featured:hover {
    background-color: var(--rosa-light);
    border-color: var(--rosa-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--large {
    padding: 20px 48px;
    font-size: 1rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background-color: transparent;
}

.nav--scrolled {
    background-color: rgba(255, 249, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.nav__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo-img {
    height: 48px;
    width: auto;
    border-radius: 8px;
    transition: var(--transition);
}

.nav--scrolled .nav__logo-img {
    height: 40px;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--verde);
    letter-spacing: 0.02em;
    position: relative;
    padding: 4px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--verde);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link--cta {
    background-color: var(--verde);
    color: var(--creme) !important;
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-weight: 500;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background-color: var(--verde-dark);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--verde);
    transition: var(--transition);
    border-radius: 2px;
}

.nav__toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--rosa-bg);
    position: relative;
    overflow: hidden;
    padding: 120px 20px 100px;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(45, 90, 39, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 184, 61, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(232, 160, 160, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero__container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding-bottom: 60px;
}

.hero__logo {
    width: clamp(120px, 20vw, 180px);
    height: auto;
    margin: 0 auto 20px;
    border-radius: var(--radius-md);
}

.hero__tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--oliva);
    margin-bottom: 32px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--verde);
    margin-bottom: 16px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.hero__title em {
    font-style: italic;
    color: var(--verde-light);
    position: relative;
}

.hero__title em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(232, 160, 160, 0.35);
    z-index: -1;
    border-radius: 3px;
}

.hero__subtitle {
    font-size: 0.9rem;
    color: var(--texto-light);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--verde), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   SOBRE / MANIFESTO
   ============================================ */
.sobre {
    padding: var(--section-py) 0;
    background-color: var(--creme);
}

.sobre__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

.sobre__manifesto {
    max-width: 720px;
    margin-bottom: 80px;
}

.sobre__text p {
    font-size: 1.05rem;
    color: var(--texto-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.sobre__lead {
    font-family: var(--font-display-text);
    font-size: 1.3rem !important;
    color: var(--verde) !important;
    line-height: 1.65 !important;
    margin-bottom: 24px !important;
}

.sobre__text em {
    font-style: italic;
    color: var(--verde);
}

.sobre__text strong {
    color: var(--verde);
    font-weight: 600;
}

/* Filosofia */
.sobre__filosofia {
    margin-bottom: 80px;
    padding: clamp(40px, 6vw, 80px);
    background-color: var(--rosa-bg);
    border-radius: var(--radius-lg);
}

.sobre__filosofia-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--verde);
    margin-bottom: 12px;
}

.sobre__filosofia-intro {
    font-size: 1.05rem;
    color: var(--texto-light);
    margin-bottom: 48px;
    max-width: 600px;
}

.sobre__filosofia-intro em {
    font-style: italic;
    color: var(--verde);
    font-weight: 500;
}

.sobre__pilares {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.pilar {
    background-color: var(--branco);
    padding: 36px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.pilar:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pilar__icon {
    width: 56px;
    height: 56px;
    background-color: var(--verde);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pilar__icon i {
    font-size: 1.2rem;
    color: var(--rosa-light);
}

.pilar__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--verde);
    margin-bottom: 8px;
}

.pilar__text {
    font-size: 0.9rem;
    color: var(--texto-light);
    line-height: 1.7;
}

/* Chefs Section */
.sobre__chefs-header {
    max-width: 720px;
    margin-bottom: 48px;
}

.sobre__chefs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: start;
    width: 100%;
}

@media (max-width: 768px) {
    .sobre__chefs-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }
}

.sobre__chef-content {
    padding: 40px;
    background-color: var(--branco);
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--verde);
    box-shadow: var(--shadow-card);
    height: 100%;
    transition: var(--transition);
}

.sobre__chef-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.sobre__chef-avatar {
    width: 64px;
    height: 64px;
    background-color: var(--rosa-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sobre__chef-avatar i {
    font-size: 2.5rem;
    color: var(--rosa);
}

.sobre__chef-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--verde);
    margin-bottom: 4px;
    line-height: 1.3;
}

.sobre__chef-role {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--oliva);
    margin-bottom: 20px !important;
}

.sobre__chef-content p {
    font-size: 0.92rem;
    color: var(--texto-light);
    margin-bottom: 12px;
    line-height: 1.8;
}

.sobre__quote {
    font-family: var(--font-display-text);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--verde);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--rosa-light);
    line-height: 1.6;
}

/* ============================================
   SERVIÇOS
   ============================================ */
.servicos {
    padding: var(--section-py) 0;
    background-color: var(--verde);
    position: relative;
    overflow: hidden;
}

.servicos::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 184, 61, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.servicos__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

.servicos__header {
    text-align: center;
    margin-bottom: 64px;
}

.servicos__intro {
    font-size: 1.05rem;
    color: rgba(255, 249, 245, 0.7);
    max-width: 520px;
    margin: 0 auto;
}

.servicos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

/* Service Card */
.servico-card {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.servico-card:hover {
    background-color: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.servico-card--featured {
    background-color: rgba(232, 160, 160, 0.12);
    border-color: rgba(232, 160, 160, 0.25);
}

.servico-card--featured:hover {
    background-color: rgba(232, 160, 160, 0.18);
    border-color: rgba(232, 160, 160, 0.35);
}

.servico-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--oliva);
    background-color: rgba(168, 184, 61, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
}

.servico-card__icon {
    width: 52px;
    height: 52px;
    background-color: rgba(232, 160, 160, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.servico-card__icon i {
    font-size: 1.1rem;
    color: var(--rosa);
}

.servico-card__title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--creme);
    font-weight: 500;
    margin-bottom: 4px;
}

.servico-card__tagline {
    font-size: 0.8rem;
    color: var(--rosa-light);
    font-style: italic;
    margin-bottom: 16px;
}

.servico-card__desc {
    font-size: 0.88rem;
    color: rgba(255, 249, 245, 0.65);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Options inside cards */
.servico-card__options {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.servico-option {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 16px;
    transition: var(--transition);
}

.servico-option:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.servico-option h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--rosa);
    margin-bottom: 4px;
    font-weight: 500;
}

.servico-option p {
    font-size: 0.78rem;
    color: rgba(255, 249, 245, 0.55);
    margin-bottom: 8px;
    line-height: 1.5;
}

.servico-option__price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--creme);
    font-weight: 600;
}

.servico-option__price small {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 249, 245, 0.5);
}

/* Features list */
.servico-card__features {
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.servico-card__features li {
    font-size: 0.82rem;
    color: rgba(255, 249, 245, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.servico-card__features li i {
    color: var(--oliva);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ============================================
   DIFERENCIAIS
   ============================================ */
.diferenciais {
    padding: clamp(60px, 8vw, 100px) 0;
    background-color: var(--rosa-bg);
}

.diferenciais__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
}

.diferencial {
    text-align: center;
}

.diferencial__number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--rosa);
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.7;
}

.diferencial__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--verde);
    margin-bottom: 8px;
}

.diferencial p {
    font-size: 0.9rem;
    color: var(--texto-light);
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   GALERIA GASTRONÔMICA
   ============================================ */
.galeria {
    padding: var(--section-py) 0;
    background-color: #1a1a1a;
    overflow: hidden;
}

.galeria__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.galeria__header {
    text-align: center;
    margin-bottom: 56px;
}

.galeria .section-tag {
    color: var(--oliva);
}

.galeria .section-tag::after {
    background-color: var(--oliva);
}

.galeria .section-title {
    color: var(--creme);
}

.galeria__intro {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 249, 245, 0.6);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.galeria__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 12px;
    grid-auto-flow: dense;
}

.galeria__item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.galeria__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
    will-change: transform;
}

.galeria__item:hover img {
    transform: scale(1.08);
    filter: brightness(0.75);
}

.galeria__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.galeria__item:hover .galeria__overlay {
    opacity: 1;
    transform: translateY(0);
}

.galeria__caption {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--creme);
    letter-spacing: 0.02em;
}

/* Grid Layout — Items especiais */
.galeria__item--wide {
    grid-column: span 2;
}

.galeria__item--tall {
    grid-row: span 2;
}

/* ─── Lightbox ─── */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxIn 0.4s ease;
}

@keyframes lightboxIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox__caption {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: rgba(255, 249, 245, 0.8);
    margin-top: 16px;
    text-align: center;
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
}

.lightbox__close:hover {
    color: #fff;
    transform: scale(1.15);
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.4rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   JORNADA
   ============================================ */
.jornada {
    padding: var(--section-py) 0;
    background-color: var(--creme);
}

.jornada__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

.jornada__header {
    max-width: 560px;
    margin-bottom: 64px;
}

.jornada__intro {
    font-size: 1.05rem;
    color: var(--texto-light);
}

.jornada__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.jornada__step {
    display: flex;
    gap: 24px;
    padding: 32px;
    background-color: var(--branco);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.jornada__step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--verde);
}

.jornada__step-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--rosa);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.65;
}

.jornada__step-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--verde);
    margin-bottom: 8px;
}

.jornada__step-content p {
    font-size: 0.88rem;
    color: var(--texto-light);
    line-height: 1.7;
}

/* ============================================
   BRIEFING / FORMULÁRIO
   ============================================ */
.briefing {
    padding: var(--section-py) 0;
    background-color: var(--verde);
    position: relative;
}

.briefing::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 160, 160, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.briefing__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

.briefing__header {
    text-align: center;
    margin-bottom: 48px;
}

.briefing__intro {
    font-size: 1rem;
    color: rgba(255, 249, 245, 0.65);
    max-width: 480px;
    margin: 0 auto;
}

/* Form */
.briefing-form {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: clamp(32px, 5vw, 56px);
    backdrop-filter: blur(8px);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step__header {
    margin-bottom: 32px;
}

.form-step__number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--rosa);
    display: block;
    margin-bottom: 4px;
    opacity: 0.7;
}

.form-step__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--creme);
    font-weight: 400;
}

.form-step__subtitle {
    font-size: 0.85rem;
    color: rgba(255, 249, 245, 0.5);
    margin-top: 4px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--rosa-light);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: var(--creme);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 249, 245, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--rosa);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(232, 160, 160, 0.15);
}

/* Service Options (radio cards) */
.form-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.form-option input {
    display: none;
}

.form-option__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.form-option__box i {
    font-size: 1.4rem;
    color: var(--rosa);
}

.form-option__box strong {
    font-size: 0.85rem;
    color: var(--creme);
}

.form-option__box small {
    font-size: 0.7rem;
    color: rgba(255, 249, 245, 0.45);
}

.form-option input:checked + .form-option__box {
    border-color: var(--rosa);
    background-color: rgba(232, 160, 160, 0.15);
}

/* Checkboxes & Radios — Custom styled */
.form-checks,
.form-radios-vertical {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.form-check,
.form-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: rgba(255, 249, 245, 0.6);
    cursor: pointer;
    padding: 10px 18px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    user-select: none;
}

.form-check:hover,
.form-radio:hover {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(255, 249, 245, 0.85);
}

/* Hide native inputs */
.form-check input,
.form-radio input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Selected state */
.form-check:has(input:checked),
.form-radio:has(input:checked) {
    background-color: rgba(232, 160, 160, 0.12);
    border-color: rgba(232, 160, 160, 0.45);
    color: var(--creme);
}

.form-radios-vertical {
    flex-direction: column;
}

.form-radios-vertical .form-radio {
    width: 100%;
}

/* Form Navigation */
.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Progress bar */
.form-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.form-progress__bar {
    flex: 1;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.form-progress__fill {
    height: 100%;
    width: 33.33%;
    background-color: var(--rosa);
    border-radius: 3px;
    transition: var(--transition-slow);
}

.form-progress__text {
    font-size: 0.75rem;
    color: rgba(255, 249, 245, 0.4);
    white-space: nowrap;
}

/* Success */
.briefing-success__content {
    text-align: center;
    padding: 56px 40px 48px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
}

.briefing-success__content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--creme);
    margin-bottom: 14px;
}

.briefing-success__content p {
    font-size: 0.9rem;
    color: rgba(255, 249, 245, 0.6);
    margin-bottom: 0;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Success links — refined, delicate */
.briefing-success__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(168, 184, 61, 0.15);
    color: var(--oliva);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.briefing-success__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.success-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 249, 245, 0.55);
    transition: var(--transition);
    padding: 6px 0;
    position: relative;
}

.success-link svg {
    opacity: 0.6;
    transition: var(--transition);
    flex-shrink: 0;
}

.success-link:hover {
    color: var(--rosa-light);
}

.success-link:hover svg {
    opacity: 1;
}

.success-link__divider {
    color: rgba(255, 255, 255, 0.15);
    font-size: 1.2rem;
    line-height: 1;
    user-select: none;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    padding: var(--section-py) 0;
    background-color: var(--rosa-bg);
}

.cta-final__container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    text-align: center;
}

.cta-final__quote {
    font-family: var(--font-display-text);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--verde);
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 16px;
}

.cta-final__authors {
    font-size: 0.85rem;
    color: var(--texto-light);
    margin-bottom: 40px;
    font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--verde-dark);
    padding: 64px 0 32px;
    color: rgba(255, 249, 245, 0.6);
}

.footer__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

.footer__logo {
    width: 80px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 12px;
}

.footer__tagline {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--rosa-light);
    font-style: italic;
    margin-bottom: 4px;
}

.footer__region {
    font-size: 0.82rem;
    color: rgba(255, 249, 245, 0.4);
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--creme);
    margin-bottom: 16px;
    font-weight: 500;
}

.footer__links li,
.footer__contact li {
    margin-bottom: 10px;
}

.footer__links a,
.footer__contact a {
    font-size: 0.85rem;
    color: rgba(255, 249, 245, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--rosa-light);
}

.footer__bottom {
    grid-column: 1 / -1;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.75rem;
    color: rgba(255, 249, 245, 0.3);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    z-index: 900;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .servicos__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
    
    .footer__container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer__brand {
        grid-column: 1 / -1;
    }

    .galeria__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 240px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--creme);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 24px;
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
        transition: var(--transition-slow);
    }
    
    .nav__menu.active {
        right: 0;
    }
    
    .nav__link {
        font-size: 1rem;
    }
    
    .nav__link--cta {
        text-align: center;
        display: block;
    }
    
    .hero {
        min-height: auto;
        padding: 140px 20px 100px;
    }
    
    .hero__title {
        font-size: clamp(1.3rem, 4.5vw, 1.8rem);
    }
    
    .hero__ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__scroll-indicator {
        display: none;
    }
    
    .sobre__filosofia {
        padding: 32px 24px;
    }
    
    .sobre__pilares {
        grid-template-columns: 1fr;
    }
    
    .sobre__chef-content {
        padding: 28px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-options {
        grid-template-columns: 1fr;
    }
    
    .jornada__steps {
        grid-template-columns: 1fr;
    }
    
    .jornada__step {
        gap: 16px;
    }
    
    .footer__container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .diferenciais__container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .briefing-form {
        padding: 24px 20px;
    }
    
    .galeria__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 8px;
    }

    .galeria__item--wide {
        grid-column: span 2;
    }

    .galeria__item--tall {
        grid-row: span 1;
    }

    .galeria__overlay {
        opacity: 1;
        background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.6));
    }

    .galeria__caption {
        font-size: 0.95rem;
    }

    .lightbox__prev { left: 12px; }
    .lightbox__next { right: 12px; }

    .lightbox__prev,
    .lightbox__next {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .btn {
        padding: 14px 24px;
        font-size: 0.82rem;
    }
    
    .btn--large {
        padding: 16px 32px;
    }
}

/* ─── PRINT ─── */
@media print {
    .nav, .whatsapp-float, .hero__scroll-indicator {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
