:root {
    --color-primary: #4d593c;
    --color-primary-light: #5d6b49;
    --color-primary-dark: #3d4730;
    --color-cream: #f5f2eb;
    --color-sand: #e8e2d5;
    --color-dark: #1a1a18;
    --color-text: #2d2d2a;
    --color-text-light: #6b6b65;
    --color-coffee: #46220e;
    --color-coffee-light: #5a3015;
    --color-white: #ffffff;

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-2xl: 10rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-sm) var(--spacing-md);
    transition: all 0.4s ease;
}

.header.scrolled {
    background-color: var(--color-cream);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

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

.logo-img {
    height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-img--white {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.logo-img--green {
    position: relative;
}

.logo:hover .logo-img {
    opacity: 0.9;
}

/* Header Transparent (Home - antes de scroll): Logo branca */
.header--transparent .logo-img--white {
    opacity: 1;
}

.header--transparent .logo-img--green {
    opacity: 0;
}

/* Header Transparent + Scrolled (Home - depois de scroll): Logo verde */
.header--transparent.scrolled .logo-img--white {
    opacity: 0;
}

.header--transparent.scrolled .logo-img--green {
    opacity: 1;
}

/* Header Solid (Outras páginas): Logo verde sempre */
.header--solid .logo-img--white {
    opacity: 0;
}

.header--solid .logo-img--green {
    opacity: 1;
}

/* Header Solid - fundo claro */
.header--solid {
    background-color: var(--color-cream);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Header Transparent - textos brancos */
.header--transparent .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.header--transparent .nav-link:hover,
.header--transparent .nav-link.active {
    color: #fff;
}

.header--transparent .menu-toggle span {
    background-color: #fff;
}

.header--transparent .header-cart {
    color: #fff;
}

.header--transparent .nav-link::after {
    background-color: #fff;
}

/* Header Transparent Scrolled - volta ao normal */
.header--transparent.scrolled .nav-link {
    color: var(--color-text);
}

.header--transparent.scrolled .nav-link:hover,
.header--transparent.scrolled .nav-link.active {
    color: var(--color-primary);
}

.header--transparent.scrolled .menu-toggle span {
    background-color: var(--color-primary);
}

.header--transparent.scrolled .header-cart {
    color: var(--color-text);
}

.header--transparent.scrolled .nav-link::after {
    background-color: var(--color-primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    position: relative;
    padding: var(--spacing-xs) 0;
    transition: color 0.3s ease;
}

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

.nav-link:hover {
    color: var(--color-primary);
}

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

.nav-cart {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background-color: var(--color-primary);
    color: var(--color-cream);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-cart:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
}

.nav-cart svg {
    width: 18px;
    height: 18px;
}

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
    display: block;
}

/* Menu toggle animation when active */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Overlay */
@media (max-width: 768px) {
    /* Logo responsive */
    .logo-img {
        height: 40px;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-cream);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav .nav-link {
        font-size: 1.5rem;
        padding: 16px 24px;
        font-family: var(--font-display);
        letter-spacing: 0.05em;
        color: var(--color-primary);
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav.active .nav-link {
        opacity: 1;
        transform: translateY(0);
    }

    .nav.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .nav.active .nav-link:nth-child(2) { transition-delay: 0.15s; }
    .nav.active .nav-link:nth-child(3) { transition-delay: 0.2s; }
    .nav.active .nav-link:nth-child(4) { transition-delay: 0.25s; }
    .nav.active .nav-link:nth-child(5) { transition-delay: 0.3s; }

    .nav .nav-link:hover,
    .nav .nav-link.active {
        color: var(--color-primary-dark);
    }

    .nav .nav-link::after {
        bottom: 8px;
        height: 3px;
    }

    /* Body scroll lock when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--spacing-2xl) var(--spacing-md);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-primary);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    color: var(--color-cream);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background-color: rgba(255,255,255,0.15);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--color-cream);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: 3px;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-title span {
    display: block;
    color: var(--color-sand);
}

.hero-description {
    font-size: 1.1rem;
    max-width: 450px;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-cream);
    color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-cream);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    border-color: var(--color-cream);
    background-color: rgba(255,255,255,0.1);
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(3px);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-image-main {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 3/4;
    background-color: var(--color-sand);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-float {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--color-cream);
    border-radius: 15px;
    padding: var(--spacing-sm);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    bottom: -30px;
    left: -50px;
    animation: float 6s ease-in-out infinite;
}

.hero-image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

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

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

/* Categories Section */
.categories {
    padding: var(--spacing-2xl) var(--spacing-md);
    position: relative;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 2px;
    color: var(--color-dark);
}

.categories-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.category-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    group: category;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.category-card:hover::before {
    opacity: 0.9;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-image {
    transform: scale(1.08);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    z-index: 2;
    color: var(--color-white);
}

.category-name {
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-xs);
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.category-card:hover .category-name {
    transform: translateY(0);
}

.category-count {
    font-size: 0.9rem;
    opacity: 0.8;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

.category-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.category-link:hover svg {
    transform: translateX(5px);
}

/* Products Preview */
.products-preview {
    padding: var(--spacing-xl) var(--spacing-md);
    background-color: var(--color-sand);
}

.products-header {
    max-width: 1400px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.products-title-group {
    max-width: 500px;
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.product-card {
    background-color: var(--color-cream);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--color-white);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    background-color: var(--color-primary);
    color: var(--color-cream);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-quick-view {
    position: absolute;
    bottom: var(--spacing-sm);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-quick-view {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-info {
    padding: var(--spacing-sm);
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.product-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-primary);
}

.product-price-old {
    font-size: 0.9rem;
    color: var(--color-text-light);
    text-decoration: line-through;
    margin-left: var(--spacing-xs);
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    gap: var(--spacing-sm);
}

.view-all-link svg {
    width: 20px;
    height: 20px;
}

/* Instagram Section */
.instagram {
    padding: var(--spacing-2xl) var(--spacing-md);
    overflow: hidden;
}

.instagram-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.instagram-handle {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: var(--spacing-sm);
    transition: all 0.3s ease;
}

.instagram-handle:hover {
    gap: var(--spacing-sm);
}

.instagram-handle svg {
    width: 24px;
    height: 24px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    max-width: 1600px;
    margin: 0 auto;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(77, 89, 60, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay svg {
    width: 32px;
    height: 32px;
    fill: var(--color-white);
}

/* Reviews Section */
.reviews {
    padding: var(--spacing-2xl) var(--spacing-md);
    background-color: var(--color-white);
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.reviews-score {
    text-align: center;
}

.reviews-score-number {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--color-dark);
}

.reviews-stars {
    display: flex;
    gap: 2px;
    margin: var(--spacing-xs) 0;
}

.reviews-stars svg {
    width: 20px;
    height: 20px;
    fill: #FBBC04;
}

.reviews-count {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.google-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    background-color: var(--color-cream);
    border-radius: 8px;
}

.google-badge svg {
    width: 80px;
    height: 26px;
}

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

.review-card {
    background-color: var(--color-cream);
    border-radius: 12px;
    padding: var(--spacing-md);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
    font-weight: 600;
    font-size: 1.1rem;
}

.review-author {
    flex: 1;
}

.review-name {
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.95rem;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars svg {
    width: 14px;
    height: 14px;
    fill: #FBBC04;
}

.review-text {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.7;
}

.review-google-icon {
    width: 20px;
    height: 20px;
}

/* Coffee Shop Section */
.coffee-shop {
    padding: var(--spacing-2xl) var(--spacing-md);
    background-color: var(--color-coffee);
    position: relative;
    overflow: hidden;
}

.coffee-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 30c-11 0-20 9-20 20s9 20 20 20 20-9 20-20-9-20-20-20zm0 35c-8.3 0-15-6.7-15-15s6.7-15 15-15 15 6.7 15 15-6.7 15-15 15z' fill='%23ffffff'/%3E%3Ccircle cx='50' cy='50' r='8' fill='%23ffffff'/%3E%3C/svg%3E");
}

.coffee-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.coffee-text {
    color: var(--color-cream);
}

.coffee-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background-color: rgba(255,255,255,0.1);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: var(--spacing-md);
}

.coffee-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.coffee-title span {
    display: block;
    color: #c4a882;
}

.coffee-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
    max-width: 450px;
}

.coffee-features {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.coffee-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.coffee-feature-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coffee-feature-icon svg {
    width: 20px;
    height: 20px;
    fill: #c4a882;
}

.coffee-feature span {
    font-size: 0.9rem;
}

.btn-coffee {
    background-color: #c4a882;
    color: var(--color-coffee);
}

.btn-coffee:hover {
    background-color: #d4b892;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.coffee-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.coffee-image {
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background-color: rgba(255,255,255,0.1);
}

.coffee-image:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
}

.coffee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Our Story Section */
.our-story {
    padding: var(--spacing-2xl) var(--spacing-md);
    background-color: var(--color-cream);
    position: relative;
    overflow: hidden;
}

/* Símbolo decorativo */
.our-story-symbol {
    position: absolute;
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.our-story-symbol img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: symbolRotate 60s linear infinite;
}

@keyframes symbolRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.our-story-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 1;
    gap: var(--spacing-xl);
    align-items: center;
}

.our-story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.our-story-image-main {
    grid-column: span 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.our-story-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.our-story-image-main:hover img {
    transform: scale(1.03);
}

.our-story-image-secondary {
    grid-column: span 2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.our-story-image-secondary img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.our-story-text {
    padding-left: var(--spacing-md);
}

.our-story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

.our-story-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-primary);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    border-left: 4px solid var(--color-primary);
    background-color: rgba(77, 89, 60, 0.08);
    border-radius: 0 12px 12px 0;
    line-height: 1.7;
}

.our-story-mission {
    font-weight: 600;
    color: var(--color-primary-dark);
    font-size: 1.1rem;
    margin-top: var(--spacing-md);
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-cream);
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    transition: opacity 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    opacity: 0.85;
}

.footer-description {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: var(--spacing-md);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--color-cream);
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--color-cream);
    opacity: 0.7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-payments {
    display: flex;
    gap: var(--spacing-sm);
    opacity: 0.6;
}

.footer-payments svg {
    width: 40px;
    height: 25px;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE STYLES
   Breakpoints: 1200px / 992px / 768px / 480px
   ========================================================================== */

/* Large Desktop → Small Desktop/Tablet */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .categories-grid {
        gap: var(--spacing-sm);
    }
}

/* Tablet */
@media (max-width: 992px) {
    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto var(--spacing-lg);
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .category-name {
        font-size: 1.8rem;
    }

    /* Products */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    /* Instagram */
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Coffee Shop Section */
    .coffee-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .coffee-description {
        margin: 0 auto var(--spacing-lg);
    }

    .coffee-features {
        justify-content: center;
    }

    .coffee-images {
        max-width: 450px;
        margin: 0 auto;
    }

    /* Our Story */
    .our-story-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .our-story-images {
        max-width: 500px;
        margin: 0 auto;
        order: -1;
    }

    .our-story-text {
        padding-left: 0;
    }

    .our-story-quote {
        text-align: left;
    }

    /* Decorative Symbol */
    .our-story-symbol {
        width: 350px;
        height: 350px;
        right: -100px;
    }

    /* Visit Us */
    .visit-us-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .visit-us-map {
        height: 350px;
        order: 1;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    /* Header */
    .header-inner {
        padding: 0 var(--spacing-sm);
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
    }

    .logo-icon svg {
        width: 18px;
        height: 18px;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-xl);
    }

    /* Section Headers */
    .section-header {
        margin-bottom: var(--spacing-lg);
    }

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

    /* Categories */
    .categories-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .category-card {
        aspect-ratio: 16/12;
    }

    /* Products */
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .products-preview {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .product-name {
        font-size: 0.95rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    /* Instagram */
    .instagram {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    /* Reviews */
    .reviews {
        padding: var(--spacing-xl) var(--spacing-md);
    }

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

    .reviews-header {
        flex-direction: column;
        text-align: center;
    }

    .reviews-score-number {
        font-size: 3rem;
    }

    /* Coffee Shop */
    .coffee-shop {
        padding: var(--spacing-xl) var(--spacing-md);
    }

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

    .coffee-images {
        max-width: 350px;
    }

    /* Our Story */
    .our-story {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .our-story-quote {
        font-size: 1.1rem;
        padding: var(--spacing-sm);
    }

    /* Decorative Symbol - hide on smaller screens */
    .our-story-symbol {
        display: none;
    }

    /* Visit Us */
    .visit-us {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .visit-us-map {
        height: 300px;
    }

    /* Footer */
    .footer {
        padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo-img {
        height: 50px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }

    /* Benefits Bar */
    .benefits-container {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .benefit-item {
        width: 100%;
        max-width: 280px;
        justify-content: flex-start;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    /* Global */
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    /* Header */
    .header {
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    /* Hero */
    .hero {
        padding: var(--spacing-xl) var(--spacing-sm) var(--spacing-lg);
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-description {
        font-size: 0.95rem;
    }

    /* Categories */
    .categories-grid {
        max-width: 100%;
    }

    .category-name {
        font-size: 1.5rem;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .product-card {
        border-radius: 12px;
    }

    /* Instagram */
    .instagram-grid {
        gap: 4px;
    }

    /* Reviews */
    .review-card {
        padding: var(--spacing-sm);
    }

    .review-text {
        font-size: 0.9rem;
    }

    /* Coffee */
    .coffee-features {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .coffee-images {
        max-width: 280px;
    }

    /* Our Story */
    .our-story-images {
        max-width: 100%;
    }

    /* Visit Us */
    .visit-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }

    .btn-visit-whatsapp {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer-logo-img {
        height: 45px;
    }

    .footer-column h4 {
        font-size: 1.1rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   HERO NATURE SECTION - Animated Nature Theme
   ========================================================================== */

.hero-nature {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 24px;
}

/* Background Layers */
.hero-nature-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient-layer {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(77, 89, 60, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139, 167, 98, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(77, 89, 60, 0.08) 0%, transparent 40%),
        linear-gradient(180deg,
            #f7f5ef 0%,
            #f5f2eb 30%,
            #f0ede4 60%,
            #e8e5da 100%
        );
}

.hero-texture-layer {
    position: absolute;
    inset: 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.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.025;
    mix-blend-mode: multiply;
}

.hero-light-rays {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 20%,
            transparent 40%
        ),
        linear-gradient(45deg,
            transparent 60%,
            rgba(255, 248, 220, 0.3) 80%,
            transparent 100%
        );
    animation: lightShift 15s ease-in-out infinite;
}

@keyframes lightShift {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(0) translateY(0);
    }
    50% {
        opacity: 0.8;
        transform: translateX(20px) translateY(-10px);
    }
}

/* Floating Nature Particles */
.nature-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.firefly {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(212, 197, 136, 0.9) 0%, rgba(180, 165, 100, 0.4) 50%, transparent 70%);
    border-radius: 50%;
    animation: fireflyFloat 8s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow:
        0 0 10px rgba(212, 197, 136, 0.6),
        0 0 20px rgba(212, 197, 136, 0.3),
        0 0 30px rgba(212, 197, 136, 0.1);
}

@keyframes fireflyFloat {
    0%, 100% {
        opacity: 0;
        transform: translate(0, 0) scale(0.5);
    }
    10% {
        opacity: 1;
        transform: translate(10px, -20px) scale(1);
    }
    30% {
        opacity: 0.8;
        transform: translate(-15px, -40px) scale(0.9);
    }
    50% {
        opacity: 1;
        transform: translate(20px, -30px) scale(1.1);
    }
    70% {
        opacity: 0.6;
        transform: translate(-10px, -50px) scale(0.8);
    }
    90% {
        opacity: 0.3;
        transform: translate(5px, -60px) scale(0.6);
    }
}

.leaf {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, rgba(77, 89, 60, 0.2) 0%, rgba(77, 89, 60, 0.05) 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: leafFall 20s linear infinite;
}

.leaf-1 {
    left: 15%;
    animation-delay: 0s;
}

.leaf-2 {
    left: 55%;
    animation-delay: 7s;
}

.leaf-3 {
    left: 85%;
    animation-delay: 14s;
}

@keyframes leafFall {
    0% {
        top: -50px;
        transform: rotate(0deg) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        top: 110%;
        transform: rotate(360deg) translateX(100px);
        opacity: 0;
    }
}

/* ==========================================================================
   Vegetação do Cerrado - Base do Hero
   ========================================================================== */

.cerrado-vegetation {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
}

.vegetation-left {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 280px;
    height: auto;
    opacity: 0;
    animation: fadeInVegetation 2s ease-out 0.5s forwards;
}

.vegetation-right {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 280px;
    height: auto;
    opacity: 0;
    animation: fadeInVegetation 2s ease-out 0.7s forwards;
}

.vegetation-center {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 500px;
    height: auto;
    opacity: 0;
    animation: fadeInVegetation 2s ease-out 0.9s forwards;
}

@keyframes fadeInVegetation {
    to {
        opacity: 1;
    }
}

/* Animação suave das gramíneas */
.grass-blade {
    animation: grassSway 4s ease-in-out infinite;
    transform-origin: bottom center;
}

.grass-blade:nth-child(odd) {
    animation-delay: -1s;
    animation-duration: 4.5s;
}

.grass-blade:nth-child(even) {
    animation-delay: -2s;
    animation-duration: 3.5s;
}

.grass-blade-small {
    animation: grassSwaySmall 3s ease-in-out infinite;
    transform-origin: bottom center;
}

.grass-blade-small:nth-child(odd) {
    animation-delay: -0.5s;
}

@keyframes grassSway {
    0%, 100% {
        transform: rotate(0deg) translateX(0);
    }
    25% {
        transform: rotate(1.5deg) translateX(2px);
    }
    75% {
        transform: rotate(-1deg) translateX(-1px);
    }
}

@keyframes grassSwaySmall {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

/* ===== Responsive para Vegetação ===== */
@media (max-width: 1200px) {
    .vegetation-left,
    .vegetation-right {
        width: 220px;
    }

    .vegetation-center {
        width: 400px;
    }
}

@media (max-width: 992px) {
    .vegetation-left,
    .vegetation-right {
        width: 180px;
    }

    .vegetation-center {
        width: 350px;
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .vegetation-left,
    .vegetation-right {
        width: 140px;
    }

    .vegetation-center {
        display: none;
    }
}

@media (max-width: 480px) {
    .vegetation-left,
    .vegetation-right {
        width: 100px;
        opacity: 0.8;
    }
}

/* Main Content */
.hero-nature-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Text Wrapper */
.hero-text-wrapper {
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(77, 89, 60, 0.08);
    border: 1px solid rgba(77, 89, 60, 0.15);
    border-radius: 30px;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-location svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-primary);
}

.hero-location span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.hero-main-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    color: var(--color-primary);
    margin: 0 0 30px;
    overflow: hidden;
}

.title-line {
    display: block;
    animation: titleReveal 1.2s ease-out both;
}

.title-line-1 {
    animation-delay: 0.6s;
}

.title-line-2 {
    color: var(--color-primary-light);
    animation-delay: 0.8s;
    font-size: 0.7em;
    letter-spacing: 0.2em;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    max-width: 500px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-tagline em {
    font-style: normal;
    color: var(--color-primary);
    font-weight: 500;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.btn-nature-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-nature-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-nature-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(77, 89, 60, 0.3);
}

.btn-nature-primary:hover::before {
    opacity: 1;
}

.btn-nature-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-nature-primary:hover svg {
    transform: translateX(5px);
}

.btn-nature-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(77, 89, 60, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-nature-ghost:hover {
    border-color: var(--color-primary);
    background: rgba(77, 89, 60, 0.05);
}

/* Images Wrapper */
.hero-images-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    animation: fadeInRight 1s ease-out 0.5s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-img-main {
    position: relative;
    z-index: 2;
}

.hero-img-main .img-frame {
    width: 350px;
    height: 500px;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1);
    animation: floatMain 6s ease-in-out infinite;
}

@keyframes floatMain {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

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

.img-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(77, 89, 60, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-img-secondary {
    position: absolute;
    bottom: 20px;
    left: -60px;
    z-index: 3;
}

.hero-img-secondary .img-frame {
    width: 180px;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
    border: 4px solid rgba(255, 255, 255, 0.9);
    animation: floatSecondary 5s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes floatSecondary {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
}

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

/* Rotating Badge */
.nature-badge {
    position: absolute;
    top: 30px;
    right: 0;
    width: 120px;
    height: 120px;
    animation: rotateBadge 20s linear infinite;
}

@keyframes rotateBadge {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.nature-badge svg {
    width: 100%;
    height: 100%;
}

.nature-badge text {
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    fill: var(--color-primary);
}

.badge-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.scroll-indicator span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(77, 89, 60, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: scrollDotMove 2s ease-in-out infinite;
}

@keyframes scrollDotMove {
    0%, 100% {
        top: 0;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* ==========================================================================
   BENEFITS BAR
   ========================================================================== */

.benefits-bar {
    background: var(--color-primary);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.benefits-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.benefit-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 0.05em;
}

.benefit-subtitle {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    opacity: 0.8;
}

/* ==========================================================================
   HERO NATURE RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
    .hero-nature-content {
        gap: 60px;
    }

    .hero-img-main .img-frame {
        width: 300px;
        height: 430px;
    }

    .hero-img-secondary {
        left: -40px;
    }

    .hero-img-secondary .img-frame {
        width: 150px;
        height: 200px;
    }

    .plant-silhouette {
        height: 40%;
    }
}

@media (max-width: 992px) {
    .hero-nature {
        padding: 100px 24px 60px;
        min-height: auto;
    }

    .hero-nature-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-text-wrapper {
        order: 1;
    }

    .hero-images-wrapper {
        order: 2;
        min-height: 450px;
    }

    .hero-location {
        justify-content: center;
    }

    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-img-main .img-frame {
        width: 280px;
        height: 400px;
    }

    .hero-img-secondary {
        left: auto;
        right: 10%;
        bottom: 0;
    }

    .nature-badge {
        top: 10px;
        right: 10%;
        width: 100px;
        height: 100px;
    }

    .plant-silhouette {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .cerrado-decor {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 3.5rem;
    }

    .title-line-2 {
        font-size: 0.75em;
    }

    .hero-images-wrapper {
        min-height: 380px;
    }

    .hero-img-main .img-frame {
        width: 240px;
        height: 340px;
    }

    .hero-img-secondary .img-frame {
        width: 120px;
        height: 160px;
    }

    .nature-badge {
        width: 80px;
        height: 80px;
    }

    .badge-icon {
        width: 30px;
        height: 30px;
    }

    .badge-icon svg {
        width: 14px;
        height: 14px;
    }

    .benefits-container {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .benefit-item {
        width: 100%;
        max-width: 280px;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-nature {
        padding: 80px 16px 40px;
    }

    .hero-main-title {
        font-size: 2.75rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-nature-primary,
    .btn-nature-ghost {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-images-wrapper {
        min-height: 320px;
    }

    .hero-img-main .img-frame {
        width: 200px;
        height: 280px;
    }

    .hero-img-secondary {
        right: 5%;
        bottom: -10px;
    }

    .hero-img-secondary .img-frame {
        width: 100px;
        height: 130px;
    }

    .firefly {
        width: 4px;
        height: 4px;
    }
}

/* ==========================================================================
   VISIT US / CONTACT SECTION
   ========================================================================== */

.visit-us {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--color-cream) 0%, #e8e5da 100%);
}

.visit-us-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.visit-us-content .section-tag {
    display: inline-block;
    margin-bottom: 12px;
}

.visit-us-content .section-title {
    margin-bottom: 20px;
}

.visit-us-intro {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 40px;
}

.visit-us-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.visit-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.visit-info-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.visit-info-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.visit-info-text h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 6px;
}

.visit-info-text p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
}

.visit-info-text a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.visit-info-text a:hover {
    color: var(--color-primary);
}

.btn-visit-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: #25D366;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-visit-whatsapp svg {
    width: 22px;
    height: 22px;
}

.btn-visit-whatsapp:hover {
    background: #20BA5C;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.visit-us-map {
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.visit-us-map iframe {
    width: 100%;
    height: 100%;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 20px rgba(37, 211, 102, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow:
        0 6px 30px rgba(37, 211, 102, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow:
            0 4px 20px rgba(37, 211, 102, 0.4),
            0 2px 8px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow:
            0 4px 20px rgba(37, 211, 102, 0.6),
            0 2px 8px rgba(0, 0, 0, 0.1),
            0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Visit Us Responsive */
@media (max-width: 992px) {
    .visit-us-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visit-us-map {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .visit-us {
        padding: 80px 20px;
    }

    .visit-us-map {
        height: 350px;
    }

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

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .visit-info-item {
        flex-direction: column;
        gap: 12px;
    }

    .btn-visit-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   CHAPADA GALLERY SECTION
   ========================================================================== */

.chapada-gallery {
    padding: 100px 24px;
    background: linear-gradient(180deg, #1a1f14 0%, #252b1d 50%, #1a1f14 100%);
    position: relative;
    overflow: hidden;
}

.chapada-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(77, 89, 60, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(77, 89, 60, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.chapada-gallery::after {
    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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.chapada-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.chapada-gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.chapada-gallery-header .section-tag {
    background: rgba(77, 89, 60, 0.3);
    color: #a8b896;
    border: 1px solid rgba(168, 184, 150, 0.3);
}

.chapada-gallery-header .section-title {
    color: #f5f4ef;
    margin-top: 16px;
    margin-bottom: 20px;
}

.chapada-gallery-subtitle {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(245, 244, 239, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Masonry Grid */
.chapada-gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 16px;
}

.chapada-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #2a3221;
}

.chapada-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.chapada-gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(26, 31, 20, 0.7) 0%,
        rgba(26, 31, 20, 0.2) 40%,
        transparent 100%
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.chapada-gallery-item:hover::before {
    opacity: 1;
}

.chapada-gallery-item:hover img {
    transform: scale(1.08);
}

/* Gallery Item Sizes */
.chapada-gallery-item--tall {
    grid-row: span 2;
}

.chapada-gallery-item--wide {
    grid-column: span 2;
}

/* Overlay */
.chapada-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.chapada-gallery-overlay svg {
    width: 48px;
    height: 48px;
    stroke: rgba(255, 255, 255, 0.9);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chapada-gallery-item:hover .chapada-gallery-overlay {
    opacity: 1;
}

.chapada-gallery-item:hover .chapada-gallery-overlay svg {
    transform: scale(1);
}

/* Staggered Animation */
.chapada-gallery-item.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: galleryFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.chapada-gallery-item:nth-child(1) { animation-delay: 0.1s; }
.chapada-gallery-item:nth-child(2) { animation-delay: 0.15s; }
.chapada-gallery-item:nth-child(3) { animation-delay: 0.2s; }
.chapada-gallery-item:nth-child(4) { animation-delay: 0.25s; }
.chapada-gallery-item:nth-child(5) { animation-delay: 0.3s; }
.chapada-gallery-item:nth-child(6) { animation-delay: 0.35s; }
.chapada-gallery-item:nth-child(7) { animation-delay: 0.4s; }
.chapada-gallery-item:nth-child(8) { animation-delay: 0.45s; }

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

/* ==========================================================================
   CHAPADA LIGHTBOX
   ========================================================================== */

.chapada-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 12, 8, 0.97);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.chapada-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.chapada-lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chapada-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chapada-lightbox.active .chapada-lightbox-content img {
    opacity: 1;
    transform: scale(1);
}

/* Lightbox Controls */
.chapada-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.chapada-lightbox-close svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.chapada-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.chapada-lightbox-prev,
.chapada-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(77, 89, 60, 0.4);
    border: 1px solid rgba(168, 184, 150, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.chapada-lightbox-prev {
    left: 24px;
}

.chapada-lightbox-next {
    right: 24px;
}

.chapada-lightbox-prev svg,
.chapada-lightbox-next svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}

.chapada-lightbox-prev:hover,
.chapada-lightbox-next:hover {
    background: rgba(77, 89, 60, 0.7);
    transform: translateY(-50%) scale(1.1);
}

/* Lightbox Counter */
.chapada-lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 30px;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   CHAPADA GALLERY RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
    .chapada-gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 160px;
    }

    .chapada-gallery-item--wide {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    .chapada-gallery {
        padding: 80px 20px;
    }

    .chapada-gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 150px;
        gap: 12px;
    }

    .chapada-gallery-header {
        margin-bottom: 40px;
    }

    .chapada-lightbox-prev,
    .chapada-lightbox-next {
        width: 48px;
        height: 48px;
    }

    .chapada-lightbox-prev svg,
    .chapada-lightbox-next svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 768px) {
    .chapada-gallery {
        padding: 70px 16px;
    }

    .chapada-gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
        gap: 10px;
    }

    .chapada-gallery-item--tall {
        grid-row: span 2;
    }

    .chapada-gallery-overlay svg {
        width: 36px;
        height: 36px;
    }

    .chapada-lightbox-close {
        top: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }

    .chapada-lightbox-prev,
    .chapada-lightbox-next {
        width: 44px;
        height: 44px;
    }

    .chapada-lightbox-prev {
        left: 12px;
    }

    .chapada-lightbox-next {
        right: 12px;
    }

    .chapada-lightbox-counter {
        bottom: 16px;
        font-size: 0.875rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .chapada-gallery {
        padding: 60px 16px;
    }

    .chapada-gallery-header .section-title {
        font-size: 1.75rem;
    }

    .chapada-gallery-subtitle {
        font-size: 1rem;
    }

    .chapada-gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 120px;
        gap: 8px;
    }

    .chapada-gallery-item {
        border-radius: 8px;
    }

    .chapada-gallery-item--tall,
    .chapada-gallery-item--wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .chapada-lightbox-content {
        max-width: 95vw;
        max-height: 80vh;
    }

    .chapada-lightbox-prev,
    .chapada-lightbox-next {
        width: 40px;
        height: 40px;
    }

    .chapada-lightbox-prev svg,
    .chapada-lightbox-next svg {
        width: 20px;
        height: 20px;
    }
}
