/* ===== VARIABLES Y CONFIGURACIÓN GENERAL ===== */
:root {
    --primary-dark: #CC9E00;
    --primary-main: #FFC800;
    --primary-light: #FFD740;
    --accent-success: #4CAF50;
    --accent-warning: #FF9800;
    --accent-danger: #F44336;
    --neutral-dark: #212121;
    --neutral-medium: #757575;
    --neutral-light: #E0E0E0;
    --white: #ffffff;
    --black: #000000;
    --font-primary: 'Poppins', sans-serif;
}

/* ===== ESTILOS GENERALES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--neutral-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.section-padding {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--neutral-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--neutral-medium);
    max-width: 600px;
    margin: 0 auto;
}

.text-highlight {
    color: var(--primary-main);
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(33, 33, 33, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(33, 33, 33, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-text {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-main);
    line-height: 1;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--neutral-light);
    margin-top: 2px;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-main) !important;
}

/* ===== BOTONES ===== */
.btn-tickeamos-primary {
    background: linear-gradient(135deg, var(--primary-main), var(--primary-light));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--neutral-dark);
    border-radius: 12px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-tickeamos-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-main));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 200, 0, 0.3);
    color: var(--neutral-dark);
    text-decoration: none;
}

.btn-tickeamos-outline {
    background: transparent;
    border: 2px solid var(--primary-main);
    color: var(--primary-main);
    border-radius: 12px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-tickeamos-outline:hover {
    background: var(--primary-main);
    color: var(--neutral-dark);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-tickeamos-outline-warning {
    background: transparent;
    border: 2px solid var(--primary-main);
    color: var(--primary-main);
    border-radius: 12px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    /*display: inline-block;*/
    text-align: center;
}

.btn-tickeamos-outline-warning:hover {
    background: var(--primary-main);
    color: var(--neutral-dark);
    transform: translateY(-2px);
    text-decoration: none;
}

/* ===== TARJETAS GLASSMORPHISM ===== */
.tickeamos-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tickeamos-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ===== HERO SECTION ===== */

.hero-section {
    background: linear-gradient(135deg, rgba(33, 33, 33, 0.9), rgba(33, 33, 33, 0.8)), url('../../images/hero_section.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[IMAGE_8]') center/cover no-repeat;
    opacity: 0.1;
}

.hero-title {
    font-weight: 700;
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-light);
    margin-bottom: 30px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
}

/* ===== TICKET ANIMATION ===== */
.ticket {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ticket-header {
    background: linear-gradient(135deg, var(--primary-main), var(--primary-light));
    padding: 20px;
    text-align: center;
    color: var(--neutral-dark);
}

.ticket-header h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.ticket-price {
    font-size: 2rem;
    font-weight: 700;
}

.ticket-body {
    padding: 20px;
}

.ticket-progress {
    margin: 20px 0;
}

.progress {
    height: 8px;
    background-color: var(--neutral-light);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(135deg, var(--primary-main), var(--primary-light));
    border-radius: 4px;
}

.ticket-numbers {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 0.9rem;
    color: var(--neutral-medium);
}

/* ===== RIFAS ===== */
.raffle-card {
    height: 100%;
    transition: transform 0.3s ease;
}

.raffle-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.raffle-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.raffle-card:hover .raffle-image img {
    transform: scale(1.05);
}

.raffle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-main);
    color: var(--neutral-dark);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.raffle-badge.popular {
    background: var(--accent-warning);
    color: var(--white);
}

.raffle-content h3 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--neutral-dark);
}

.raffle-description {
    color: var(--neutral-medium);
    margin-bottom: 15px;
}

.raffle-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.raffle-price .price {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-main);
}

.raffle-price .ticket-price {
    color: var(--neutral-medium);
    font-size: 0.9rem;
}

.raffle-progress {
    margin-bottom: 15px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--neutral-medium);
}

.raffle-time {
    display: flex;
    align-items: center;
    color: var(--neutral-medium);
    font-size: 0.9rem;
}

.raffle-time i {
    margin-right: 5px;
    color: var(--primary-main);
}

/* ===== CÓMO FUNCIONA ===== */
.step-card {
    padding: 30px 20px;
}

.step-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-main), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-dark);
    font-size: 2.5rem;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--neutral-dark);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.step-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--neutral-dark);
}

.step-card p {
    color: var(--neutral-medium);
}

/* ===== GANADORES ===== */
/*.winner-card {
    height: 100%;
}

.winner-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--primary-light);
}

.winner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.winner-content h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--neutral-dark);
}

.winner-prize {
    color: var(--primary-main);
    font-weight: 600;
    margin-bottom: 15px;
}

.winner-quote {
    font-style: italic;
    color: var(--neutral-medium);
    margin-bottom: 15px;
}

.winner-date {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-medium);
    font-size: 0.9rem;
}

.winner-date i {
    margin-right: 5px;
    color: var(--primary-main);
}*/

/* ===== NOSOTROS ===== */
.about-image {
    position: relative;
}

.about-card {
    overflow: hidden;
}

.features-list {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.feature-item span {
    color: var(--neutral-dark);
    font-weight: 500;
}

/* ===== SECCIÓN ACERCA ===== */
.about-image-container {
    overflow: hidden;
    border-radius: 16px;
}

.about-image-container img {
    transition: transform 0.3s ease;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

/* ===== TIMELINE TUTORIAL ===== */
.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-main), var(--primary-light));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-main), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-dark);
    font-size: 2rem;
    z-index: 2;
    flex-shrink: 0;
    margin: 0 30px;
}

.timeline-content {
    flex: 1;
    max-width: 400px;
    padding: 30px;
}

.timeline-header {
    margin-bottom: 15px;
}

.timeline-header h4 {
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 5px;
}

.timeline-subtitle {
    color: var(--primary-main);
    font-weight: 600;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-main), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--neutral-dark);
    font-size: 2rem;
}

.feature-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--neutral-dark);
}

.feature-card p {
    color: var(--neutral-medium);
    font-size: 0.9rem;
}

/* ===== PLANES DE PRECIOS ===== */
.pricing-card {
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-main);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.premium {
    background: linear-gradient(135deg, rgba(255, 200, 0, 0.05), rgba(255, 215, 64, 0.1));
}

.pricing-header {
    text-align: center;
    padding: 30px 20px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-main);
    color: var(--neutral-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-body {
    padding: 30px;
}

.pricing-body .display-5 {
    font-weight: 700;
    color: var(--neutral-dark);
}

.feature-list {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item span {
    color: var(--neutral-dark);
    font-weight: 500;
}

/* ===== FORMULARIO DE CONTACTO ===== */
.contact-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 8px;
    display: block;
}

.form-control {
    border: 1px solid var(--neutral-light);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
    border-color: var(--primary-main);
    box-shadow: 0 0 0 0.2rem rgba(255, 200, 0, 0.25);
    background: var(--white);
}

.contact-info {
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-main), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--neutral-dark);
    font-size: 1.5rem;
}

.contact-info h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--neutral-dark);
}

.contact-info p {
    color: var(--neutral-medium);
    margin-bottom: 5px;
}

/* ===== ALERTAS ===== */
.alert-info {
    background: rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.2);
    color: var(--neutral-dark);
}

.alert-info h5 {
    color: #1976d2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        justify-content: flex-start;
    }
    
    .timeline-icon {
        margin: 0 30px 0 0;
    }
    
    .timeline-content {
        max-width: calc(100% - 110px);
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 767.98px) {
    .contact-form {
        padding: 30px 20px;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 20px 0 0;
    }
    
    .timeline-content {
        max-width: calc(100% - 80px);
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 15px 0 0;
    }
    
    .timeline-content {
        max-width: calc(100% - 65px);
        padding: 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--neutral-dark) 0%, #333 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[IMAGE_9]') center/cover no-repeat;
    opacity: 0.1;
}

.cta-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .brand-text {
        font-size: 1.5rem;
    }
}