/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: #0d1b2a;
    color: #333333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #0a2e5c 0%, #0d47a1 50%, #1565c0 100%);
    padding: 1.5rem 0;
    box-shadow: 
        0 8px 32px rgba(13, 71, 161, 0.4),
        0 4px 16px rgba(33, 150, 243, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(255,255,255,0.06) 0%, transparent 35%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255,255,255,0.02) 20px,
            rgba(255,255,255,0.02) 21px
        );
    pointer-events: none;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.03) 25%, transparent 50%, rgba(255,255,255,0.03) 75%, transparent 100%);
    background-size: 600% 600%;
    animation: sweepEffect 6s linear infinite;
    pointer-events: none;
}

@keyframes sweepEffect {
    0% { 
        background-position: -600% 0%; 
        opacity: 0;
    }
    10% { 
        opacity: 0.3;
    }
    50% { 
        background-position: 0% 0%; 
        opacity: 0.5;
    }
    90% { 
        opacity: 0.3;
    }
    100% { 
        background-position: 600% 0%; 
        opacity: 0;
    }
}

.header-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.header-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(255,255,255,0.3));
    border-radius: 50%;
    animation: headerFloat 8s infinite linear;
    box-shadow: 0 0 6px rgba(255,255,255,0.5);
}

.header-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.header-particle:nth-child(2) {
    left: 25%;
    animation-delay: 1s;
    animation-duration: 10s;
}

.header-particle:nth-child(3) {
    left: 45%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.header-particle:nth-child(4) {
    left: 65%;
    animation-delay: 3s;
    animation-duration: 11s;
}

.header-particle:nth-child(5) {
    left: 85%;
    animation-delay: 4s;
    animation-duration: 7s;
}

@keyframes headerFloat {
    0% {
        transform: translateY(100%) rotate(0deg) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90%) rotate(36deg) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-10%) rotate(324deg) scale(1);
    }
    100% {
        transform: translateY(-20%) rotate(360deg) scale(0);
        opacity: 0;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-proyectos,
.logo-flores {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.logo-proyectos:hover,
.logo-flores:hover {
    transform: scale(1.1) rotate(5deg);
}

.brand-text {
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-title {
    font-size: 2.4rem;
    font-weight: 900;
    font-family: 'Oswald', sans-serif;
    margin: 0;
    color: #ffffff;
    letter-spacing: 2px;
}

.tagline {
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    color: #ffffff;
    margin-top: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lawyer-guarantee {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.lawyer-guarantee:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    background: rgba(255,255,255,0.98);
}

.lawyer-logo-space {
    flex-shrink: 0;
}

.lawyer-logo-placeholder {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    border: 2px solid #0d47a1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.lawyer-logo-placeholder:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.guarantee-text {
    color: #1a1a1a;
    text-align: left;
}

.guarantee-phrase {
    font-size: 0.7rem;
    font-weight: 600;
    margin: 0 0 0.2rem 0;
    color: #424242;
}

.lawyer-name {
    font-size: 1.1rem;
    font-weight: 900;
    font-family: 'Oswald', sans-serif;
    margin: 0;
    color: #0d47a1;
    letter-spacing: 0.5px;
}

.lawyer-title {
    font-size: 0.75rem;
    font-weight: 700;
    font-style: italic;
    margin: 0.2rem 0 0 0;
    color: #1976d2;
}

/* Header Responsive Design */
@media (max-width: 1024px) {
    .header-content {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .logo-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .brand-title {
        font-size: 2.2rem;
    }

    .lawyer-name {
        font-size: 1.3rem;
    }

    .lawyer-guarantee {
        width: 85%;
        max-width: 600px;
        margin: 0 auto;
        padding: 0.75rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
        text-align: center;
    }

    .header-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .logo-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .brand-text {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .brand-title {
        font-size: 2rem;
        letter-spacing: 1.5px;
        text-align: center;
    }

    .tagline {
        font-size: 0.8rem;
        text-align: center;
    }

    .lawyer-guarantee {
        padding: 0.6rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .guarantee-text {
        text-align: center;
        width: 100%;
    }

    .lawyer-logo-placeholder {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        margin: 0 auto;
    }

    .lawyer-name {
        font-size: 1.3rem;
        text-align: center;
    }

    .guarantee-phrase,
    .lawyer-title {
        font-size: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header {
        text-align: center;
        padding: 0.8rem 0;
    }

    .header-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .logo-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .brand-text {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .brand-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        text-align: center;
    }

    .tagline {
        font-size: 0.7rem;
        text-align: center;
    }

    .lawyer-guarantee {
        margin: 0 auto;
        padding: 0.5rem 1rem;
        width: 95%;
        max-width: 450px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .guarantee-text {
        text-align: center;
        width: 100%;
    }

    .lawyer-logo-placeholder {
        margin: 0 auto;
    }

    .lawyer-name {
        font-size: 1.2rem;
        text-align: center;
    }

    .guarantee-phrase,
    .lawyer-title {
        text-align: center;
    }
}

/* Header geometric pattern */
.header-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.02) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.01) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255,255,255,0.01) 50%, transparent 60%);
    background-size: 200px 200px, 150px 150px, 100px 100px, 100px 100px;
    background-position: 0 0, 100px 100px, 0 0, 50px 50px;
    animation: patternMove 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes patternMove {
    0% { background-position: 0 0, 100px 100px, 0 0, 50px 50px; }
    100% { background-position: 200px 200px, 300px 300px, 100px 100px, 150px 150px; }
}

/* Main Content */
.main {
    background-color: #e3f2fd;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    background-color: #e3f2fd;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.main-title {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: #0f48a2;
    margin-bottom: 20px;
    letter-spacing: 3px;
    line-height: 1.1;
    text-align: center;
    text-shadow: 0 2px 4px rgba(15, 72, 162, 0.3);
    text-transform: uppercase;
    max-width: 100%;
    word-wrap: break-word;
    hyphens: auto;
    display: block;
    white-space: normal;
}

@keyframes glowPulse {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(59, 130, 246, 0.3),
            0 0 40px rgba(59, 130, 246, 0.2);
        transform: scale(1);
    }
    50% { 
        box-shadow: 
            0 0 40px rgba(59, 130, 246, 0.5),
            0 0 80px rgba(59, 130, 246, 0.3);
        transform: scale(1.02);
    }
}

@keyframes outerGlow {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(0.98);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.03);
    }
}

.activity-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: 1.5px;
    text-align: center;
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.5),
        0 1px 2px rgba(0,0,0,0.3);
    line-height: 1.2;
}

/* Prizes Carousel */
.prizes-carousel {
    margin: 40px 0;
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: linear-gradient(145deg, #1e3c72, #2a5298);
}

.carousel-track {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    width: 20%;
    height: 100%;
    position: relative;
    overflow: hidden;
    opacity: 0.6;
    transform: scale(0.85) translateZ(0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: blur(2px) brightness(0.6);
    will-change: transform, opacity, filter;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1) translateZ(0);
    filter: blur(0px) brightness(1);
    z-index: 2;
}

.carousel-slide:not(.active):hover {
    opacity: 0.8;
    transform: scale(0.9) translateZ(0);
    filter: blur(1px) brightness(0.8);
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide.active .carousel-image {
    transform: scale(1.05) translateZ(0);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        transparent 0%, 
        rgba(0, 0, 0, 0.3) 30%, 
        rgba(0, 0, 0, 0.8) 70%,
        rgba(0, 0, 0, 0.95) 100%
    );
    backdrop-filter: blur(10px);
    color: white;
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.carousel-slide.active .slide-overlay {
    transform: translateY(0);
}

.carousel-slide:hover .slide-overlay {
    transform: translateY(0);
}

.slide-overlay h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 0.8s ease 0.3s both;
}

.slide-overlay p {
    font-size: 16px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    opacity: 0.9;
    animation: slideInUp 0.8s ease 0.5s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Controles del carrusel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 2px solid transparent;
}

.indicator.active {
    background: #3aa6fb;
    box-shadow: 
        0 0 15px rgba(58, 166, 251, 0.6),
        0 0 30px rgba(58, 166, 251, 0.3);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.indicator:hover:not(.active) {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.indicator.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(58, 166, 251, 0.4);
    border-radius: 50%;
    animation: indicatorPulse 2s ease infinite;
}

@keyframes indicatorPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}



/* Efectos especiales adicionales para el carrusel */
.carousel-slide {
    position: relative;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(13, 71, 161, 0.3) 0%,
        transparent 30%,
        transparent 70%,
        rgba(33, 150, 243, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    z-index: 1;
}

.carousel-slide.active::before {
    opacity: 1;
}

/* Efecto de revelado con máscara */
.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    transition: left 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3;
    pointer-events: none;
}

.carousel-slide.active::after {
    left: 100%;
}

/* Purchase Numbers */
.purchase-numbers {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1929 0%, #1e3a8a 50%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.purchase-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.purchase-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: purchaseFloat 6s ease-in-out infinite;
}

.purchase-particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.purchase-particle:nth-child(2) {
    top: 40%;
    right: 30%;
    animation-delay: 1.5s;
}

.purchase-particle:nth-child(3) {
    bottom: 30%;
    left: 10%;
    animation-delay: 3s;
}

.purchase-particle:nth-child(4) {
    top: 60%;
    right: 15%;
    animation-delay: 4.5s;
}

.purchase-particle:nth-child(5) {
    bottom: 20%;
    right: 40%;
    animation-delay: 2s;
}

@keyframes purchaseFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

.purchase-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
}

.purchase-main-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(59, 130, 246, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 4px 20px rgba(59, 130, 246, 0.5);
    }
    100% {
        text-shadow: 0 4px 30px rgba(59, 130, 246, 0.8), 0 0 40px rgba(255, 255, 255, 0.3);
    }
}

.unit-price {
    color: #bfdbfe;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.unit-price i {
    color: #fbbf24;
    font-size: 1.5rem;
}

.price-highlight {
    color: #fbbf24;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.5);
}

.purchase-subtitle {
    color: #cbd5e1;
    font-size: 1.1rem;
    font-style: italic;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
}

.package-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0) scale(1);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.package-card:hover::before {
    opacity: 0.05;
}

.package-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: #3b82f6;
    box-shadow: 
        0 25px 60px rgba(59, 130, 246, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.1);
}

.package-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 10s linear infinite;
}

.package-card:hover .package-glow {
    opacity: 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.package-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 2;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
    }
}

.package-icon i {
    font-size: 32px;
    color: white;
}

.package-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.package-quantity {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 20px;
}

.package-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.currency {
    font-size: 2rem;
    color: #3b82f6;
    font-weight: 700;
}

.amount {
    font-size: 3.5rem;
    color: #1e293b;
    font-weight: 900;
    line-height: 1;
}

.package-features {
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #475569;
    font-size: 0.9rem;
}

.feature i {
    color: #22c55e;
    font-size: 0.8rem;
}

.btn-purchase {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-purchase::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-purchase:hover::before {
    left: 100%;
}

.btn-purchase:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-premium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-premium:hover {
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

/* Special Badges */
.popularity-badge,
.bestseller-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

.bestseller-package {
    border-color: #f59e0b;
}

.bestseller-package:hover {
    border-color: #d97706;
    box-shadow: 
        0 25px 60px rgba(245, 158, 11, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Custom Numbers Section */
.custom-numbers-section {
    position: relative;
    z-index: 3;
}

.custom-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    border: 3px solid #3b82f6;
    box-shadow: 
        0 15px 35px rgba(59, 130, 246, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.custom-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.custom-icon i {
    font-size: 24px;
    color: white;
}

.custom-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.custom-description {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.custom-input-group {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.input-wrapper {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #3b82f6;
    font-size: 1.2rem;
}

.input-wrapper input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-custom-purchase {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-custom-purchase:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

/* ===== FOOTER SECTION ===== */
.footer {
    background: linear-gradient(135deg, #0a2e5c 0%, #0d47a1 50%, #1565c0 100%);
    color: #ffffff;
    padding: 80px 0 0;
    box-shadow: 
        0 -8px 32px rgba(13, 71, 161, 0.4),
        0 -4px 16px rgba(33, 150, 243, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(255,255,255,0.06) 0%, transparent 35%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255,255,255,0.02) 20px,
            rgba(255,255,255,0.02) 21px
        );
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.03) 25%, transparent 50%, rgba(255,255,255,0.03) 75%, transparent 100%);
    background-size: 600% 600%;
    animation: sweepEffect 6s linear infinite;
    pointer-events: none;
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.footer-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(255,255,255,0.3));
    border-radius: 50%;
    animation: footerFloat 8s infinite linear;
    box-shadow: 0 0 6px rgba(255,255,255,0.5);
}

.footer-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.footer-particle:nth-child(2) {
    left: 25%;
    animation-delay: 1s;
    animation-duration: 10s;
}

.footer-particle:nth-child(3) {
    left: 45%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.footer-particle:nth-child(4) {
    left: 65%;
    animation-delay: 3s;
    animation-duration: 11s;
}

.footer-particle:nth-child(5) {
    left: 85%;
    animation-delay: 4s;
    animation-duration: 7s;
}

@keyframes footerFloat {
    0% {
        transform: translateY(100%) rotate(0deg) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90%) rotate(36deg) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-10%) rotate(324deg) scale(1);
    }
    100% {
        transform: translateY(-20%) rotate(360deg) scale(0);
        opacity: 0;
    }
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

/* Footer Logo Section */
.footer-logo-section {
    text-align: center;
}

.footer-brand-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    text-shadow: 
        0 4px 8px rgba(0,0,0,0.3),
        0 2px 4px rgba(59, 130, 246, 0.2);
}

.footer-tagline {
    font-family: 'Raleway', sans-serif;
    color: #bfdbfe;
    margin-top: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 500;
}

/* Footer Sections */
.footer-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 1px;
}

/* Social Links */
.footer-social-section {
    text-align: center;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    color: #ffffff;
}

.social-link i {
    font-size: 1.2rem;
    color: #3b82f6;
}

/* Contact Info */
.footer-contact-section {
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 12px 20px;
    font-size: 1rem;
    color: #bfdbfe;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.contact-item i {
    color: #3b82f6;
    font-size: 1.1rem;
    min-width: 20px;
}

.contact-item a {
    color: #bfdbfe;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffffff;
}

/* Legal Section */
.footer-legal-section {
    text-align: center;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-link {
    color: #bfdbfe;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.legal-link:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 30px 0;
    background: rgba(10, 46, 92, 0.3);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-guarantee {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 10px 20px;
}

.footer-guarantee-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-guarantee-icon i {
    color: white;
    font-size: 1rem;
}

.footer-guarantee-text {
    color: #10b981;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-credits {
    color: #94a3b8;
    font-size: 0.9rem;
    text-align: center;
}

.footer-legal-links {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.footer-legal-text-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-text-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-guarantee {
        justify-content: center;
    }
}

/* ===== CHECK NUMBERS SECTION - MODERN REDESIGN ===== */
.check-numbers {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.check-numbers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.check-numbers .container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.check-numbers h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.check-numbers h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
}

.check-numbers-content {
    text-align: center;
    margin-bottom: 50px;
}

.check-numbers p {
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.check-numbers p:first-of-type {
    font-size: 1.3rem;
    color: #475569;
    font-weight: 600;
    margin-top: 25px;
}

.check-form-wrapper {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.check-form-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #3b82f6);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.6;
    animation: border-pulse 3s ease-in-out infinite;
}

@keyframes border-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.check-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.check-form-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 
        0 15px 30px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.check-form-icon i {
    font-size: 1.8rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.check-form-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.check-form-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.check-form {
    display: flex;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 30px;
}

.email-input-wrapper {
    flex: 1;
    position: relative;
}

.email-input {
    width: 100%;
    padding: 18px 50px 18px 25px;
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.email-input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.email-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 
        0 0 0 4px rgba(59, 130, 246, 0.15),
        0 8px 25px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.email-input:hover {
    border-color: #94a3b8;
    transform: translateY(-1px);
}

.email-input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.email-input:focus + .email-input-icon {
    color: #3b82f6;
}

.btn-check {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 18px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.btn-check::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-check:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.btn-check:hover::before {
    left: 100%;
}

.btn-check:active {
    transform: translateY(-2px) scale(1.01);
}

.check-form-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.check-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.check-feature:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.check-feature i {
    color: #3b82f6;
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.check-feature span {
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
}

#numbers-result {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 2px solid rgba(59, 130, 246, 0.1);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

#numbers-content {
    color: #1e293b;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ===== PROGRESS SECTION ===== */
.progress-section {
    padding: 80px 0;
    background-color: #e3f2fd;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.progress-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.progress-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    animation: progressParticleFloat 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.progress-particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.progress-particle:nth-child(2) {
    top: 60%;
    right: 30%;
    animation-delay: 2s;
}

.progress-particle:nth-child(3) {
    bottom: 30%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes progressParticleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.8;
    }
}

.progress-section .container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.progress-section .section-title {
    color: #333;
    margin-bottom: 40px;
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-info {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.progress-info p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #374151;
}

.progress-info strong {
    color: #3b82f6;
    font-weight: 800;
    font-size: 1.4rem;
}

.progress-bar {
    height: 35px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    overflow: hidden;
    margin: 25px 0;
    border: 3px solid rgba(59, 130, 246, 0.2);
    box-shadow: 
        inset 0 3px 6px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(59, 130, 246, 0.15);
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
    border-radius: 17px;
    transition: width 1s ease-out;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 25px rgba(59, 130, 246, 0.6),
        inset 0 3px 6px rgba(255, 255, 255, 0.3);
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 20px;
    font-style: italic;
}

/* ===== RESPONSIVE DESIGN FOR NEW SECTIONS ===== */
@media (max-width: 768px) {
    .check-numbers {
        padding: 70px 0;
    }
    
    .check-numbers h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .check-numbers h2::after {
        width: 60px;
        height: 3px;
    }
    
    .check-numbers p {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .check-numbers p:first-of-type {
        font-size: 1.2rem;
        margin-top: 20px;
    }
    
    .check-form-wrapper {
        padding: 35px 25px;
        margin: 0 20px;
    }
    
    .check-form-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .check-form-icon i {
        font-size: 1.5rem;
    }
    
    .check-form-title {
        font-size: 1.5rem;
    }
    
    .check-form-subtitle {
        font-size: 1rem;
    }
    
    .check-form {
        flex-direction: column;
        gap: 20px;
    }
    
    .email-input {
        padding: 16px 45px 16px 20px;
        font-size: 1rem;
    }
    
    .btn-check {
        width: 100%;
        padding: 16px 30px;
        font-size: 1rem;
        min-width: auto;
    }
    
    .check-form-features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }
    
    .check-feature {
        padding: 12px;
    }
    
    #numbers-result {
        margin-top: 30px;
        padding: 25px 20px;
    }
    
    #numbers-content {
        font-size: 1rem;
    }
    
    .previous-activities {
        padding: 60px 0;
    }
    
    .activities-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .activity-item {
        padding: 20px;
    }
    
    .progress-section {
        padding: 60px 0;
    }
    
    .progress-section .section-title {
        font-size: 2rem;
    }
    
    .progress-info {
        padding: 25px 20px;
        max-width: 100%;
        margin: 0 20px;
    }
    
    .progress-info p {
        font-size: 1rem;
    }
    
    .progress-bar {
        height: 30px;
        margin: 20px 0;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal h2 {
        font-size: 1.5rem;
        padding: 25px 25px 15px;
    }
    
    .modal .form-group {
        padding: 0 25px;
    }
    
    .purchase-summary {
        margin: 15px 25px;
        padding: 15px;
    }
    
    .btn-confirm {
        width: calc(100% - 50px);
        margin: 15px 25px 25px;
    }
}

@media (max-width: 480px) {
    .header {
        text-align: center;
        padding: 0.8rem 0;
    }

    .header-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .logo-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .brand-text {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .brand-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        text-align: center;
    }

    .tagline {
        font-size: 0.7rem;
        text-align: center;
    }

    .lawyer-guarantee {
        margin: 0 auto;
        padding: 0.5rem 1rem;
        width: 95%;
        max-width: 450px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .guarantee-text {
        text-align: center;
        width: 100%;
    }

    .lawyer-logo-placeholder {
        margin: 0 auto;
    }

    .lawyer-name {
        font-size: 1.2rem;
        text-align: center;
    }

    .guarantee-phrase,
    .lawyer-title {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .check-numbers {
        padding: 50px 0;
    }
    
    .check-numbers h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .check-numbers h2::after {
        width: 50px;
        height: 3px;
    }
    
    .check-numbers p {
        font-size: 1rem;
    }
    
    .check-numbers p:first-of-type {
        font-size: 1.1rem;
    }
    
    .check-form-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
        border-radius: 20px;
    }
    
    .check-form-icon {
        width: 50px;
        height: 50px;
    }
    
    .check-form-icon i {
        font-size: 1.3rem;
    }
    
    .check-form-title {
        font-size: 1.3rem;
    }
    
    .check-form-subtitle {
        font-size: 0.95rem;
    }
    
    .email-input {
        padding: 14px 40px 14px 18px;
        font-size: 0.95rem;
        border-radius: 15px;
    }
    
    .btn-check {
        padding: 14px 25px;
        font-size: 0.95rem;
        border-radius: 15px;
    }
    
    .check-feature {
        padding: 10px;
    }
    
    .check-feature span {
        font-size: 0.9rem;
    }
}

/* ===== INSTANT PRIZES SECTION ===== */
.instant-prizes {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1929 0%, #1e3a8a 50%, #3b82f6 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.instant-prizes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(29, 78, 216, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(10, 25, 41, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.instant-prizes .container {
    position: relative;
    z-index: 2;
}

.instant-prizes .section-title {
    color: #fbbf24;
    margin-bottom: 20px;
    text-shadow: 
        0 0 20px rgba(251, 191, 36, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 3rem;
    position: relative;
}

.instant-prizes .section-title::after {
    content: '💰';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    animation: coinBounce 2s ease-in-out infinite;
}

@keyframes coinBounce {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg);
    }
    50% {
        transform: translateY(-70%) rotate(180deg);
    }
}

.prizes-description {
    color: #e2e8f0;
    font-size: 1.3rem;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.prize-numbers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive design for instant prizes */
@media (max-width: 1200px) {
    .prize-numbers {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .prize-numbers {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .prize-numbers {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .prize-number {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .prize-number-value {
        font-size: 1.3rem;
    }
    
    .prize-amount {
        font-size: 1rem;
    }
    
    .prize-status {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

@media (max-width: 580px) {
    .prize-numbers {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }
    
    .prize-number {
        padding: 20px 15px;
        border-radius: 12px;
        border-width: 3px;
    }
    
    .prize-number-value {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .prize-amount {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .prize-status {
        font-size: 0.8rem;
        padding: 5px 10px;
        border-radius: 12px;
    }
}

@media (max-width: 400px) {
    .prize-numbers {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 5px;
    }
    
    .prize-number {
        padding: 15px 10px;
        border-radius: 10px;
        border-width: 2px;
    }
    
    .prize-number-value {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .prize-amount {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .prize-status {
        font-size: 0.7rem;
        padding: 4px 8px;
        border-radius: 10px;
    }
    
    .instant-prizes .section-title {
        font-size: 2rem;
    }
    
    .prizes-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
}

.prize-number {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 4px solid transparent;
    background-clip: padding-box;
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.4s ease;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.prize-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706, #92400e);
    border-radius: 20px;
    padding: 4px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    -webkit-mask-composite: xor;
}

.prize-number:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 15px 35px rgba(251, 191, 36, 0.3);
}

.prize-number:hover::before {
    animation: borderGlow 1s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% {
        filter: brightness(1) hue-rotate(0deg);
    }
    100% {
        filter: brightness(1.2) hue-rotate(10deg);
    }
}

.prize-number-value {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(30, 41, 59, 0.1);
    position: relative;
}

.prize-number-value::before {
    content: '#';
    color: #fbbf24;
    margin-right: 5px;
    font-size: 2rem;
}

.prize-amount {
    color: #059669;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(5, 150, 105, 0.3);
}

.prize-amount::before {
    content: '🎁 ';
    margin-right: 5px;
}

.prize-status {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Estado ENTREGADO - Ribbon en esquina */
.prize-number.delivered {
    position: relative;
}

.prize-number.delivered::after {
    content: 'ENTREGADO';
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 
        0 4px 12px rgba(220, 38, 38, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid #991b1b;
    z-index: 10;
}

.prize-number.delivered .prize-number-value,
.prize-number.delivered .prize-amount {
    opacity: 0.7;
}

.prize-number.delivered {
    background: linear-gradient(145deg, #f3f4f6 0%, #e5e7eb 100%);
}

/* Estado DISPONIBLE - Glow effect */
.prize-number.available {
    animation: availableGlow 3s ease-in-out infinite;
}

@keyframes availableGlow {
    0%, 100% {
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.15),
            0 5px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.15),
            0 5px 15px rgba(0, 0, 0, 0.1),
            0 0 30px rgba(34, 197, 94, 0.4);
    }
}

.prize-number.available .prize-status {
    color: #059669;
    font-weight: 700;
}

.prize-number.available .prize-status::before {
    content: '✨ ';
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ===============================================
   PARTICIPATE SECTION - TIMELINE DESIGN
   =============================================== */

.participate-section {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.participate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.participate-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.participate-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.participate-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.participate-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
}

.timeline-track {
    position: absolute;
    left: 80px;
    top: 60px;
    bottom: 60px;
    width: 4px;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6, #ec4899);
    border-radius: 2px;
    opacity: 0.3;
    z-index: 1;
}

.timeline-step {
    position: relative;
    margin-bottom: 60px;
    z-index: 2;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-connector {
    position: absolute;
    left: 0;
    top: 30px;
    width: 160px;
    height: 60px;
    display: flex;
    align-items: center;
    z-index: 3;
}

.connector-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.2);
    position: relative;
    z-index: 4;
}

.connector-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.connector-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    margin-left: 20px;
    position: relative;
    opacity: 0.6;
}

.timeline-content {
    margin-left: 180px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 40px;
    left: -20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 20px 10px 0;
    border-color: transparent white transparent transparent;
    filter: drop-shadow(-2px 0 4px rgba(0, 0, 0, 0.1));
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 10px 40px rgba(0, 0, 0, 0.1);
}

.timeline-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.badge-number {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.timeline-badge i {
    font-size: 2rem;
    color: #3b82f6;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-badge i {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    transform: scale(1.1);
}

.timeline-details {
    flex: 1;
}

.timeline-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.timeline-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    border-radius: 25px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    display: inline-flex;
}

.timeline-feature i {
    color: #92400e;
    font-size: 1rem;
}

.timeline-feature span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #92400e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.participate-cta {
    text-align: center;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 600px;
}

.cta-decoration {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%),
        radial-gradient(circle, rgba(168, 85, 247, 0.1) 30%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.participate-cta::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.6s ease;
}

.participate-cta:hover::before {
    left: 100%;
}

.cta-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.cta-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(0);
}

/* ===============================================
   SOCIAL MEDIA SECTION - MODERN DESIGN
   =============================================== */

.social-section {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.social-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.social-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.social-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.platform-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 35px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, transparent);
    transition: all 0.3s ease;
}

.instagram-card::before {
    background: linear-gradient(90deg, #833ab4, #fd1d1d, #fcb045);
}

.facebook-card::before {
    background: linear-gradient(90deg, #4267B2, #1877F2);
}

.youtube-card::before {
    background: linear-gradient(90deg, #FF0000, #CC0000);
}

.tiktok-card::before {
    background: linear-gradient(90deg, #000000, #ff0050, #00f2ea);
}

.platform-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.platform-card:hover::before {
    height: 8px;
}

.platform-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
}

.instagram-card .platform-icon {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.facebook-card .platform-icon {
    background: linear-gradient(135deg, #4267B2, #1877F2);
}

.youtube-card .platform-icon {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.tiktok-card .platform-icon {
    background: linear-gradient(135deg, #000000, #ff0050);
}

.platform-icon i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.3s ease;
}

.platform-card:hover .platform-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.platform-content {
    margin-bottom: 25px;
}

.platform-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-handle {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 12px;
}

.platform-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.platform-stats {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.stat-item i {
    color: #3b82f6;
    font-size: 0.9rem;
}

.platform-button {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.platform-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.platform-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.platform-button:hover::before {
    left: 100%;
}

.social-cta {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.25);
    max-width: 900px;
    margin: 60px auto 0;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.social-cta::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 3s ease;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 
        0 15px 40px rgba(59, 130, 246, 0.4),
        0 5px 15px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: pulse-icon 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.cta-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #3b82f6);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
    animation: rotate-gradient 4s linear infinite;
}

@keyframes rotate-gradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-icon {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 15px 40px rgba(59, 130, 246, 0.4),
            0 5px 15px rgba(59, 130, 246, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% { 
        transform: scale(1.08);
        box-shadow: 
            0 20px 50px rgba(59, 130, 246, 0.6),
            0 8px 25px rgba(59, 130, 246, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

.cta-icon i {
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
}

.cta-description {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 500;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.6s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(59, 130, 246, 0.2);
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-item i {
    color: #3b82f6;
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.benefit-item span {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.benefit-item:hover span {
    color: #0f172a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-section {
        padding: 60px 0 80px;
    }
    
    .social-title {
        font-size: 2.5rem;
    }
    
    .social-subtitle {
        font-size: 1.1rem;
    }
    
    .social-platforms {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 60px;
    }
    
    .platform-card {
        padding: 30px 25px;
    }
    
    .platform-icon {
        width: 70px;
        height: 70px;
    }
    
    .platform-icon i {
        font-size: 2rem;
    }
    
    .platform-stats {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .social-cta {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .social-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .social-title {
        font-size: 2rem;
    }
    
    .platform-card {
        padding: 25px 20px;
    }
    
    .platform-icon {
        width: 60px;
        height: 60px;
    }
    
    .platform-icon i {
        font-size: 1.8rem;
    }
    
    .platform-name {
        font-size: 1.3rem;
    }
    
    .platform-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .social-cta {
        padding: 30px 20px;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
    }
    
    .cta-icon i {
        font-size: 1.5rem;
    }
    
    .benefit-item {
        padding: 12px 15px;
    }
}

/* ===============================================
   PARTICIPATE SECTION - RESPONSIVE DESIGN
   =============================================== */

@media (max-width: 768px) {
    .participate-section {
        padding: 60px 0 80px;
    }
    
    .participate-section .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .participate-title {
        font-size: 2.5rem;
    }
    
    .participate-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .timeline-container {
        max-width: 100%;
        margin: 0 0 60px;
        padding: 0 10px;
    }
    
    .timeline-track {
        left: 30px;
        top: 40px;
        bottom: 40px;
    }
    
    .timeline-connector {
        left: 0;
        top: 20px;
        width: 80px;
    }
    
    .connector-line {
        margin-left: 15px;
    }
    
    .timeline-content {
        margin-left: 100px;
        padding: 25px 20px;
    }
    
    .timeline-badge {
        gap: 10px;
    }
    
    .badge-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline-badge i {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .timeline-title {
        font-size: 1.4rem;
    }
    
    .timeline-description {
        font-size: 0.95rem;
    }
    
    .participate-cta {
        padding: 40px 30px;
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    .participate-section {
        padding: 40px 0 60px;
    }
    
    .participate-section .container {
        padding: 0 10px;
    }
    
    .participate-header {
        margin-bottom: 50px;
    }
    
    .participate-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .participate-subtitle {
        font-size: 1rem;
        padding: 0 5px;
    }
    
    .timeline-container {
        padding: 0 5px;
        margin-bottom: 50px;
    }
    
    .timeline-step {
        margin-bottom: 40px;
    }
    
    .timeline-track {
        left: 25px;
        top: 30px;
        bottom: 30px;
        width: 3px;
    }
    
    .timeline-connector {
        width: 70px;
        top: 15px;
    }
    
    .connector-dot {
        width: 16px;
        height: 16px;
        box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.2);
    }
    
    .connector-dot::before {
        width: 6px;
        height: 6px;
    }
    
    .connector-line {
        margin-left: 12px;
        height: 1.5px;
    }
    
    .timeline-content {
        margin-left: 85px;
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .timeline-content::before {
        top: 25px;
        left: -15px;
        border-width: 8px 15px 8px 0;
    }
    
    .timeline-badge {
        gap: 8px;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }
    
    .badge-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        border-radius: 10px;
    }
    
    .timeline-badge i {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        border-radius: 12px;
    }
    
    .timeline-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .timeline-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .timeline-feature {
        padding: 8px 12px;
        border-radius: 20px;
    }
    
    .timeline-feature span {
        font-size: 0.8rem;
    }
    
    .participate-cta {
        padding: 30px 20px;
        margin: 0 10px;
        border-radius: 20px;
    }
}

/* Ultra-wide mobile screens (max-width: 360px) */
@media (max-width: 360px) {
    .participate-section .container {
        padding: 0 5px;
    }
    
    .participate-title {
        font-size: 1.8rem;
    }
    
    .timeline-container {
        padding: 0;
    }
    
    .timeline-content {
        margin-left: 75px;
        padding: 15px 12px;
    }
    
    .timeline-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .badge-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .timeline-badge i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline-title {
        font-size: 1.1rem;
    }
    
    .timeline-description {
        font-size: 0.85rem;
    }
    
    .timeline-feature span {
        font-size: 0.75rem;
    }
}
