/* Variables CSS */
:root {
    --pink: #E91E8C;
    --purple: #7B3FF2;
    --blue: #2196F3;
    --yellow: #FFE600;
    --red: #FF1744;
    --cyan: #00BCD4;
    --green: #4CAF50;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --white: #ffffff;
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial Black', 'Arial Bold', Arial, sans-serif;
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 50%, var(--blue) 100%);
    color: var(--dark);
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-corner {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 10;
}

.discount-badge {
    background: var(--yellow);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-15deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.badge-text {
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    line-height: 1.2;
    color: var(--dark);
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(-15deg) scale(1);
    }
    50% {
        transform: rotate(-15deg) scale(1.05);
    }
}

.main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--yellow);
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.highlight {
    color: var(--yellow);
}

.subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 30px;
}

.benefits-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 500px;
}

.benefits-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 20px;
    color: var(--dark);
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    border-bottom: 2px solid #f0f0f0;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list i {
    font-size: 24px;
    color: var(--purple);
    min-width: 30px;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.phone-frame {
    width: 320px;
    height: 650px;
    background: var(--dark);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--dark);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.phone-header {
    padding: 10px 20px;
    display: flex;
    justify-content: flex-end;
}

.signal-icons {
    display: flex;
    gap: 10px;
    color: var(--white);
    font-size: 12px;
}

.app-content {
    padding: 20px;
}

.app-icon {
    width: 80px;
    height: 80px;
    background: var(--red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.app-icon i {
    font-size: 40px;
    color: var(--white);
}

.app-stats {
    display: flex;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.stat {
    text-align: center;
    color: var(--white);
}

.stat strong {
    display: block;
    font-size: 18px;
}

.stat span {
    font-size: 11px;
    opacity: 0.9;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.grid-item {
    height: 120px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.grid-item-1 {
    background: linear-gradient(135deg, var(--red), var(--pink));
}

.grid-item-2 {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.grid-item-3 {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.grid-item-4 {
    background: linear-gradient(135deg, var(--yellow), var(--red));
}

.wow-badge {
    background: var(--yellow);
    color: var(--dark);
    font-weight: 900;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
}

.arrow {
    position: absolute;
    color: var(--white);
    font-size: 40px;
    animation: bounce 1.5s ease-in-out infinite;
}

.arrow-1 {
    top: 30%;
    right: -20px;
}

.arrow-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 0.3s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

/* Instructions Section */
.instructions {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 40px;
    padding: 50px 30px;
    margin: 40px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.instructions-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.steps {
    display: grid;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.step {
    background: linear-gradient(135deg, var(--purple), var(--blue));
    border-radius: 25px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step:hover::before {
    opacity: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--dark);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    color: var(--white);
}

.step-content h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 5px;
}

.step-content p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    opacity: 0.9;
}

.instagram-handle {
    font-weight: 900;
    font-size: clamp(1rem, 2.5vw, 1.2rem) !important;
}

.step-icon {
    font-size: 30px;
    color: var(--yellow);
}

/* CTA Section */
.cta-section {
    text-align: center;
    position: relative;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--red), var(--pink));
    color: var(--white);
    padding: 20px 50px;
    border-radius: 50px;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 30, 140, 0.6);
}

.cta-button i {
    font-size: 28px;
}

.wow-bubble {
    position: absolute;
    bottom: -40px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wow-bubble span {
    background: var(--yellow);
    color: var(--dark);
    font-weight: 900;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
}

.arrow-curved {
    color: var(--yellow);
    font-size: 30px;
    animation: bounce 1.5s ease-in-out infinite;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--white);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--white);
    color: var(--purple);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .wow-bubble {
        left: 50%;
        transform: translateX(-50%);
        bottom: -50px;
    }
}

@media (max-width: 767px) {
    .discount-badge {
        width: 100px;
        height: 100px;
    }
    
    .badge-text {
        font-size: 12px;
    }
    
    .phone-frame {
        width: 280px;
        height: 570px;
    }
    
    .arrow {
        display: none;
    }
    
    .benefits-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .hero {
        padding: 20px 10px;
    }
    
    .instructions {
        padding: 30px 20px;
    }
    
    .phone-frame {
        width: 250px;
        height: 510px;
    }
    
    .app-icon {
        width: 60px;
        height: 60px;
    }
    
    .app-icon i {
        font-size: 30px;
    }
    
    .grid-item {
        height: 100px;
        font-size: 30px;
    }
}