/* === VARIABLES COLOR === */
:root {
    --primary: #d4145a;      /* Rojo vibrante */
    --secondary: #ffd700;    /* Oro */
    --accent: #1a1a2e;       /* Azul oscuro */
    --light: #f8f9fa;
    --dark: #0f0f1e;
    --text: #333;
    --border: #ddd;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--text);
    line-height: 1.6;
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, var(--accent) 0%, #2a2a4e 100%);
    padding: 60px 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 20, 90, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    text-align: center;
}

.folio-number {
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary);
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.4;
}

.heart-icon {
    font-size: 60px;
    margin: 20px 0;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

.hero-tagline {
    font-size: 28px;
    line-height: 1.4;
    color: var(--secondary);
    font-weight: bold;
}

.hero-center {
    text-align: center;
}

.event-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    color: var(--secondary);
}

.event-subtitle {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.event-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, #ff1744 100%);
    padding: 25px 30px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(212, 20, 90, 0.3);
}

.highlight-text {
    font-size: 18px;
    color: white;
    line-height: 1.5;
}

.highlight-bold {
    font-weight: 900;
    font-size: 24px;
    display: block;
    margin-top: 8px;
}

.hero-right {
    text-align: center;
}

.qr-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.qr-label {
    color: var(--accent);
    font-weight: bold;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.qr-code-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--secondary) 0%, #ffc700 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
    box-shadow: 0 5px 15px rgba(212, 20, 90, 0.2);
}

.status-box {
    background: linear-gradient(135deg, var(--accent) 0%, #2a2a4e 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
}

.status-box p {
    margin: 5px 0;
}

/* === BANNER DETAILS === */
.banner-details {
    background: linear-gradient(90deg, var(--primary) 0%, #ff1744 50%, var(--primary) 100%);
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    color: white;
    max-width: 1400px;
    margin: 0 auto;
}

.detail-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.detail-item .icon {
    font-size: 36px;
}

.detail-item .text {
    font-size: 14px;
    line-height: 1.5;
}

.detail-item strong {
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

/* === THIAGO STORY === */
.thiago-story {
    background: white;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.story-image-placeholder {
    background: linear-gradient(135deg, var(--secondary) 0%, #ffc700 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(212, 20, 90, 0.2);
}

.story-video-container {
    background: white;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(212, 20, 90, 0.2);
    overflow: hidden;
}

.story-image-placeholder p {
    color: var(--accent);
    font-weight: bold;
    font-size: 18px;
    margin-top: 20px;
}

.story-right h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 900;
}

.story-text {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-emphasis {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary);
    padding: 15px;
    background: #ffe8f0;
    border-left: 4px solid var(--primary);
}

.story-thanks {
    font-size: 20px;
    font-weight: bold;
    color: var(--accent);
    margin-top: 25px;
}

/* === EVENT HIGHLIGHTS === */
.event-highlights {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 20px;
    color: white;
    max-width: 1400px;
    margin: 0 auto;
}

.event-highlights h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary);
    letter-spacing: 2px;
    font-weight: 900;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(212, 20, 90, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid var(--secondary);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 20, 90, 0.3);
}

.highlight-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.highlight-card h3 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 900;
}

.highlight-card p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

/* === FORM SECTION === */
.form-section {
    background: white;
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.form-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--accent);
    margin-bottom: 50px;
    letter-spacing: 2px;
    font-weight: 900;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 20, 90, 0.1);
}

.form-group.total {
    background: linear-gradient(135deg, var(--secondary) 0%, #ffc700 100%);
    padding: 20px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    color: var(--accent);
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 30px;
}

.total-price {
    font-size: 28px;
    font-weight: 900;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff1744 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 20, 90, 0.4);
}

.form-disclaimer {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    text-align: center;
}

.form-info {
    font-size: 13px;
    color: var(--primary);
    margin-top: 10px;
    text-align: center;
    font-weight: 600;
}

/* === PAYMENT METHODS === */
.payment-methods {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 20px;
    color: white;
    max-width: 1400px;
    margin: 0 auto;
}

.payment-methods h2 {
    text-align: center;
    font-size: 42px;
    color: var(--secondary);
    margin-bottom: 60px;
    letter-spacing: 2px;
    font-weight: 900;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.method {
    background: rgba(212, 20, 90, 0.1);
    border: 2px solid var(--secondary);
    padding: 30px;
    border-radius: 15px;
}

.method h3 {
    color: var(--secondary);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 900;
}

.method p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #ccc;
}

.method strong {
    color: white;
}

.btn-payment {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary) 0%, #ffc700 100%);
    color: var(--accent);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: transform 0.2s;
    font-size: 14px;
}

.btn-payment:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.contact-info {
    margin-top: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.contact-info p {
    margin: 8px 0;
    font-size: 14px;
}

.contact-info a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* === SPONSORS SECTION === */
.sponsors-section {
    background: white;
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.sponsors-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--accent);
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-weight: 900;
}

.sponsors-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.sponsor-card {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    border: 2px solid var(--secondary);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sponsor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 20, 90, 0.15);
}

.sponsor-logo-container {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.sponsor-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sponsor-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 900;
}

.sponsor-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.sponsor-role {
    font-weight: 600;
    color: var(--primary) !important;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--secondary);
}

.sponsors-message {
    text-align: center;
    font-size: 15px;
    color: #666;
    max-width: 600px;
    margin: 30px auto 0;
    padding: 20px;
    background: linear-gradient(135deg, #fff9e6 0%, #ffe8f0 100%);
    border-radius: 10px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .sponsors-section {
        padding: 50px 20px;
    }

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

    .sponsors-section h2 {
        font-size: 32px;
    }
}
    background: white;
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.stats h2 {
    text-align: center;
    font-size: 42px;
    color: var(--accent);
    margin-bottom: 50px;
    letter-spacing: 2px;
    font-weight: 900;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary) 0%, #ff1744 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 20, 90, 0.2);
}

.stat-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-value {
    display: block;
    font-size: 42px;
    font-weight: 900;
}

/* === FOOTER === */
.footer {
    background: linear-gradient(135deg, var(--accent) 0%, #2a2a4e 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    max-width: 100%;
    margin-top: 0;
}

.footer p {
    margin: 10px 0;
    font-size: 14px;
}

.footer p:first-child {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.social-links {
    margin-top: 20px;
    font-size: 13px;
}

.social-links a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
    text-decoration: underline;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .event-title {
        font-size: 42px;
    }

    .event-subtitle {
        font-size: 20px;
    }

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

    .thiago-story {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 20px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .banner-details {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px 20px;
    }

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

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .heart-icon {
        font-size: 40px;
    }

    .folio-number {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .event-title {
        font-size: 32px;
    }

    .event-highlight {
        padding: 15px 20px;
    }

    .highlight-text {
        font-size: 14px;
    }

    .highlight-bold {
        font-size: 16px;
    }

    .form-group total {
        font-size: 16px;
    }

    .total-price {
        font-size: 20px;
    }
}
