:root {
    --primary: #FFD700;
    --primary-glow: rgba(255, 215, 0, 0.4);
    --bg-dark: #0a0a0a;
    --bg-card: rgba(25, 25, 25, 0.7);
    --text-main: #ffffff;
    --text-dim: #b0b0b0;
    --accent: #22c55e;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
    font-family: 'Outfit', sans-serif;
}

h1,
h2,
h3,
h4,
.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

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

/* Glow Background */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* Header */
header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    max-width: 160px;
    height: auto;
    transition: var(--transition);
}

@media (max-width: 480px) {
    .header-logo {
        max-width: 140px;
    }
}

/* Hero Section */
#hero {
    padding: 120px 0 80px;
    /* More top padding for sticky header */
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.9) 100%), url('IMG_7941.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-logo {
    max-width: 450px;
    width: 100%;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.main-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
}

.main-title span,
.section-title-left span {
    color: var(--primary);
    -webkit-text-fill-color: initial;
    background: none;
    display: inline;
}

.hero-desc {
    font-size: 20px;
    color: var(--text-dim);
    margin-bottom: 30px;
    max-width: 550px;
}

.participants {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px #22c55e;
    animation: flash 1.5s infinite;
}

/* Glass Card */
.glass-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glass-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary);
}

.glass-card p {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 30px;
}

/* Form Elements */
.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dim);
}

.input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    transition: var(--transition);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--primary-glow);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: 0.5s;
}

.btn-primary:hover .btn-glow {
    opacity: 1;
    transform: translate(25%, 25%);
}

.form-footer {
    margin-top: 20px;
    font-size: 12px !important;
}

/* Footer removed as per request, just keeping spacing */

/* Section Styling */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.dopa-title {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(180deg, #FFF 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    position: relative;
}

@media (max-width: 768px) {
    .dopa-title {
        font-size: 38px;
        letter-spacing: 2px;
    }
}

.section-title-left {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: left;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto 40px;
    border-radius: 2px;
}

.content-box {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-dim);
}

.content-box p {
    margin-bottom: 25px;
}

.highlight-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.final-claim {
    font-size: 28px;
    color: #fff;
    margin: 40px 0;
}

.btn-secondary {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary);
    color: #000;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: pulse-anim 2s infinite;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--primary-glow);
    background: #ffe44d;
    /* Lighter yellow on hover */
    border-color: transparent;
}

/* Jornada Section */
.jornada-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.jornada-image-box img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.jornada-copy {
    margin-bottom: 35px;
}

.jornada-copy p {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--text-dim);
}

.jornada-copy strong {
    color: var(--primary);
    font-weight: 700;
}

/* Carousel */
.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    overflow: hidden;
    border-radius: 20px;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    display: block;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    pointer-events: none;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
    font-size: 20px;
}

/* Transformation Section */
#transformation {
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.gold-text {
    color: var(--primary);
    font-weight: 700;
}

.big-btn {
    max-width: 400px;
    margin-top: 20px;
}

/* Animations */
@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.pulse {
    animation: pulse-anim 2s infinite;
}

@keyframes pulse-anim {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

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

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

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

    .jornada-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .jornada-content {
        order: 1;
        text-align: center;
    }

    .section-title-left {
        text-align: center;
    }

    .jornada-image-box {
        order: 2;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 16px;
    }

    .glass-card {
        padding: 25px 20px;
    }

    section {
        padding: 50px 0;
    }

    #hero {
        padding: 100px 0 60px;
    }

    #hero::before {
        background-position: 20% 80%;
        background-size: 300%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 16px;
        font-size: 14px;
        /* Ensure text fits */
        white-space: normal;
        /* Allow wrapping if needed */
    }
}