


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


@font-face {
    font-family: 'Anago';
    src: url('../fonts/Anago-Book.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Anago';
    src: url('../fonts/Anago-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Brodo Grunge';
    src: url('../fonts/BrodoThinGrunge.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Cloud Loop';
    src: url('../fonts/CloudLoop-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}


:root {
    
    --cream: #F8F6E4;      
    --sand: #EADAB0;       
    --gold-light: #D6B35A; 
    --gold: #C9944A;       
    --bronze: #A6783E;     
    --brown: #725920;      

    
    --sunrise-dark: #503917;   
    --sunrise-mid: #b47837;    
    --sunrise-light: #dfb969;  

    
    --font-title: 'Anago', sans-serif;           
    --font-grunge: 'Brodo Grunge', sans-serif;   
    --font-decorative: 'Cloud Loop', cursive;    

    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    
    --shadow-sm: 0 2px 12px rgba(114, 89, 32, 0.06);
    --shadow-md: 0 4px 24px rgba(114, 89, 32, 0.08);
    --shadow-lg: 0 8px 40px rgba(114, 89, 32, 0.12);
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-title);
    font-weight: 400;
    color: var(--brown);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}


h1, h2 {
    font-family: var(--font-title);
    font-weight: 400;
    color: var(--bronze);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3, h4 {
    font-family: var(--font-title);
    font-weight: 400;
    color: var(--bronze);
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
}



.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    
    background: linear-gradient(135deg, var(--sunrise-dark) 0%, var(--sunrise-mid) 50%, var(--sunrise-light) 100%);
    backdrop-filter: blur(12px);
    padding: var(--space-sm) 0;
    box-shadow: 0 4px 20px rgba(80, 57, 23, 0.25);
    transition: all 0.3s ease;
    position: relative;
}


.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.header > * {
    position: relative;
    z-index: 2;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
    
    filter: brightness(0) saturate(100%) invert(91%) sepia(15%) saturate(571%) hue-rotate(357deg) brightness(98%) contrast(91%);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-icon {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: white;
    color: var(--sunrise-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}



.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    background: var(--cream); 
}


.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    
    background: linear-gradient(180deg,
        rgba(248, 246, 228, 0) 0%,
        rgba(248, 246, 228, 0.3) 40%,
        rgba(248, 246, 228, 0.7) 70%,
        rgba(248, 246, 228, 1) 100%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: var(--space-xl);
    text-align: center;
}

.hero-title {
    font-family: var(--font-grunge);
    color: white;
    margin-bottom: var(--space-lg);
    letter-spacing: 0.05em;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: white;
    margin-bottom: var(--space-xl);
    line-height: 1.8;
    font-weight: 400;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 3px 8px rgba(0, 0, 0, 0.2);
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-ctas .btn {
    font-size: 1.125rem;
    padding: 1.125rem 2.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}



.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    letter-spacing: 0.03em;
}

.btn i {
    margin-right: 0.5rem;
    color: inherit;
}

.btn-primary {
    background: var(--gold);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}




.btn-secondary {
    background: transparent;
    color: var(--bronze);
    border: 2px solid var(--bronze);
}

.btn-secondary:hover {
    background: var(--bronze);
    color: white;
    border-color: var(--bronze);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


.btn-secondary-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary-gold:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


.btn-secondary-brown {
    background: transparent;
    color: var(--brown);
    border: 2px solid var(--brown);
}

.btn-secondary-brown:hover {
    background: var(--brown);
    color: white;
    border-color: var(--brown);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}




.btn-secondary-light {
    background: var(--cream);
    color: var(--bronze);
    border: 2px solid var(--bronze);
}

.btn-secondary-light:hover {
    background: var(--bronze);
    color: white;
    border-color: var(--bronze);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


.btn-secondary-light-gold {
    background: var(--cream);
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary-light-gold:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


.btn-secondary-light-brown {
    background: var(--cream);
    color: var(--brown);
    border: 2px solid var(--brown);
}

.btn-secondary-light-brown:hover {
    background: var(--brown);
    color: white;
    border-color: var(--brown);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-block {
    width: 100%;
}



.section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.section-title {
    margin-bottom: var(--space-sm);
}

.section-intro {
    font-size: 1.25rem;
    color: var(--bronze);
    font-weight: 300;
}



.encontra-aqui {
    background: var(--cream);
}


.carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.pilares-carousel {
    position: relative;
    padding-bottom: 20px;
}


@media (min-width: 993px) {
    .pilares-carousel {
        display: none; 
    }

    .icons-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-lg);
    }
}


@media (max-width: 992px) {
    .icons-grid {
        display: none !important;
    }

    .pilares-carousel {
        display: block;
    }
}

.pilares-carousel .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    transition: opacity 0.6s ease;
}

.pilares-carousel .swiper-slide-active {
    opacity: 1;
}


.swiper-button-prev,
.swiper-button-next {
    background: transparent;
    color: rgba(201, 148, 74, 0.4);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    box-shadow: none;
    z-index: 10;
    border: none;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: rgba(201, 148, 74, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
    font-weight: 300;
}


.swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    margin-top: var(--space-lg);
    text-align: center;
}

.swiper-pagination-dot {
    width: 6px;
    height: 6px;
    background: var(--sand);
    opacity: 0.4;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 4px !important;
    cursor: pointer;
}

.swiper-pagination-dot-active {
    background: var(--bronze);
    opacity: 1;
    transform: scale(1.3);
}


.icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.icon-card {
    background: white;
    padding: var(--space-lg);
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.icon-wrapper {
    width: 120px;
    height: 120px;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.icon-card:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}






.icon-sunrise-dark-filter {
    filter: brightness(0) saturate(100%) invert(20%) sepia(25%) saturate(800%) hue-rotate(20deg) brightness(90%) contrast(105%);
}


.icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: all 0.3s ease;
    filter: opacity(0.8) brightness(0) saturate(100%) invert(20%) sepia(25%) saturate(800%) hue-rotate(20deg) brightness(90%) contrast(105%);
}

.icon-card:hover .icon-img {
    filter: opacity(1) drop-shadow(0 2px 8px rgba(114, 89, 32, 0.2));
}

.icon-card h3 {
    color: var(--bronze);
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.icon-card p {
    color: var(--brown);
    line-height: 1.6;
    font-size: 0.95rem;
}



.quem-somos {
    background: white;
}

.quem-somos-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (max-width: 768px) {
    .quem-somos-content {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

.quem-somos-header {
    margin-bottom: var(--space-xl);
}

.quem-somos-header h2 {
    margin-bottom: var(--space-sm);
}

.quem-somos-text h2 {
    margin-bottom: var(--space-lg);
}


.quem-somos-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.highlight-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-md);
    background: var(--cream);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(201, 148, 74, 0.08);
    transform: translateX(8px);
}

.highlight-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.highlight-item h4 {
    color: var(--bronze);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.highlight-item p {
    color: var(--brown);
    font-size: 0.95rem;
    line-height: 1.5;
}


.quem-somos-ctas {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.quem-somos-ctas .btn {
    flex: 1;
    min-width: 200px;
}

.text-direct {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
    color: var(--brown);
}

.text-poetic {
    font-family: var(--font-decorative);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--bronze);
    line-height: 1.7;
    padding-left: var(--space-md);
    border-left: 3px solid var(--gold);
    letter-spacing: 0.01em;
}

.quem-somos-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.quem-somos-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}



.cardapio {
    background: var(--sand);
}

/* HOME - Nosso Cardápio */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.menu-grid .menu-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.menu-grid .menu-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.menu-grid .menu-item-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f5f5f5;
}

.menu-grid .menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.menu-grid .menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-grid .menu-item-content {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-grid .menu-item-title {
    font-family: var(--font-title);
    font-size: 1.15rem;
    color: var(--brown);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.menu-grid .menu-item-time {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-grid .menu-item-desc {
    color: var(--bronze);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Botão CTA centralizado */
.section-cta {
    text-align: center;
}

/* Responsividade - Nosso Cardápio (Home) */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .menu-grid .menu-item {
        border-radius: 12px;
    }

    .menu-grid .menu-item-image {
        aspect-ratio: 3 / 4;
    }

    .menu-grid .menu-item-content {
        padding: var(--space-sm);
    }

    .menu-grid .menu-item-title {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .menu-grid .menu-item-time {
        font-size: 0.7rem;
        margin-bottom: 4px;
    }

    .menu-grid .menu-item-desc {
        font-size: 0.8rem;
        line-height: 1.5;
        -webkit-line-clamp: 3;
    }
}


.brioche-hero {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: var(--space-3xl) 0;
}

.brioche-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.brioche-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.brioche-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.brioche-text {
    color: white;
}

.brioche-title {
    font-family: var(--font-grunge);
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: var(--space-md);
    letter-spacing: 0.03em;
}

.brioche-desc {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.brioche-sub {
    font-style: italic;
    margin-bottom: var(--space-lg);
    opacity: 0.95;
}

.brioche-text .btn-primary {
    background: white;
    color: var(--gold);
}

.brioche-text .btn-primary:hover {
    background: var(--cream);
    color: var(--bronze);
}



.encomendas {
    background: white;
}

.encomendas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.encomenda-card {
    background: var(--cream);
    padding: var(--space-lg);
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.encomenda-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.encomenda-card h3 {
    color: var(--bronze);
    margin-bottom: var(--space-sm);
}

.encomenda-icon {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto var(--space-md);
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(20%) sepia(25%) saturate(800%) hue-rotate(20deg) brightness(90%) contrast(105%);
}

.encomenda-card:hover .encomenda-icon {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(20%) sepia(25%) saturate(800%) hue-rotate(20deg) brightness(90%) contrast(105%) drop-shadow(0 4px 8px rgba(80, 57, 23, 0.4));
}

.encomenda-list {
    list-style: none;
    margin-top: var(--space-md);
    padding: 0;
}

.encomenda-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--brown);
    line-height: 1.6;
}

.encomenda-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

.encomendas-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--cream);
    padding: var(--space-xl);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.form input,
.form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E5DCC5;
    border-radius: 8px;
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 400;
    color: var(--brown);
    background: white;
    transition: all 0.3s ease;
}

.form input:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 148, 74, 0.1);
}

.form textarea {
    resize: vertical;
    margin-bottom: var(--space-sm);
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--bronze);
    margin-top: var(--space-md);
}


.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.info-box {
    background: white;
    padding: var(--space-lg);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.info-box h3 {
    color: var(--bronze);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.info-box p {
    color: var(--brown);
    line-height: 1.7;
}

.info-box a {
    color: var(--gold);
    font-weight: 600;
}

.info-box a:hover {
    color: var(--gold-light);
}



.eventos {
    background: var(--cream);
}

.eventos-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
    .eventos-content {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

.eventos-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.eventos-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.eventos-text h2 {
    margin-bottom: var(--space-md);
}

.eventos-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: var(--space-xl);
    border: 1px solid #E5DCC5;
}

@media (max-width: 992px) {
    .eventos-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .eventos-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.evento-card-item {
    background: white;
    border-radius: 0;
    padding: var(--space-sm);
    box-shadow: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-right: 1px solid #E5DCC5;
    border-bottom: 1px solid #E5DCC5;
}

.evento-card-item:nth-child(4n) {
    border-right: none;
}

.evento-card-item:nth-last-child(-n+4) {
    border-bottom: none;
}

@media (max-width: 992px) {
    .evento-card-item:nth-child(2n) {
        border-right: none;
    }

    .evento-card-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

.evento-card-item:hover {
    transform: none;
    background: rgba(201, 148, 74, 0.05);
}

.evento-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    margin-bottom: var(--space-md);
}

.evento-card-icon-img {
    width: 100%;
    height: 100%;
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(20%) sepia(25%) saturate(800%) hue-rotate(20deg) brightness(90%) contrast(105%);
}

.evento-card-item:hover .evento-card-icon-img {
    transform: scale(1.15);
    filter: brightness(0) saturate(100%) invert(20%) sepia(25%) saturate(800%) hue-rotate(20deg) brightness(90%) contrast(105%) drop-shadow(0 4px 8px rgba(80, 57, 23, 0.3));
}

.evento-card-icon {
    display: none;
}

.evento-card-item h3 {
    color: var(--bronze);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    font-weight: 400;
}

.evento-card-item p {
    color: var(--brown);
    font-size: 0.85rem;
    line-height: 1.4;
    font-style: italic;
}

.eventos-footer {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
}

.eventos-footer-text {
    font-size: 1.125rem;
    color: var(--bronze);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.eventos-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.evento-type {
    text-align: center;
    padding: var(--space-md);
}

.evento-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.evento-type h3 {
    font-size: 1.5rem;
}

.eventos-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.gallery-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 300px;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-img:hover img {
    transform: scale(1.05);
}

.eventos-cta {
    text-align: center;
}

.eventos-info {
    font-size: 1.125rem;
    color: var(--bronze);
    margin-bottom: var(--space-md);
}


.event-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    background: white;
    padding: var(--space-lg);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-card h3 {
    color: var(--bronze);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--brown);
    line-height: 1.7;
}


.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.event-info-card {
    background: white;
    padding: var(--space-lg);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.event-info-card h3 {
    color: var(--bronze);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.event-info-card p {
    color: var(--brown);
    line-height: 1.7;
}

.event-info-card strong {
    color: var(--gold);
}


.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--cream);
    padding: var(--space-lg);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--brown);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.testimonial-author {
    font-weight: 600;
    color: var(--bronze);
    font-size: 0.95rem;
}



.lifestyle {
    background: white;
    padding: var(--space-2xl) 0;
}

.lifestyle-text {
    font-family: var(--font-decorative);
    font-size: 2.25rem;
    font-weight: 400;
    text-align: center;
    color: var(--bronze);
    margin-bottom: var(--space-xl);
    letter-spacing: 0.02em;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.lifestyle-img {
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow-md);
}

.lifestyle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.blog {
    background: var(--cream);
}

.blog-placeholder {
    text-align: center;
    padding: var(--space-xl);
    color: var(--bronze);
    font-size: 1.125rem;
}



.mapa {
    background: white;
}

.mapa-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xl);
}

.info-block {
    margin-bottom: var(--space-lg);
}

.info-block h3 {
    color: var(--bronze);
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.info-block p {
    line-height: 1.7;
}

.info-block a {
    color: var(--gold);
    font-weight: 600;
}

.info-block a:hover {
    color: var(--gold-light);
}

.mapa-embed {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}



.footer {
    background: linear-gradient(135deg, var(--cream) 0%, rgba(234, 218, 176, 0.5) 100%);
    border-top: 1px solid #E5DCC5;
    color: var(--brown);
    padding: 0;
}

.footer-top {
    padding: var(--space-3xl) 0 var(--space-xl);
    background: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-branding {
    grid-column: 1;
}

.footer-logo {
    margin-bottom: var(--space-sm);
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: var(--space-sm);
    filter: brightness(0) saturate(100%) invert(20%) sepia(25%) saturate(800%) hue-rotate(20deg) brightness(90%) contrast(105%);
}

.footer-tagline {
    font-family: var(--font-decorative);
    font-size: 1.1rem;
    color: var(--bronze);
    margin-bottom: var(--space-md);
    line-height: 1.6;
    font-weight: 400;
}

.footer-essence {
    font-size: 0.95rem;
    color: var(--brown);
    line-height: 1.7;
    opacity: 0.85;
}

.footer-section-title {
    color: var(--bronze);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-title);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--brown);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
}

.footer-link:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact p {
    color: var(--brown);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-contact strong {
    color: var(--bronze);
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 50%;
    color: var(--bronze);
    transition: all 0.3s ease;
    border: 1.5px solid var(--sand);
}

.footer-social-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201, 148, 74, 0.08);
}

.footer-social-link svg {
    transition: all 0.3s ease;
}

.footer-bottom {
    background: linear-gradient(135deg, var(--sunrise-dark) 0%, var(--sunrise-mid) 100%);
    color: var(--cream);
    padding: var(--space-md) 0;
    text-align: center;
    border-top: 1px solid rgba(248, 246, 228, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-bottom p {
    margin: 0.25rem auto;
    font-size: 0.9rem;
    opacity: 0.95;
}

.footer-credit {
    font-style: italic;
    font-size: 0.85rem !important;
    opacity: 0.8 !important;
}


@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-branding {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: var(--space-lg) 0 var(--space-md);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-branding {
        grid-column: auto;
        padding-bottom: var(--space-md);
        border-bottom: 1px solid #E5DCC5;
    }

    .footer-section {
        padding: var(--space-md) 0;
    }

    .footer-section-title {
        margin-bottom: var(--space-sm);
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .footer-credit {
        max-width: 250px;
        margin: 0.25rem auto;
    }
}



.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background: var(--gold);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201, 148, 74, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    border: none;
    padding: 0;
    animation: slideInLeft 0.5s ease forwards;
}

.back-to-top.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    animation: slideInLeft 0.5s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(201, 148, 74, 0.7);
}

.back-to-top i {
    font-size: 24px;
    color: white;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201, 148, 74, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-float 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(201, 148, 74, 0.7);
}

.whatsapp-float i {
    font-size: 28px;
    color: white;
}

@keyframes pulse-float {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(201, 148, 74, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(201, 148, 74, 0.8);
    }
}



.page-hero {
    background: linear-gradient(135deg, var(--sand) 0%, var(--gold-light) 100%);
    padding: calc(70px + var(--space-sm)) 0 var(--space-sm) 0;
    text-align: center;
}

.page-title {
    color: white;
    margin-bottom: var(--space-xs);
    text-shadow: 0 2px 20px rgba(114, 89, 32, 0.2);
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 300;
    margin: 0;
}



.legal-content {
    background: white;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    color: var(--bronze);
    font-size: 1.5rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
    font-weight: 400;
}

.legal-text p {
    color: var(--brown);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.legal-text ul {
    list-style-position: inside;
    color: var(--brown);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
}

.legal-text li {
    margin-bottom: 0.75rem;
}

.legal-text a {
    color: var(--gold);
    font-weight: 600;
}

.legal-text a:hover {
    color: var(--gold-light);
}



.manifesto-section {
    background: white;
}

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

.manifesto-intro {
    text-align: center;
    margin-bottom: var(--space-lg);
    padding: var(--space-md) 0;
}

.manifesto-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--brown);
    margin-bottom: var(--space-md);
    text-align: center;
}

.manifesto-declaration {
    text-align: center;
    margin: var(--space-lg) 0;
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(248, 246, 228, 0.5) 0%, rgba(234, 218, 176, 0.3) 100%);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
}

.manifesto-highlight {
    font-family: var(--font-decorative);
    font-size: 1.6rem;
    color: var(--bronze);
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.manifesto-body {
    margin: var(--space-md) 0;
}

.manifesto-closing {
    text-align: center;
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 12px;
}

.manifesto-closing .manifesto-highlight {
    color: white;
    font-size: 2rem;
}




.sobre-hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sobre-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(4px);
}


.sobre-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}


.sobre-hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sobre-hero-overlay h2 {
    font-family: var(--font-grunge);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: var(--space-xs);
    padding: 0;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.sobre-hero-overlay p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}



.cardapio-hero-video,
.manifesto-hero-video {
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cardapio-hero-video video,
.manifesto-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(4px);
}


.cardapio-hero-video::after,
.manifesto-hero-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}


.cardapio-hero-overlay,
.manifesto-hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cardapio-hero-overlay h1,
.manifesto-hero-overlay h1 {
    font-family: var(--font-grunge);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: var(--space-xs);
    padding: 0;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.cardapio-hero-overlay p,
.manifesto-hero-overlay p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}


.sobre-content {
    background: white;
}

.content-block {
    margin-bottom: var(--space-3xl);
}

.content-block:has(.values-grid) {
    margin-bottom: var(--space-xl);
}

.content-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--bronze);
    margin-bottom: var(--space-lg);
    font-weight: 400;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

.content-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--brown);
}

.content-text strong {
    color: var(--bronze);
    font-weight: 600;
}


.experience-list {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

@media (max-width: 992px) {
    .experience-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.exp-item {
    background: var(--cream);
    padding: var(--space-md);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.exp-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(114, 89, 32, 0.1);
}

.exp-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.exp-icon-img {
    width: 100%;
    height: 100%;
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(20%) sepia(25%) saturate(800%) hue-rotate(20deg) brightness(90%) contrast(105%);
}

.exp-item:hover .exp-icon-img {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(20%) sepia(25%) saturate(800%) hue-rotate(20deg) brightness(90%) contrast(105%) drop-shadow(0 4px 8px rgba(80, 57, 23, 0.3));
}

.exp-content h4 {
    color: var(--bronze);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.exp-content p {
    color: var(--brown);
    font-size: 0.95rem;
}


.quote-section {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: var(--space-xl);
    border-radius: 16px;
    text-align: center;
    margin: var(--space-3xl) 0;
}

.quote-text {
    font-family: var(--font-decorative);
    font-size: 1.75rem;
    color: white;
    line-height: 1.7;
    font-weight: 400;
}


.pillars-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

@media (max-width: 992px) {
    .pillars-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.pillar {
    background: var(--cream);
    padding: var(--space-lg);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.pillar:hover {
    background: rgba(201, 148, 74, 0.1);
    transform: scale(1.05);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.pillar h4 {
    color: var(--bronze);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.pillar p {
    color: var(--brown);
    font-size: 0.95rem;
    line-height: 1.5;
}


.essence-box {
    background: var(--cream);
    padding: var(--space-xl);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
}


.sobre-cta-final {
    position: relative;
    padding: var(--space-3xl) 0;
    text-align: center;
    overflow: hidden;
}

.sobre-cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 148, 74, 0.8) 0%, rgba(214, 179, 90, 0.8) 100%);
    z-index: 1;
}

.sobre-cta-final-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.sobre-cta-final .container {
    position: relative;
    z-index: 2;
}

.cta-buttons-final {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-light {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary-light:hover {
    background: white;
    color: var(--gold);
    border-color: white;
}


.quem-somos-full {
    max-width: 1000px;
    margin: 0 auto;
}

.quem-somos-image-large {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-xl);
}

.quem-somos-image-large img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
}

.quem-somos-text-content {
    margin-bottom: var(--space-xl);
}

.text-block {
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    font-size: 1.75rem;
    color: var(--bronze);
    margin-bottom: var(--space-md);
}

.poetic-block {
    padding: var(--space-lg);
    background: var(--cream);
    border-radius: 12px;
    text-align: center;
}



.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: var(--space-md);
    border-top: 1px solid #E5DCC5;
    border-left: 1px solid #E5DCC5;
}

.value-card {
    background: white;
    border-radius: 0;
    text-align: center;
    box-shadow: none;
    transition: all 0.3s ease;
    padding: var(--space-sm);
    border-right: 1px solid #E5DCC5;
    border-bottom: 1px solid #E5DCC5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.value-card:hover {
    transform: none;
    box-shadow: none;
    background: rgba(201, 148, 74, 0.05);
}

.value-icon {
    display: none;
}

.value-card h3 {
    color: var(--bronze);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--brown);
    line-height: 1.4;
    font-size: 0.85rem;
    font-style: italic;
}



.cardapio-hero {
    background: linear-gradient(135deg, var(--sand) 0%, var(--gold-light) 100%);
    padding: calc(100px + var(--space-xl)) 0 var(--space-xl);
    text-align: center;
}

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

.cardapio-title {
    font-family: var(--font-grunge);
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 20px rgba(114, 89, 32, 0.2);
}

.cardapio-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    font-weight: 300;
}

.cardapio-section {
    background: var(--cream);
}

.cardapio-category {
    margin-bottom: var(--space-xl);
}



.category-header-delivery {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-icon-delivery {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon-delivery img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(20%) sepia(25%) saturate(800%) hue-rotate(20deg) brightness(90%) contrast(105%);
}

.category-header-delivery > div {
    flex: 1;
}

.category-title-delivery {
    color: var(--bronze);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--space-xs);
    font-weight: 400;
}

.category-description-delivery {
    color: var(--brown);
    font-size: 0.95rem;
    opacity: 0.85;
    margin: 0;
}

.menu-grid-delivery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-md);
}

.menu-card-delivery {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #E5DCC5;
}

.menu-card-delivery:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.menu-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--cream);
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-card-delivery:hover .menu-card-image img {
    transform: scale(1.05);
}

.menu-card-content {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.menu-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
}

.menu-item-name-delivery {
    color: var(--bronze);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 400;
}

.menu-item-price-delivery {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.15rem;
    white-space: nowrap;
}

.menu-item-description-delivery {
    color: var(--brown);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 var(--space-md) 0;
    flex: 1;
    opacity: 0.9;
}

.btn-add-cart {
    background: var(--gold);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-add-cart:hover {
    background: var(--gold-light);
    transform: scale(1.02);
    box-shadow: var(--shadow-sm);
}


.category-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.category-title {
    color: var(--bronze);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: var(--space-sm);
    font-weight: 400;
}

.category-description {
    color: var(--brown);
    font-size: 1.05rem;
    opacity: 0.9;
}

.menu-card {
    background: white;
    padding: var(--space-md);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 3px solid var(--gold);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--gold-light);
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.menu-item-name {
    color: var(--bronze);
    font-size: 1.15rem;
    margin: 0;
    font-weight: 400;
    flex: 1;
    text-align: left;
}

.menu-item-price {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

.menu-item-description {
    color: var(--brown);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}


.cardapio-cta {
    background: white;
    text-align: center;
}

.cardapio-cta .cta-title {
    color: var(--bronze);
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.cardapio-cta .cta-text {
    color: var(--brown);
    font-size: 1.125rem;
}

.cardapio-cta .cta-buttons {
    gap: var(--space-md);
}



.cta-section {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: var(--space-3xl) 0;
    text-align: center;
}

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

.cta-title {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

.cta-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--gold);
}

.cta-section .btn-primary:hover {
    background: var(--cream);
    color: var(--bronze);
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--gold);
}



.nav-link.active {
    color: white;
    font-weight: 700;
}

.nav-link.active::after {
    width: 100%;
    background: white;
}



@media (max-width: 992px) {
    .quem-somos-content,
    .brioche-content,
    .mapa-content {
        grid-template-columns: 1fr;
    }

    .lifestyle-grid {
        grid-template-columns: 1fr;
    }

    .lifestyle-img {
        height: 300px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .cta-buttons .btn {
        min-width: 250px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .experience-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillars-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        box-shadow: 0 8px 32px rgba(114, 89, 32, 0.35);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(180deg, var(--sunrise-dark) 0%, var(--sunrise-mid) 100%);
        padding: var(--space-lg);
        gap: var(--space-sm);
        box-shadow: 0 8px 24px rgba(80, 57, 23, 0.4);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .section-cta {
        margin-top: var(--space-xl);
    }

    .hero-content {
        padding: var(--space-md);
    }

    .hero-title {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
        margin-bottom: var(--space-md);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
        margin-bottom: var(--space-lg);
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }

    .footer-nav {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .eventos-types {
        grid-template-columns: 1fr;
    }

    .icons-grid {
        grid-template-columns: 1fr;
    }

    .icon-wrapper {
        width: 100px;
        height: 100px;
    }

    
    .content-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .experience-list {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .pillars-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }

    .content-text {
        font-size: 1rem;
    }

    .cta-buttons-final {
        flex-direction: column;
    }

    .cta-buttons-final .btn {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .menu-grid-delivery {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .category-header-delivery {
        gap: 1rem;
    }

    .menu-card {
        padding: var(--space-md);
    }

    .menu-item-name {
        font-size: 1.05rem;
    }

    .menu-card-image {
        height: 150px;
    }

    .cardapio-cta .cta-buttons {
        flex-direction: column;
    }

    .cardapio-cta .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 55px;
    }

    .hero {
        min-height: 90vh;
    }

    .back-to-top {
        width: 55px;
        height: 55px;
        bottom: 20px;
        left: 20px;
    }

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

    .section {
        padding: var(--space-xl) 0;
    }

    .lifestyle-text {
        font-size: 1.5rem;
    }

    .icon-card {
        padding: var(--space-md);
    }

    .icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: var(--space-sm);
    }

    .icon-card h3 {
        font-size: 1.1rem;
    }

    .icon-card p {
        font-size: 0.85rem;
    }

    .menu-card {
        padding: var(--space-sm);
    }

    .menu-item-name {
        font-size: 1rem;
    }

    .menu-item-price {
        font-size: 0.9rem;
    }

    .menu-item-description {
        font-size: 0.9rem;
    }
}

/* ========================================
   CARDÁPIO ESTILO IFOOD (2025)
   ======================================== */

/* === Navegação === */
.menu-nav-bar {
    background: white;
    border-bottom: 1px solid #e8e8e8;
}

.menu-nav-bar .container {
    display: flex;
    padding: 0;
}

.menu-nav-link {
    flex: 1;
    padding: 14px 16px;
    text-align: center;
    text-decoration: none;
    color: #717171;
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.menu-nav-link:hover,
.menu-nav-link:active {
    color: var(--brown);
    border-bottom-color: var(--gold);
    background: #fafafa;
}

/* === Seções === */
.menu-section {
    background: #fafafa;
    padding: 16px 0 24px;
    scroll-margin-top: 80px;
}

.menu-section-alt {
    background: white;
}

/* Header da Seção */
.menu-section-header {
    margin-bottom: 20px;
    padding: 0 16px;
}

.menu-section-header h2 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--brown);
    margin: 0 0 4px;
}

.menu-section-header p {
    font-size: 0.85rem;
    color: var(--bronze);
    margin: 0;
    line-height: 1.4;
}

/* === Categorias === */
.menu-category {
    margin-bottom: 28px;
}

.menu-category-name {
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: var(--brown);
    margin: 0 0 8px;
    padding: 0 16px;
    font-weight: 600;
}

/* === Items - Cardápio.php === */
.menu-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-items .menu-item {
    display: flex;
    gap: 16px;
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    align-items: center;
    transition: all 0.2s ease;
}

.menu-items .menu-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.menu-items .menu-item:active {
    transform: translateY(0);
}

.menu-items .menu-item-info {
    flex: 1;
    min-width: 0;
    padding-right: 8px;
}

.menu-items .menu-item-info h4 {
    font-family: var(--font-title);
    font-size: 1rem;
    color: var(--brown);
    margin: 0 0 6px;
    line-height: 1.3;
    font-weight: 600;
}

.menu-items .menu-item-info p {
    font-size: 0.85rem;
    color: #717171;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-items .menu-item-img {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.menu-items .menu-item-img:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.menu-items .menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* === CTA === */
.menu-cta {
    background: var(--cream);
    padding: 32px 16px;
    text-align: center;
}

.menu-cta h2 {
    font-family: var(--font-title);
    font-size: 1.4rem;
    color: var(--brown);
    margin: 0 0 8px;
}

.menu-cta p {
    font-size: 0.9rem;
    color: var(--bronze);
    margin: 0 0 20px;
}

.menu-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   TABLET (min-width: 640px)
   ======================================== */
@media (min-width: 640px) {
    .menu-nav-link {
        padding: 16px 24px;
        font-size: 1rem;
    }

    .menu-section {
        padding: 24px 0 32px;
    }

    .menu-section-header {
        margin-bottom: 24px;
        padding: 0 20px;
    }

    .menu-section-header h2 {
        font-size: 1.75rem;
    }

    .menu-section-header p {
        font-size: 0.95rem;
    }

    .menu-category {
        margin-bottom: 36px;
    }

    .menu-category-name {
        font-size: 1.25rem;
        margin-bottom: 12px;
        padding: 0 20px;
    }

    .menu-items {
        gap: 20px;
    }

    .menu-items .menu-item {
        padding: 20px;
        gap: 20px;
    }

    .menu-items .menu-item-info h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .menu-items .menu-item-info p {
        font-size: 0.9rem;
    }

    .menu-items .menu-item-img {
        width: 112px;
        height: 112px;
        border-radius: 12px;
    }

    .menu-cta {
        padding: 40px 20px;
    }

    .menu-cta h2 {
        font-size: 1.75rem;
    }

    .menu-cta p {
        font-size: 1rem;
    }
}

/* ========================================
   DESKTOP (min-width: 1024px)
   ======================================== */
@media (min-width: 1024px) {
    .menu-section {
        padding: 32px 0 40px;
    }

    .menu-section .container {
        max-width: 900px;
    }

    .menu-section-header h2 {
        font-size: 2rem;
    }

    .menu-category-name {
        font-size: 1.35rem;
    }

    .menu-items {
        gap: 20px;
    }

    .menu-items .menu-item {
        padding: 18px 24px;
        gap: 20px;
    }

    .menu-items .menu-item-info h4 {
        font-size: 1.1rem;
    }

    .menu-items .menu-item-info p {
        font-size: 0.9rem;
    }

    .menu-items .menu-item-img {
        width: 110px;
        height: 110px;
        border-radius: 10px;
    }
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    animation: zoom 0.3s;
    border-radius: 8px;
}

@keyframes zoom {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--gold);
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1.1rem;
    font-family: var(--font-title);
}

@media (max-width: 640px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 70vh;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 35px;
    }

    .lightbox-caption {
        font-size: 1rem;
        padding: 15px;
    }
}

/* ========================================
   EVENTOS PAGE STYLES
   ======================================== */

/* Steps Grid */
.eventos-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.step-card {
    background: white;
    padding: var(--space-lg);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--space-md) auto;
}

.step-card h3 {
    font-family: var(--font-title);
    color: var(--bronze);
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
}

.step-card p {
    color: var(--brown);
    opacity: 0.85;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Horários Grid */
.eventos-horarios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.horario-card {
    background: white;
    padding: var(--space-xl);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.horario-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.horario-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.horario-card h4 {
    font-family: var(--font-title);
    color: var(--bronze);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.horario-time {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

/* Pricing Grid */
.eventos-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.pricing-card {
    background: white;
    padding: var(--space-xl);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(214, 179, 90, 0.05) 0%, rgba(201, 148, 74, 0.08) 100%);
}

.pricing-badge {
    background: var(--gold);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: var(--space-md);
}

.pricing-pessoas {
    font-family: var(--font-title);
    color: var(--bronze);
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
}

.pricing-valor {
    color: var(--gold);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.pricing-desc {
    color: var(--brown);
    opacity: 0.7;
    font-size: 0.95rem;
}

/* Eventos List */
.eventos-list {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
}

.eventos-list li {
    padding: var(--space-sm) 0;
    font-size: 1.05rem;
    color: var(--brown);
    line-height: 1.8;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.eventos-list li:last-child {
    border-bottom: none;
}

/* Extras Grid */
.eventos-extras-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.extra-card {
    background: var(--cream);
    padding: var(--space-lg);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.extra-card:hover {
    background: var(--sand);
    transform: translateY(-4px);
}

.extra-card h4 {
    font-family: var(--font-title);
    color: var(--bronze);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.extra-valor {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.extra-desc {
    color: var(--brown);
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 0;
}

/* Tipos Grid (Tags) */
.eventos-tipos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.tipo-tag {
    background: white;
    color: var(--bronze);
    padding: var(--space-md) var(--space-lg);
    border-radius: 30px;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: default;
}

.tipo-tag:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201, 148, 74, 0.3);
}

/* Eventos Gallery */
.eventos-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4 / 3;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Condições Grid */
.eventos-condicoes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.condicao-card {
    background: white;
    padding: var(--space-lg);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.condicao-card h4 {
    font-family: var(--font-title);
    color: var(--bronze);
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
}

.condicao-card p {
    color: var(--brown);
    line-height: 1.7;
    margin: 0;
}

/* Responsividade - Eventos */
@media (max-width: 1024px) {
    .eventos-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .eventos-extras-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .eventos-horarios-grid {
        grid-template-columns: 1fr;
    }

    .eventos-pricing-grid {
        grid-template-columns: 1fr;
    }

    .eventos-extras-grid {
        grid-template-columns: 1fr;
    }

    .eventos-gallery {
        grid-template-columns: 1fr;
    }

    .eventos-condicoes-grid {
        grid-template-columns: 1fr;
    }

    .tipo-tag {
        font-size: 0.9rem;
        padding: var(--space-sm) var(--space-md);
    }
}
