/* ============================================
   CAMP SHOW 2026 - LANDING PAGE STYLES
   Layout profissional inspirado em feiras
============================================ */

:root {
    /* Paleta de cores do Agro */
    --agro-primary: #1B5E20;
    --agro-primary-light: #2E7D32;
    --agro-primary-dark: #0d3d13;
    --agro-secondary: #F9A825;
    --agro-secondary-light: #FFC107;
    --agro-dark: #0a1f0c;
    --agro-light: #E8F5E9;

    /* Cores auxiliares */
    --accent-orange: #FF6B35;
    --accent-red: #dc3545;
    --accent-blue: #0077B6;

    /* Neutros */
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
    --text-light: #f8f9fa;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --bg-dark: #0a1f0c;

    /* UI */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(249, 168, 37, 0.3);

    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   BASE STYLES
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    width: 100%;
}

/* Fix overflow horizontal mobile */
.navbar-collapse {
    max-width: 100%;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 31, 12, 0.98);
        padding: 1rem;
        border-radius: var(--radius-md);
        margin-top: 0.5rem;
    }

    .navbar-collapse .btn {
        width: 100%;
        margin-top: 1rem;
        margin-left: 0 !important;
    }

    .navbar-nav {
        text-align: center;
    }
}

/* ============================================
   UTILITIES
============================================ */
.bg-agro-primary {
    background-color: var(--agro-primary) !important;
}

.bg-agro-dark {
    background-color: var(--agro-dark) !important;
}

.bg-agro-light {
    background-color: var(--agro-light) !important;
}

.bg-agro-secondary {
    background-color: var(--agro-secondary) !important;
}

.text-agro-primary {
    color: var(--agro-primary) !important;
}

.text-agro-dark {
    color: var(--agro-dark) !important;
}

.text-agro-secondary {
    color: var(--agro-secondary) !important;
}

.text-agro-light {
    color: var(--agro-light) !important;
}

.bg-gradient-agro {
    background: linear-gradient(135deg, var(--agro-primary) 0%, var(--agro-primary-dark) 100%);
}

.bg-gradient-gold {
    background: linear-gradient(135deg, var(--agro-secondary) 0%, var(--accent-orange) 100%);
}

/* Botões */
.btn-agro-primary {
    background: linear-gradient(135deg, var(--agro-primary), var(--agro-primary-light));
    color: white;
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-agro-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.4);
    color: white;
    background: linear-gradient(135deg, var(--agro-primary-light), var(--agro-primary));
}

.btn-agro-secondary {
    background: linear-gradient(135deg, var(--agro-secondary), var(--accent-orange));
    color: var(--text-dark);
    border: none;
    padding: 12px 32px;
    font-weight: 700;
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-agro-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: var(--text-dark);
}

.btn-outline-light-custom {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.btn-outline-light-custom:hover {
    background: white;
    color: var(--agro-primary);
    transform: translateY(-2px);
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
    background: transparent;
    padding: 1rem 0;
    transition: all var(--transition-normal);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(10, 31, 12, 0.98) !important;
    backdrop-filter: blur(20px);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 50px;
}

/* Header Logos (upload do admin) */
.header-logos {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo {
    height: 28px !important;
    max-height: 28px !important;
    width: auto !important;
    max-width: 120px !important;
    object-fit: contain;
    transition: all var(--transition-fast);
}

.navbar.scrolled .header-logo {
    height: 28px !important;
    max-height: 28px !important;
}

@media (max-width: 768px) {
    .header-logo {
        height: 26px !important;
        max-height: 26px !important;
        max-width: 100px !important;
    }

    .header-logos {
        gap: 8px;
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--agro-secondary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--agro-secondary);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--agro-dark) 0%, var(--agro-primary-dark) 100%);
}

.hero-bg-video,
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(10, 31, 12, 0.7) 0%,
            rgba(10, 31, 12, 0.5) 50%,
            rgba(10, 31, 12, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 1000px;
}

.hero-badge {
    display: inline-block;
    background: var(--agro-secondary);
    color: var(--text-dark);
    padding: 8px 24px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hero Slogan */
.hero-slogan {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--agro-secondary);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Highlights - Destaques do evento */
.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.hero-highlight-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-highlight-item i {
    color: var(--agro-secondary);
    font-size: 1.2rem;
}

/* Logo LG no topo */
.hero-lg-logo {
    opacity: 0.9;
}

.hero-lg-logo img {
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--agro-secondary);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.hero-info-item i {
    font-size: 1.5rem;
    color: var(--agro-secondary);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Countdown Timer */
.countdown-container {
    margin-top: 2rem;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    min-width: 90px;
    text-align: center;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--agro-secondary);
    line-height: 1;
}

.countdown-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: 5px;
}

/* ============================================
   FREE EVENT BANNER
============================================ */
.free-event-banner {
    background: linear-gradient(135deg, var(--agro-secondary) 0%, var(--accent-orange) 100%);
    padding: 1.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.free-event-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.free-event-banner h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.free-event-banner i {
    font-size: 2rem;
}

/* ============================================
   SECTIONS BASE
============================================ */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-badge {
    display: inline-block;
    background: var(--agro-light);
    color: var(--agro-primary);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(27, 94, 32, 0.15);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--agro-primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--agro-secondary), var(--accent-orange));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 1.5rem auto 0;
}

/* ============================================
   ABOUT SECTION (NOSSA HISTÓRIA)
============================================ */
.about-section {
    background: linear-gradient(180deg, var(--bg-white) 0%, #f0f7f0 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(27, 94, 32, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 168, 37, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-image {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(27, 94, 32, 0.2);
    overflow: hidden;
    position: relative;
    border: 4px solid rgba(27, 94, 32, 0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--agro-secondary);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--agro-dark);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.about-feature:hover {
    background: var(--agro-light);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--agro-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--agro-primary);
    font-size: 1.4rem;
}

.about-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   STATS / RESULTS SECTION
============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--agro-dark) 0%, var(--agro-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 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='0.03'%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");
    opacity: 0.5;
}

.stats-section .section-title {
    color: white;
}

.stats-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-glow);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--agro-secondary), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--text-dark);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--agro-secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   VIDEOS SECTION
============================================ */
.videos-section {
    background: var(--bg-light);
}

.video-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--agro-dark), var(--agro-primary));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.video-card-body {
    padding: 1.5rem;
}

.video-card-body h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.video-card-body p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* Video Thumbnail System */
.video-thumbnail-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--agro-dark);
    transition: transform 0.5s ease;
}

.video-thumbnail-container:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-thumbnail-container:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(249, 168, 37, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.play-button i {
    font-size: 2.5rem;
    color: white;
    margin-left: 5px;
}

.video-thumbnail-container:hover .play-button {
    transform: scale(1.15);
    background: var(--agro-secondary);
    box-shadow: 0 8px 40px rgba(249, 168, 37, 0.5);
}

.video-location-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.video-location-badge i {
    color: var(--agro-secondary);
    margin-right: 5px;
}

.video-player-embedded,
.video-iframe-embedded {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
}

/* ============================================
   CTA EXPOSITOR SECTION
============================================ */
.cta-expositor-section {
    background: linear-gradient(135deg, var(--agro-primary) 0%, var(--agro-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-expositor-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 168, 37, 0.15) 0%, transparent 60%);
}

.cta-expositor-content {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-expositor-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-expositor-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-weight: 500;
}

.cta-benefit i {
    color: var(--agro-secondary);
}

/* ============================================
   MAP SECTION
============================================ */
.map-section {
    background: var(--bg-white);
}

#mapa-interativo {
    position: relative;
    width: 100%;
    background-image: url('../images/mapa_eventos.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0 auto;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow-lg);
}

.terreno-pin {
    position: absolute;
    width: 2.5%;
    height: 4.5%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
}

.pin-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: all var(--transition-fast);
    font-size: clamp(8px, 0.8vw, 12px);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.pin-disponivel .pin-marker {
    background: var(--agro-secondary);
}

.pin-vendido .pin-marker {
    background: var(--accent-red);
    opacity: 0.6;
    cursor: not-allowed;
}

.pin-selecionado .pin-marker {
    background: white !important;
    border-color: var(--agro-primary);
    border-width: 3px;
    box-shadow: 0 0 15px var(--agro-secondary), 0 0 30px rgba(249, 168, 37, 0.5);
    animation: selected-pulse 1.5s infinite;
}

@keyframes selected-pulse {

    0%,
    100% {
        box-shadow: 0 0 15px var(--agro-secondary), 0 0 30px rgba(249, 168, 37, 0.5);
    }

    50% {
        box-shadow: 0 0 25px var(--agro-secondary), 0 0 50px rgba(249, 168, 37, 0.7);
    }
}

.terreno-pin:hover {
    transform: translate(-50%, -60%) scale(1.3);
    z-index: 20;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.legend-color {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.legend-color.disponivel {
    background: var(--agro-secondary);
}

.legend-color.vendido {
    background: var(--accent-red);
    opacity: 0.6;
}

.legend-color.selecionado {
    background: white;
    border-color: var(--agro-primary);
}

/* ============================================
   PUBLIC TARGET SECTION
============================================ */
.publico-section {
    background: var(--bg-light);
}

.publico-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
}

.publico-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.publico-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--agro-light), #c8e6c9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--agro-primary);
    transition: all var(--transition-normal);
}

.publico-card:hover .publico-icon {
    background: linear-gradient(135deg, var(--agro-primary), var(--agro-primary-light));
    color: white;
    transform: rotateY(360deg);
}

.publico-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.publico-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   CTA EXPOSITOR VISUAL SECTION
============================================ */
.cta-expositor-visual {
    position: relative;
    padding: 6rem 0;
    background-color: var(--agro-dark);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.cta-expositor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(10, 31, 12, 0.92) 0%,
            rgba(27, 94, 32, 0.85) 100%);
    z-index: 1;
}

.min-vh-50 {
    min-height: 50vh;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
}

.cta-benefit-item i {
    font-size: 1.1rem;
}

.cta-stats-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.cta-stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.cta-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--agro-secondary);
    line-height: 1;
}

.cta-stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

@media (max-width: 991px) {
    .cta-expositor-visual {
        background-attachment: scroll;
        padding: 4rem 0;
    }

    .cta-stats-box {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 2rem;
    }

    .cta-stat-item {
        flex: 1;
        min-width: 100px;
    }

    .cta-stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .cta-benefit-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* ============================================
   PROGRAMACAO SECTION
============================================ */
.programacao-section {
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 50%, #fafafa 100%);
    position: relative;
}

.programacao-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--agro-primary) 0%, var(--agro-secondary) 50%, var(--agro-primary) 100%);
}

.programacao-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all var(--transition-normal);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.programacao-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(27, 94, 32, 0.12);
    transform: translateY(-5px);
    border-color: var(--agro-primary);
}

.programacao-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--agro-primary) 0%, var(--agro-primary-dark) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
}

.programacao-card h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.programacao-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* Programação Intro Text */
.programacao-intro {
    background: var(--agro-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--agro-primary);
}

.programacao-intro p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.programacao-intro p:last-child {
    margin-bottom: 0;
}

/* ============================================
   FAMILY SECTION
============================================ */
.family-section {
    background: linear-gradient(135deg, var(--agro-secondary) 0%, var(--accent-orange) 100%);
    color: var(--text-dark);
    text-align: center;
}

.family-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.family-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.family-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.family-icon-item {
    text-align: center;
}

.family-icon-item i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
}

.family-icon-item span {
    font-weight: 600;
}

/* ============================================
   MEDIA SECTION
============================================ */
.media-section {
    background: var(--bg-light);
}

.media-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.media-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.media-card-body {
    padding: 1.5rem;
}

.media-card-body h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.media-card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.media-card-body a {
    color: var(--agro-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.media-card-body a:hover {
    color: var(--agro-secondary);
}

/* ============================================
   PARTNERS SECTION
============================================ */
.partners-section {
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e9 50%, #f0f7f0 100%);
    overflow: hidden;
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 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='%231b5e20' fill-opacity='0.03'%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");
    opacity: 0.5;
}

.partners-wrapper {
    overflow: hidden;
    padding: 2rem 0;
}

.partners-track {
    display: flex;
    gap: 4rem;
    animation: scroll-partners 30s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    height: 80px;
    max-width: 180px;
    min-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-normal);
    flex-shrink: 0;
    padding: 12px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ============================================
   CTA FINAL SECTION
============================================ */
.cta-final-section {
    background: linear-gradient(135deg, var(--agro-dark) 0%, var(--agro-primary-dark) 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 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='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-final-content {
    position: relative;
    z-index: 2;
}

.cta-final-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-final-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ============================================
   FOOTER
============================================ */
footer,
footer.footer {
    background: #050d06;
    color: rgba(255, 255, 255, 0.8);
    padding-top: 5rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand h3,
.footer-brand h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: all var(--transition-fast);
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.03);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--agro-secondary);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--agro-secondary);
}

.footer-contact i {
    color: var(--agro-secondary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--agro-secondary);
    color: var(--text-dark);
    transform: translateY(-5px);
}

/* Social Link (para footer.php include) */
.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all var(--transition-normal);
    text-decoration: none;
    margin-right: 0.5rem;
}

.social-link:hover {
    background: var(--agro-secondary);
    color: var(--text-dark);
    transform: translateY(-5px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.admin-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.admin-link:hover {
    color: var(--agro-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.9rem;
}

.footer-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
    margin-top: 1rem;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   WHATSAPP BUTTON
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

/* ============================================
   CARRINHO SIDEBAR (RESERVAR)
============================================ */
.cart-sidebar {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.cart-header {
    background: var(--agro-primary);
    color: white;
    padding: 1.5rem;
}

.cart-header h5 {
    margin: 0;
    font-weight: 700;
}

.cart-body {
    padding: 1.5rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.cart-empty i {
    font-size: 3rem;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
}

.cart-item-info h6 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.cart-item-info small {
    color: var(--text-muted);
}

.cart-item-price {
    font-weight: 700;
    color: var(--agro-primary);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 2px solid var(--bg-light);
    margin-top: 1rem;
}

.cart-total span:first-child {
    font-weight: 600;
}

.cart-total span:last-child {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--agro-primary);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 992px) {
    .hero-section {
        min-height: 90vh;
    }

    .countdown {
        gap: 0.5rem;
    }

    .countdown-item {
        padding: 0.75rem 1rem;
        min-width: 70px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero-info {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    /* Logo hero tablet */
    .hero-logo img {
        max-width: 280px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .free-event-banner h3 {
        font-size: 1.3rem;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .free-event-banner h3 i {
        display: none;
    }

    .countdown {
        flex-wrap: wrap;
    }

    .countdown-item {
        flex: 1;
        min-width: 60px;
    }

    #mapa-interativo {
        aspect-ratio: 4/3;
    }

    .terreno-pin {
        width: 7%;
        height: 9%;
    }

    .pin-marker {
        font-size: 11px;
        border-width: 2px;
    }

    .family-icons {
        gap: 1.5rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .cta-benefits {
        justify-content: center;
    }

    /* CTA Expositor ajustes tablet */
    .cta-expositor-visual {
        padding: 3.5rem 0;
    }

    .cta-expositor-visual .col-lg-7 {
        text-align: center;
    }

    .cta-expositor-visual .d-flex.flex-wrap {
        justify-content: center;
    }

    /* Section headers centralizados */
    .section-header {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    /* Logo hero menor no mobile - 120px */
    .hero-logo img {
        max-width: 120px !important;
    }

    /* Logos do header menores no mobile */
    .header-logo {
        max-height: 28px !important;
    }

    .header-logos {
        gap: 8px !important;
    }

    /* Logos do footer menores no mobile */
    .footer-logo {
        max-height: 35px !important;
    }

    .footer-logos {
        gap: 10px !important;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Hero section mobile */
    .hero-section {
        min-height: 100vh;
        padding-top: 80px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-buttons {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .hero-buttons .btn {
        display: flex !important;
        width: 90% !important;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    /* Garantir overlay verde no CTA mobile */
    .cta-expositor-visual {
        background-attachment: scroll !important;
        padding: 3rem 0;
        min-height: auto;
        position: relative;
    }

    .cta-expositor-overlay {
        position: absolute !important;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 31, 12, 0.92) !important;
        z-index: 1;
    }

    .cta-expositor-visual .container {
        position: relative;
        z-index: 2;
    }

    .cta-expositor-visual h2 {
        font-size: 1.5rem !important;
        text-align: center;
    }

    .cta-expositor-visual p {
        font-size: 0.95rem;
        text-align: center;
    }

    .cta-expositor-visual .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-benefit-item {
        justify-content: center;
        width: 100%;
    }

    .cta-expositor-visual .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Alinhamentos gerais mobile */
    .section-header {
        text-align: center !important;
    }

    .section-title {
        font-size: 1.6rem !important;
    }

    .section-subtitle {
        font-size: 0.9rem !important;
    }

    .hero-slogan {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    /* Hero highlights - 2 por linha no mobile */
    .hero-highlights {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 1.5rem;
        justify-items: center;
    }

    .hero-highlight-item {
        padding: 8px 12px;
        font-size: 0.75rem;
        width: 100%;
        justify-content: center;
    }

    /* Hero info - centralizar data e endereço */
    .hero-info {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        align-items: center;
    }

    .hero-info-item {
        font-size: 0.85rem;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        text-align: center;
        max-width: 90%;
        gap: 8px;
    }

    .hero-info-item i {
        font-size: 1.1rem;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .hero-info-item span {
        text-align: center;
    }

    .countdown {
        gap: 8px;
        margin-bottom: 1rem !important;
    }

    .countdown-item {
        padding: 0.5rem;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-text {
        font-size: 0.65rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .programacao-card {
        flex-direction: column;
        text-align: center;
    }

    .programacao-icon {
        margin: 0 auto;
    }

    /* About Section (Nossa História) mobile */
    .about-section::before,
    .about-section::after {
        display: none;
    }

    .about-image::before {
        display: none;
    }

    .about-content h2 {
        font-size: 1.6rem;
        text-align: center;
    }

    .about-content p {
        text-align: center;
        font-size: 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .about-feature {
        justify-content: center;
        text-align: left;
    }

    /* CTA Final mobile */
    .cta-final-content h2 {
        font-size: 1.4rem;
    }

    .cta-final-content p {
        font-size: 0.9rem;
    }

    .cta-final-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta-final-buttons .btn {
        width: 100%;
    }

    /* Apoiadores mobile */
    .apoiador-card {
        min-height: 90px;
        padding: 10px !important;
    }

    .apoiador-logo {
        max-height: 60px !important;
    }
}

/* ============================================
   ANIMATIONS
============================================ */
[data-aos] {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Bloco colors for map */
.bg-orange {
    background-color: #FF6B35 !important;
}

/* Number counter animation */
.counter {
    display: inline-block;
}

/* ============================================
   EMPRESAS APOIADORAS SECTION
============================================ */
.apoiadores-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.apoiador-card {
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apoiador-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.apoiador-logo {
    filter: grayscale(30%);
    transition: var(--transition-normal);
    max-height: 70px !important;
    width: auto;
    object-fit: contain;
}

.apoiador-card:hover .apoiador-logo {
    filter: grayscale(0%);
}

/* Carrossel mobile apoiadores */
.apoiadores-swiper .swiper-slide {
    height: auto;
}

.apoiadores-swiper .apoiador-card {
    min-height: 100px;
}

.apoiadores-swiper {
    padding-bottom: 40px;
}

.apoiadores-swiper .swiper-pagination-bullet {
    background: var(--agro-primary);
}

.apoiadores-swiper .swiper-pagination-bullet-active {
    background: var(--agro-secondary);
}

/* ============================================
   CART FLOAT BUTTON (MOBILE)
============================================ */
.cart-float {
    position: fixed;
    bottom: 90px;
    left: 20px;
    background: linear-gradient(135deg, var(--agro-primary), var(--agro-primary-dark));
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(27, 94, 32, 0.4);
    cursor: pointer;
    z-index: 1000;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    animation: cartPulse 2s infinite;
}

.cart-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(27, 94, 32, 0.5);
}

.cart-float i {
    font-size: 1.2rem;
}

.cart-float-badge {
    background: var(--agro-secondary);
    color: #000;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.85rem;
    min-width: 24px;
    text-align: center;
}

.cart-float-text {
    display: none;
}

@keyframes cartPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(27, 94, 32, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(249, 168, 37, 0.6);
    }
}

/* Show text on larger screens */
@media (min-width: 576px) {
    .cart-float-text {
        display: inline;
    }
}

/* Hide float cart on large screens (cart sidebar is visible) */
@media (min-width: 992px) {
    .cart-float {
        display: none;
    }
}

/* ============================================
   TOAST NOTIFICATIONS
============================================ */
.toast-notification {
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    animation: toastSlideIn 0.3s ease;
    max-width: 90%;
    width: auto;
    text-align: center;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 500;
}

.toast-notification.toast-hide {
    animation: toastSlideOut 0.3s ease forwards;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}

/* ============================================
   MOBILE LOT SELECTION (ACCORDION + CARDS)
============================================ */
.mobile-list .accordion-button {
    border-radius: 12px !important;
    font-weight: 600;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.mobile-list .accordion-button::after {
    filter: brightness(0) invert(1);
}

.mobile-list .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.mobile-list .accordion-button[style*="F9A825"]::after {
    filter: brightness(0);
}

.mobile-list .accordion-item {
    border-radius: 12px !important;
    overflow: hidden;
    background: transparent;
}

.mobile-list .accordion-body {
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

/* Lot Card (Unified Desktop + Mobile) */
.lot-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bloco-color, #ccc);
}

.lot-card:not(:disabled):hover,
.lot-card:not(:disabled):focus {
    border-color: var(--bloco-color, var(--agro-primary));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.lot-card .lot-number {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--bloco-color, var(--agro-primary));
    line-height: 1.2;
    margin-bottom: 0.2rem;
    white-space: nowrap;
}

.lot-card .lot-size {
    font-size: 0.7rem;
    color: #6c757d;
    margin-bottom: 0.35rem;
}

.lot-card .lot-status {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lot-card .available-badge {
    background: var(--agro-light);
    color: var(--agro-primary);
}

.lot-card .selected-badge {
    background: var(--agro-primary);
    color: white;
}

.lot-card .sold-badge {
    background: #dc3545;
    color: white;
}

/* Selected State */
.lot-card.selected {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-color: var(--agro-primary);
    border-width: 3px;
}

.lot-card.selected::before {
    background: var(--agro-primary);
    height: 6px;
}

.lot-card.selected .lot-number {
    color: var(--agro-primary);
}

/* Sold State */
.lot-card.sold {
    background: #f8f9fa;
    border-color: #dee2e6;
    opacity: 0.6;
    cursor: not-allowed;
}

.lot-card.sold::before {
    background: #dc3545;
}

.lot-card.sold .lot-number {
    color: #adb5bd;
    text-decoration: line-through;
}

/* Desktop Grid - more compact */
@media (min-width: 768px) {
    .lot-card {
        min-height: 85px;
        padding: 0.6rem 0.4rem;
    }

    .lot-card .lot-number {
        font-size: 0.8rem;
    }

    .lot-card .lot-status {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
}

/* Mobile - slightly larger cards */
@media (max-width: 767px) {
    .lot-card {
        min-height: 100px;
        padding: 0.85rem 0.6rem;
    }

    .lot-card .lot-number {
        font-size: 0.9rem;
    }

    .lot-card .lot-status {
        font-size: 0.7rem;
    }
}

/* Accordion styling */
.lots-grid-section .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.lots-grid-section .accordion-button::after {
    filter: brightness(0) invert(1);
}

.lots-grid-section .accordion-item {
    border: none;
}

/* ============================================
   PROGRAMAÇÃO POR DIA - CARDS
============================================ */

/* === Antigo design (mantido para compatibilidade) === */
.prog-dia-card {
    background: #2d3a1b;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    height: 100%;
}

.prog-dia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.prog-dia-header {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.prog-dia-titulo {
    display: inline-block;
    padding: 8px 24px;
    border-radius: var(--radius-xl);
    color: white;
    font-weight: 800;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.prog-dia-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.prog-dia-info i {
    color: var(--agro-secondary);
    margin-right: 4px;
}

.prog-dia-body {
    padding: 0 1.5rem 1.5rem;
}

.prog-dia-imagem {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    min-height: 200px;
}

.prog-dia-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform var(--transition-slow);
}

.prog-dia-card:hover .prog-dia-imagem img {
    transform: scale(1.05);
}

.prog-dia-eventos {
    padding: 0.5rem 0 0.5rem 0.5rem;
}

.prog-evento-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-fast);
}

.prog-evento-item:last-child {
    border-bottom: none;
}

.prog-evento-item:hover {
    padding-left: 8px;
}

.prog-evento-item>i {
    color: var(--agro-secondary);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.prog-evento-item strong {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
}

.prog-evento-item small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    display: block;
    margin-top: 2px;
}

/* ============================================
   NOVO DESIGN V2 - PROGRAMAÇÃO CARDS
============================================ */
.prog-card-v2 {
    position: relative;
    background: linear-gradient(160deg, #1a2e0f 0%, #2d3a1b 40%, #1a2e0f 100%);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.prog-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(var(--prog-cor-rgb), 0.15);
}

/* Background banner da seção */
.prog-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.18;
}

/* Header do card */
.prog-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 0.75rem;
    gap: 1rem;
}

.prog-card-badge-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.prog-card-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 28px;
    background: var(--prog-cor);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(var(--prog-cor-rgb), 0.4);
    transition: box-shadow 0.3s ease;
}

.prog-card-v2:hover .prog-card-badge {
    box-shadow: 0 6px 25px rgba(var(--prog-cor-rgb), 0.6);
}

.prog-card-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    padding-left: 6px;
}

.prog-card-date i {
    color: var(--prog-cor);
    margin-right: 5px;
}

/* Miniatura circular do artista */
.prog-card-thumb {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--prog-cor);
    box-shadow: 0 4px 20px rgba(var(--prog-cor-rgb), 0.3), 0 0 0 4px rgba(var(--prog-cor-rgb), 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.prog-card-v2:hover .prog-card-thumb {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(var(--prog-cor-rgb), 0.5), 0 0 0 6px rgba(var(--prog-cor-rgb), 0.15);
}

.prog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.prog-card-v2:hover .prog-card-thumb img {
    transform: scale(1.1);
}

/* Lista de eventos */
.prog-card-events {
    position: relative;
    z-index: 2;
    padding: 0.75rem 1.5rem 1.25rem;
    flex: 1;
}

.prog-event-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    margin-bottom: 6px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
}

.prog-event-row:hover {
    background: rgba(var(--prog-cor-rgb), 0.08);
    border-color: rgba(var(--prog-cor-rgb), 0.15);
    transform: translateX(4px);
}

.prog-event-highlight {
    background: rgba(var(--prog-cor-rgb), 0.06);
    border-color: rgba(var(--prog-cor-rgb), 0.12);
}

.prog-event-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: rgba(var(--prog-cor-rgb), 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prog-event-row:hover .prog-event-icon {
    background: rgba(var(--prog-cor-rgb), 0.2);
    transform: scale(1.05);
}

.prog-event-icon i {
    color: var(--prog-cor);
    font-size: 1rem;
}

.prog-event-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.prog-event-name {
    color: white;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.3;
}

.prog-event-highlight .prog-event-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.prog-event-time {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
    font-weight: 400;
}

/* Decoração inferior do card */
.prog-card-footer-deco {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--prog-cor), transparent);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.prog-card-v2:hover .prog-card-footer-deco {
    opacity: 0.9;
}

/* Programação Section - fundo escuro */
.programacao-section {
    background: linear-gradient(180deg, #1a2e0f 0%, #0d1f08 100%);
    position: relative;
    overflow: hidden;
}

/* Padrão decorativo de fundo da seção */
.programacao-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(249, 168, 37, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(230, 126, 34, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(39, 174, 96, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.programacao-section > .container {
    position: relative;
    z-index: 1;
}

.programacao-section .section-badge {
    background: rgba(249, 168, 37, 0.15);
    color: var(--agro-secondary);
    border-color: rgba(249, 168, 37, 0.3);
}

.programacao-section .section-title {
    color: white;
}

.programacao-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsivo - Novo Design V2 */
@media (max-width: 991px) {
    .prog-card-v2 .row.g-0 {
        flex-direction: column;
    }

    .prog-card-thumb {
        width: 65px;
        height: 65px;
        min-width: 65px;
    }


}

@media (max-width: 576px) {
    .prog-card-top {
        padding: 1.2rem 1.2rem 0.5rem;
    }

    .prog-card-badge {
        font-size: 0.95rem;
        padding: 8px 20px;
        letter-spacing: 1px;
    }

    .prog-card-thumb {
        width: 55px;
        height: 55px;
        min-width: 55px;
        border-width: 2px;
    }

    .prog-card-events {
        padding: 0.5rem 1.2rem 1rem;
    }

    .prog-event-row {
        padding: 10px 10px;
        gap: 10px;
    }

    .prog-event-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        border-radius: 8px;
    }

    .prog-event-icon i {
        font-size: 0.85rem;
    }

    .prog-event-name {
        font-size: 0.85rem;
    }


}

/* Antigo responsivo (compatibilidade) */
@media (max-width: 991px) {
    .prog-dia-card .row.g-0 {
        flex-direction: column;
    }

    .prog-dia-card .col-md-5,
    .prog-dia-card .col-md-7 {
        width: 100%;
    }

    .prog-dia-imagem {
        min-height: 180px;
        max-height: 220px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .prog-dia-header {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .prog-dia-titulo {
        font-size: 1rem;
        padding: 6px 18px;
    }

    .prog-dia-body {
        padding: 0 1rem 1rem;
    }

    .prog-evento-item strong {
        font-size: 0.85rem;
    }
}