/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #e32160;
    --color-secondary: #44a03d;
    --color-accent1: #00a8eb;
    --color-accent2: #e26f2c;
    --color-accent3: #fee612;
    --color-accent4: #fc9d79;
    --color-dark: #121214;
    --color-light: #f8f9fa;
    --color-text: #333333;
    --color-text-light: #666666;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header / Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 900;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.navbar {
    padding: 1rem 0;
}

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

.logo-img {  
    display: block;
    width: 100%;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--color-dark);
    transition: var(--transition);
}

.logo span {
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero-section{ 
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #e32160;
    background-image: url("assets/banners/Banner.png");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin-top: 72px;
}

img {
    width: 100%;
}

/* Countdown Section */
.countdown-section {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a1a1c 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(227, 33, 96, 0.4) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    animation: pulse 4s ease-in-out infinite;
}

.countdown-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 168, 235, 0.3) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    animation: pulse 5s ease-in-out infinite;
}

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

.countdown-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.countdown-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-light);
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(227, 33, 96, 0.4);
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.countdown-unit {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-unit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.countdown-unit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(227, 33, 96, 0.4);
}

.countdown-unit:hover::before {
    left: 100%;
}

.countdown-number {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-primary);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(227, 33, 96, 0.4);
    font-weight: 800;
}

.countdown-label {
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: var(--color-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 300;
}

.countdown-date {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: var(--color-accent2);
    font-weight: 300;
    margin-top: 1.5rem;
}

.countdown-message {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--color-light);
    font-weight: 300;
    padding: 2rem;
    background: rgba(227, 33, 96, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(227, 33, 96, 0.3);
    display: none;
    margin-top: 2rem;
}

.countdown-message.show {
    display: block;
}

/* About Section */
.about-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-video {
    flex: 1;
    max-width: 420px;
    padding: 1rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-video::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 2px solid var(--color-primary);
    opacity: 0.15;
    pointer-events: none;
}

.about-video .instagram-media {
    margin: 0 !important;
    width: 100% !important;
}

.about-content {
    flex: 1.2;
}

.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-light);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.about-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.about-title .highlight {
    color: var(--color-primary);
    display: block;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-description {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-align: left;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background: transparent;
    transform: translateY(-2px);
    color: var(--color-primary);
}

.btn-secondary {
    background: var(--color-light);
    color: var(--color-dark);
    box-shadow:0 4px 15px rgb(18, 18, 20, 0.3);
}

.btn-secondary:hover {
    background: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(18, 18, 20, 0.4);
    color: var(--color-light);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    font-weight: 600;
}

/* Horários Section */
.schedule-section {
    background: white;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.schedule-card {
    background: rgb(0, 168, 235, 0.7);
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgb(226, 111, 44, 0.2);
    transition: var(--transition);
}

.schedule-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgb(226, 111, 44, 0.3);
}

.schedule-day {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.schedule-date {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.schedule-time {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.schedule-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

.info-box {
    background: var(--color-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
}

.info-box h3 {
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-light);
}

.info-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

/* Tickets Section */
.tickets-section {
    background: var(--color-light);
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ticket-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    border-color: var(--color-primary);
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--color-primary)
}

.ticket-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.ticket-featured {
    border-color: var(--color-secondary);
    background: linear-gradient(135deg, rgba(68, 160, 61, 0.05) 0%, white 100%);
}

.ticket-featured::before {
    background: var(--color-secondary)
}

.ticket-special {
    border-color: var(--color-accent3);
    background: linear-gradient(135deg, rgba(0, 168, 235, 0.05) 0%, white 100%);
}

.ticket-special::before {
    background: var(--color-accent3)
}

.ticket-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--color-primary);
    color: white;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.ticket-featured .ticket-badge {
    background: var(--color-secondary);
}

.ticket-special .ticket-badge {
    background: var(--color-accent3);
    color: var(--color-dark);
}

.ticket-day {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.ticket-date {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.ticket-price-wrapper {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 2px dashed rgba(0, 0, 0, 0.1);
    border-bottom: 2px dashed rgba(0, 0, 0, 0.1);
}

.ticket-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.ticket-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.ticket-price-group {
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
}

.ticket-price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}

.ticket-info {
    margin-top: 1.5rem;
}

.ticket-info p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.ticket-note {
    font-size: 0.85rem !important;
    color: var(--color-dark) !important;
    font-weight: 600;
    padding: 0.75rem 1rem;
    background: rgba(254, 230, 18, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--color-accent3);
}

.tickets-notes {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--color-primary);
}

.tickets-notes h3 {
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.tickets-notes ul {
    list-style: none;
    padding: 0;
}

.tickets-notes li {
    padding: 0.75rem 0;
    color: var(--color-text);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tickets-notes li i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

/* Agenda Section */
.agenda-section {
    background: var(--color-light);
}

.agenda-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-text);
}

.tab-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.tab-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.agenda-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.agenda-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.agenda-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    min-width: 120px;
}

.agenda-details {
    flex: 1;
}

.agenda-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.agenda-details p {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.agenda-type {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--color-light);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* CARD BLOQUEADO */
.agenda-locked {
    position: relative;
    overflow: hidden;
    pointer-events: none;
}

.agenda-locked > *:not(.lock-overlay) {
    filter: blur(4px);
    opacity: 0.6;
}

.lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-dark);
    text-align: center;
}

.lock-icon {
    font-size: 2rem;
}

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

/* map BLOQUEADO */
.map-locked {
    position: relative;
    overflow: hidden;
    pointer-events: none;
}

.map-locked > *:not(.lock-overlay) {
    filter: blur(4px);
    opacity: 0.6;
}

.map-locked .lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-dark);
    text-align: center;
    z-index: 2;
}

.map-locked .lock-icon {
    font-size: 2rem;
}

.map-locked .lock-text {
    font-size: 1rem;
}

/* ========== CAROUSEL STYLES ========== */

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

/* Carousel Container */
.carousel-container {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    border-radius: 16px;
    padding: 10px 0px 20px 0px;
}

.carousel-container:active {
    cursor: grabbing;
}

/* Carousel Track */
.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(227, 33, 96, 0.3);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: var(--color-accent2);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--color-primary);
    width: 30px;
    border-radius: 6px;
}

/* Exhibitors Card Styles */
.exhibitors-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    width: calc((100% - 4rem) / 3);
    min-width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    height: 100%;
    min-height: 400px;
}

.exhibitors-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary);
}

.exhibitors-card * {
    text-decoration: none;
    color: inherit;
}

.exhibitors-logo {
    width: 123px;
    height: 123px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.exhibitors-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.exhibitors-desc {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.exhibitors-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--color-light);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: auto;
}

/* Partners Section */
.partners-section {
    background: var(--color-light);
}

.partners-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    width: calc((100% - 4rem) / 3);
    min-width: 250px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    min-height: 280px;
}

.partners-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--color-primary);
}

.partners-logo {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    width: 100%;
    flex-shrink: 0;
}

.partners-logo-filter {
    filter: drop-shadow(0 0 1px rgba(0,0,0));
}

.partners-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partners-tier {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
    min-height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

/* Map Section */
.map-section {
    background: white;
}

.map-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-container {
    background: var(--color-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-legend {
    text-align: center;
    z-index: 2;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-legend h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.map-legend p {
    color: var(--color-text-light);
    margin: 0.3rem 0;
}

.map-areas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.map-area {
    position: absolute;
    cursor: pointer;
}

.area-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.map-area:hover .area-marker {
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(0, 168, 235, 0.5);
}

.map-area:nth-child(1) .area-marker {
    background: var(--color-primary);
}

.map-area:nth-child(2) .area-marker {
    background: var(--color-secondary);
}

.map-area:nth-child(3) .area-marker {
    background: var(--color-accent1);
}

.map-area:nth-child(4) .area-marker {
    background: var(--color-accent2);
}

.map-area:nth-child(5) .area-marker {
    background: var(--color-accent3);
}

.map-area:nth-child(6) .area-marker {
    background: var(--color-accent4);
}

.area-tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.map-area:hover .area-tooltip {
    opacity: 1;
    top: -50px;
}

.map-legend-list {
    background: var(--color-light);
    padding: 2rem;
    border-radius: 12px;
}

.map-legend-list h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.legend-items {
    list-style: none;
}

.legend-items li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: var(--color-text-light);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0.5rem 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);  
}

.footer-section span{
    font-size: 0.85rem;
    color: rgb(225, 48, 108, 0.8);
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.footer-section ul li a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

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

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links a[aria-label="Instagram"]:hover {
    background: #E1306C;
}

.social-links a[aria-label="Facebook"]:hover {
    background: #1877F2;
}

.social-links a[aria-label="WhatsApp"]:hover {
    background: #25D366;
}

.creator-profile-link {
    text-decoration: none;
    color: var(--color-accent1);
}

/* Responsive Design */

@media(max-width: 1032px){
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        gap: 1rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1001;
    }

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

    .mobile-menu-toggle {
        display: flex;
        overflow: hidden;
    }
}

@media (max-width: 992px){
    .about-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .about-video {
        max-width: 100%;
    }

    .about-description {
        text-align: center;
    }
}

@media (max-width: 940px) {
    .carousel-wrapper {
        padding: 0 50px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-title {
        display: none;
    }
    
    .about-title {
        font-size: 2.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .about-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-section {
        background-image: url("assets/banners/BannerMobile.png");
        min-height: 75vh;
        background-size: cover;
    }

    .countdown-section {
        padding: 2rem 0;
    }
    
    .countdown-grid {
        gap: 1rem;
    }
    
    .countdown-unit {
        padding: 1.5rem 0.5rem;
    }

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

    .carousel-wrapper {
        padding: 0 40px;
    }

    .exhibitors-card,
    .partners-card {
        width: calc((100% - 2rem) / 2);
        min-width: 280px;
    }

    .carousel-btn-next{
        display: none;
    }

    .carousel-btn-prev{
        display: none;
    }

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

    .ticket-price {
        font-size: 2.8rem;
    }

    .price-value {
        font-size: 2rem;
    }

    .ticket-price-group {
        gap: 2rem;
    }
}

@media (max-width: 575px) { 
    .hero-section {
        min-height: 45vh;
    }

    .carousel-wrapper {
        padding: 0 35px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .exhibitors-card,
    .partners-card {
        width: 100%;
        min-width: 250px;
    }
    .container{
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .agenda-item {
        flex-direction: column;
        gap: 1rem;
    }

    .agenda-time {
        min-width: auto;
    }

    .exhibitors-card,
    .partners-card {
        width: 100%;
        min-width: 240px;
    }

    .ticket-card {
        padding: 2rem 1.5rem;
    }

    .ticket-price {
        font-size: 2.5rem;
    }

    .price-value {
        font-size: 1.8rem;
    }

    .ticket-price-group {
        gap: 1.5rem;
    }
}
