/* Modern Clean Design for EXTREME CACHOEIRINHA */

:root {
    --primary-color: #2ecc71;
    --primary-dark: #27ae60;
    --secondary-color: #3498db;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
    --navbar-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f8f9fa;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
}

/* =============== NAVBAR MODERNA =============== */
.modern-navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--navbar-height);
    transition: all 0.3s ease;
}

.modern-navbar.scrolled {
    height: 70px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-logo img {
    height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

.modern-navbar.scrolled .navbar-logo img {
    height: 50px;
}

.navbar-logo img:hover {
    transform: scale(1.05);
}

.navbar-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
    display: none;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.navbar-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-menu a:hover {
    color: var(--primary-color);
    background: rgba(46, 204, 113, 0.1);
}

.navbar-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.navbar-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.navbar-cta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.navbar-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* =============== HERO SECTION =============== */
.hero-section {
    margin-top: var(--navbar-height);
    padding: 100px 30px 80px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-date {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: white !important;
    color: var(--primary-color) !important;
    border: 3px solid white !important;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-hero-primary:hover {
    background: rgba(255,255,255,0.9) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-hero-outline {
    background: transparent !important;
    color: white !important;
    border: 3px solid white !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 40px;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.15) !important;
}

/* =============== MODERN CARDS =============== */
.modern-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.modern-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.modern-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 25px;
    border: none;
    font-weight: 600;
    font-size: 1.2rem;
}

.modern-card-body {
    padding: 30px;
}

/* =============== FORMS =============== */
.modern-form-group {
    margin-bottom: 25px;
}

.modern-form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

.modern-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.modern-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.modern-form-control:hover {
    border-color: var(--primary-dark);
}

/* =============== BUTTONS =============== */
.btn-modern {
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-modern-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
    color: white;
}

.btn-modern-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-modern-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-modern-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-modern-danger {
    background: var(--danger-color);
    color: white;
}

.btn-modern-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* =============== STATS CARDS =============== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* =============== FOOTER =============== */
.modern-footer {
    background: var(--dark-color);
    color: white;
    padding: 50px 30px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* =============== RESPONSIVE =============== */
@media (max-width: 968px) {
    * {
        max-width: 100vw;
    }
    
    .navbar-menu {
        position: fixed;
        top: var(--navbar-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--navbar-height));
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        overflow-y: auto;
    }
    
    .navbar-menu.active {
        left: 0;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .navbar-cta {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }
    
    .navbar-cta .btn-modern {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-date {
        font-size: 1.3rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-cta-group .btn-modern {
        width: 100%;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sponsors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 300px;
    }
    
    .sponsor-logo {
        max-height: 100px;
    }
    
    .map-container-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    #map {
        height: 400px;
        width: 100%;
    }
    
    .map-wrapper {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .map-points-card {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-modern {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    body, html {
        overflow-x: hidden;
        max-width: 100vw;
        width: 100%;
    }
    
    .hero-section,
    .info-section,
    .sponsors-section,
    .map-section,
    .form-section {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .modern-card-body {
        padding: 20px;
    }
    
    .info-grid,
    .map-container-wrapper,
    .form-container {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .sponsors-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
        max-width: 250px;
    }
    
    .sponsor-logo {
        max-height: 90px;
    }
    
    .info-card {
        width: 100%;
        margin-bottom: 0;
    }
    
    .map-wrapper {
        width: 100%;
        order: 1;
    }
    
    .map-points-card {
        width: 100%;
        order: 2;
    }
    
    #map {
        height: 400px;
        width: 100%;
    }
    
    .form-modern {
        padding: 25px 15px;
        margin-left: 0;
        margin-right: 0;
    }

    .info-card {
        padding: 25px 20px;
    }
    
    .form-section-title,
    .map-section-title {
        font-size: 2rem;
    }
}

/* =============== ANIMATIONS =============== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* =============== UTILITIES =============== */
.container-modern {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: 60px 30px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mt-navbar {
    margin-top: calc(var(--navbar-height) + 30px);
}

/* =============== INFO SECTION =============== */
.info-section {
    background: #f8f9fa;
    padding: 80px 30px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.info-card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.info-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card-content {
    color: var(--text-light);
    line-height: 1.8;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.category-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 5px;
    transition: all 0.3s ease;
}

.category-badge:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.category-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

/* =============== SPONSORS SECTION =============== */
.sponsors-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 50px 30px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.sponsors-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.sponsors-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.sponsors-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    font-weight: 400;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
}

.sponsor-item:hover {
    transform: scale(1.1);
}

.sponsor-logo {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

/* =============== MAP SECTION =============== */
.map-section {
    padding: 80px 30px;
    background: white;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.map-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.map-container-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    width: 100%;
    gap: 30px;
    align-items: start;
}

.map-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--border-color);
}

#map {
    height: 500px;
    width: 100%;
}

.map-points-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    height: fit-content;
}

.map-points-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-point-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.map-point-item:hover {
    background: rgba(46, 204, 113, 0.1);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.map-point-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.map-point-info h6 {
    margin: 0 0 5px 0;
    font-weight: 600;
    color: var(--text-dark);
}

.map-point-info small {
    color: var(--text-light);
}

/* =============== FORM SECTION =============== */
.form-section {
    padding: 80px 30px;
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.form-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.form-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.form-modern {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--border-color);
    width: 100%;
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.form-section-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 40px 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.form-section-divider:first-child {
    margin-top: 0;
}

.form-section-divider i {
    font-size: 1.3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label-modern {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-label-modern .required {
    color: var(--danger-color);
}

.form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input-icon {
    position: absolute;
    left: 18px;
    color: var(--text-light);
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 1;
}

.form-input-wrapper .form-input-modern {
    padding-left: 50px;
    width: 100%;
}

.form-input-modern {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
    width: 100%;
}

.form-input-modern:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.1);
}

.form-input-modern:hover {
    border-color: var(--primary-dark);
}

.form-select-modern {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232ecc71' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.form-checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-checkbox-group label {
    margin: 0;
    cursor: pointer;
    font-size: 0.95rem;
}

.form-checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.form-checkbox-group a:hover {
    text-decoration: underline;
}

.btn-submit-modern {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

.btn-submit-modern:active {
    transform: translateY(0);
}

/* =============== CATEGORY BADGES =============== */
.category-section-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    margin-top: 8px;
}

.category-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(46, 204, 113, 0.05));
    color: var(--primary-dark);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 4px 6px 4px 0;
    border: 1.5px solid rgba(46, 204, 113, 0.3);
    transition: all 0.2s ease;
}

.category-badge:hover {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.2), rgba(46, 204, 113, 0.1));
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

/* =============== MAP POINTS CARD =============== */
.map-points-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-points-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.map-point-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.map-point-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.map-point-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 10px;
}

.map-point-info {
    flex: 1;
}

.map-point-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.map-point-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* =============== PAYMENT INFO CARD =============== */
.payment-info-card {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.05), rgba(52, 152, 219, 0.05));
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
}

.payment-info-header {
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-info-body {
    padding: 25px;
}

.payment-info-body p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.payment-value {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 800;
}

.payment-code {
    display: inline-block;
    background: rgba(46, 204, 113, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: var(--primary-dark);
    border: 1px dashed var(--primary-color);
    user-select: all;
}

.payment-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.payment-note i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* =============== FILE UPLOAD MODERN =============== */
.form-file-upload {
    position: relative;
    margin-bottom: 25px;
}

.form-file-input {
    position: absolute;
    opacity: 0;
    width: 0.1px;
    height: 0.1px;
    overflow: hidden;
}

.form-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    background: var(--white);
    border: 3px dashed var(--border-color);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.form-file-label:hover {
    border-color: var(--primary-color);
    background: rgba(46, 204, 113, 0.02);
}

.form-file-label i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-file-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.form-file-info {
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-file-input:focus + .form-file-label {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* =============== FORM CHECKBOX WRAPPER =============== */
.form-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: rgba(46, 204, 113, 0.05);
    border-radius: 12px;
    margin: 25px 0;
}

.form-checkbox {
    width: 22px;
    height: 22px;
    accent-color: var(--primary-color);
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-checkbox-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    cursor: pointer;
    flex: 1;
}

.form-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.form-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* =============== FORM ACTIONS =============== */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
}

.btn-form-secondary {
    flex: 0 0 auto;
    padding: 14px 30px;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-form-secondary:hover {
    background: var(--light-color);
    border-color: var(--text-light);
}

.btn-form-primary {
    flex: 1;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-form-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.4);
}

.btn-form-primary:active {
    transform: translateY(0);
}

/* =============== ALERT CLOSED =============== */
.alert-closed {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(241, 196, 15, 0.1));
    border: 2px solid var(--warning-color);
    border-radius: 20px;
}

.alert-closed i {
    font-size: 4rem;
    color: var(--warning-color);
    margin-bottom: 20px;
}

.alert-closed h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.alert-closed p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* =============== RESPONSIVE DESIGN =============== */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .map-container-wrapper {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    #map {
        height: 450px;
        width: 100%;
    }
    
    .form-modern {
        padding: 35px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .form-section-divider {
        margin: 30px 0 20px 0;
        font-size: 1rem;
    }
    
    .form-input-modern {
        font-size: 16px; /* Previne zoom no iOS */
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-form-secondary,
    .btn-form-primary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section,
    .info-section,
    .map-section,
    .form-section {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .info-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .map-section-title {
        font-size: 1.8rem;
    }
    
    .map-container-wrapper {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    #map {
        height: 350px;
    }
    
    .map-points-card {
        padding: 20px;
    }
    
    .form-modern {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .form-section-divider {
        font-size: 0.95rem;
        margin: 25px 0 15px 0;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .form-input-modern {
        padding: 12px 16px;
        font-size: 16px;
    }
    
    .form-input-wrapper .form-input-modern {
        padding-left: 45px;
    }
    
    .form-input-icon {
        left: 15px;
        font-size: 1rem;
    }
}
