/* ========================================
   XENON - LANDING PAGE
   Estilos CSS Profesionales
   ======================================== */

/* ========== VARIABLES Y RESET ========== */
:root {
    --color-red: #FF0000;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-dark-gray: #1a1a1a;
    --color-medium-gray: #2a2a2a;
    --color-light-gray: #f5f5f5;
    --color-accent: #FF0000;
    
    --font-primary: 'Poppins', sans-serif;
    
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ========== FRANJA DE CUENTA REGRESIVA ========== */
.countdown-banner {
    width: 100%;
    background: rgb(0, 0,0);
    padding: 8px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(251, 220, 220, 0.5);
}

.countdown-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.countdown-icon {
    font-size: 20px;
    animation: pulse 1s infinite;
}

.countdown-text {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: rgb(0, 0,0);
    padding: 6px 15px;
    border-radius: 6px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.time-value {
    font-size: 16px;
    font-weight: 800;
    color: white;
    font-family: 'Courier New', monospace;
}

.time-label {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.time-separator {
    font-size: 14px;
    font-weight: bold;
    color: white;
    margin: 0 2px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .countdown-banner {
        padding: 8px 12px;
    }
    
    .countdown-content {
        gap: 10px;
    }
    
    .countdown-text {
        font-size: 12px;
    }
    
    .countdown-timer {
        padding: 6px 10px;
        gap: 3px;
    }
    
    .time-value {
        font-size: 14px;
    }
    
    .time-label {
        font-size: 8px;
    }
    
    .time-separator {
        font-size: 12px;
        margin: 0 1px;
    }
}

@media (max-width: 480px) {
    .countdown-icon {
        font-size: 18px;
    }
    
    .countdown-text {
        font-size: 11px;
    }
    
    .countdown-timer {
        padding: 5px 8px;
    }
    
    .time-value {
        font-size: 12px;
    }
}

body {
    font-family: var(--font-primary);
    color: var(--color-white);
    background-color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



/* ========== BOTONES ========== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-primary);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
}

.btn-primary:hover {
    background-color: #cc0000;
    border-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    transform: translateY(-2px);
}

.btn-cta {
    background-color: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
}

.btn-cta:hover {
    background-color: #cc0000;
    border-color: #cc0000;
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.4);
}

.btn-primary-large {
    padding: 18px 50px;
    font-size: 18px;
    background-color: var(--color-red);
    color: var(--color-white);
}

.btn-primary-large:hover {
    background-color: #cc0000;
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.4);
    transform: translateY(-3px);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../assets/images/pricing-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    padding: 80px 20px 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.80) 0%, rgba(26, 26, 26, 0.80) 50%, rgba(0, 0, 0, 0.80) 100%);
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-animation {
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255, 0, 0, 0.1) 0%,
        transparent 50%,
        rgba(255, 0, 0, 0.05) 100%
    );
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
    100% { transform: translate(0, 0); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 30px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 14px;
    animation: slideDown 0.8s ease;
}

.badge-icon {
    font-size: 18px;
}

.badge-text {
    letter-spacing: 0.5px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.2s both;
}

.highlight-red {
    color: var(--color-red);
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 22px);
    color: #d0d0d0;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-image {
    margin-top: 60px;
    animation: fadeIn 1s ease 0.8s both;
}

.mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Flechas en forma de balas cruzando */
.swirl-arrows {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.arrow {
    position: absolute;
    font-size: 36px;
    color: var(--color-red);
    font-weight: bold;
    opacity: 0.7;
}

.arrow-1 {
    top: 10%;
    animation: bullet-left-right 4s infinite;
    animation-delay: 0s;
}

.arrow-2 {
    top: 25%;
    animation: bullet-left-right 4s infinite;
    animation-delay: 0.6s;
}

.arrow-3 {
    top: 40%;
    animation: bullet-left-right 4s infinite;
    animation-delay: 1.2s;
}

.arrow-4 {
    top: 55%;
    animation: bullet-left-right 4s infinite;
    animation-delay: 1.8s;
}

.arrow-5 {
    top: 70%;
    animation: bullet-left-right 4s infinite;
    animation-delay: 2.4s;
}

.arrow-6 {
    top: 85%;
    animation: bullet-left-right 4s infinite;
    animation-delay: 3s;
}

@keyframes bullet-left-right {
    0% {
        left: -50px;
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        left: 110%;
        opacity: 0;
    }
}

.mockup-device {
    width: 100%;
    max-width: 400px;
    height: 700px;
    background:  #171515;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.2), 0 0 40px rgba(255, 0, 0, 0.1);
    border: 3px solid var(--color-red);
    position: relative;
}

.mockup-device::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background-color: #171515;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: #171515;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    color: var(--color-red);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========== PRUEBA SOCIAL ========== */
.social-proof {
    background-color: var(--color-dark-gray);
    padding: 80px 20px;
}

.social-proof h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease;
}

.logos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.logo-placeholder {
    padding: 30px;
    background-color: var(--color-medium-gray);
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.client-logo {
    width: 150px;
    height: 100px;
    object-fit: contain;
    filter: none;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-medium-gray);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--color-red);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2);
}

.stars {
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-red);
}

.fade-in {
    animation: fadeInUp 0.8s ease;
}

/* ========== BENEFICIOS ========== */
.benefits {
    background-color: var(--color-black);
    padding: 80px 20px;
}

.benefits h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--color-medium-gray);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition-slow);
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: var(--color-red);
    background-color: rgba(255, 0, 0, 0.05);
}

.hover-lift:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--color-white);
}

.benefit-card p {
    font-size: 15px;
    color: #c0c0c0;
    line-height: 1.8;
}

/* ========== PLANES DE SERVICIO ========== */
.pricing {
    background-color: var(--color-black);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 20px;
    position: relative;
}



.pricing .container {
    position: relative;
    z-index: 2;
}

.pricing h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
}

.pricing .section-subtitle {
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background-color: rgba(26, 26, 26, 0.1);
    border: 2px solid var(--color-medium-gray);
    border-radius: 12px;
    padding: 40px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: var(--color-red);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.2);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, var(--color-medium-gray) 100%);
    border-color: var(--color-red);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.plan-header {
    margin-bottom: 25px;
}

.plan-title {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--color-white);
}

.plan-subtitle {
    font-size: 14px;
    color: #999;
}

.plan-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

.original-price {
    font-size: 14px;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-red);
}

.price-period {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.plan-features {
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: #d0d0d0;
}

.check-icon {
    color: var(--color-red);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-footer {
    text-align: center;
    padding: 30px;
    background-color: var(--color-medium-gray);
    border-radius: 10px;
}

.pricing-footer p {
    margin: 10px 0;
    font-size: 15px;
    color: #d0d0d0;
}

.pricing-footer strong {
    color: var(--color-red);
}

/* ========== PROCESO ========== */
.process {
    background-color: var(--color-black);
    padding: 80px 20px;
}

.process h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
}

.process .section-subtitle {
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.step-card {
    background-color: var(--color-medium-gray);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.step-card:hover {
    border-color: var(--color-red);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.15);
}

.step-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-red);
    margin-bottom: 15px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 15px;
    color: #c0c0c0;
    line-height: 1.8;
}

.step-arrow {
    font-size: 36px;
    color: var(--color-red);
    font-weight: 800;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

/* ========== INTEGRACIONES ========== */
.integrations {
    background-color: var(--color-black);
    padding: 80px 20px 60px;
}

.integrations h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
}

.integrations .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 60px;
}

.integrations-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, var(--color-black) 0%, var(--color-dark-gray) 50%, var(--color-black) 100%);
    padding: 40px 0;
    position: relative;
}

.integrations-scroll {
    display: flex;
    animation: scroll 60s linear infinite;
    gap: 40px;
    padding: 0 40px;
}

.integration-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.logo-placeholder {
    width: 180px;
    height: 120px;
    background-color: transparent;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #999;
    transition: var(--transition);
}

.logo-placeholder:hover {
    background-color: transparent;
    border-color: transparent;
    color: var(--color-white);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.integrations-scroll:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .integrations-scroll {
        gap: 20px;
        padding: 0 20px;
    }
    
    .integration-slot {
        min-width: 140px;
    }
    
    .logo-placeholder {
        width: 120px;
        height: 80px;
        font-size: 12px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
}

@media (max-width: 480px) {
    .integrations {
        padding: 60px 15px 40px;
    }
    
    .integrations-scroll-wrapper {
        padding: 30px 0;
    }
    
    .integrations-scroll {
        gap: 15px;
        padding: 0 15px;
    }
    
    .integration-slot {
        min-width: 110px;
    }
    
    .logo-placeholder {
        width: 100px;
        height: 70px;
        font-size: 11px;
    }
}

/* ========== GARANTÍA ========== */
.guarantee {
    background-color: var(--color-dark-gray);
    padding: 80px 20px;
}

.guarantee h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.guarantee-item {
    text-align: center;
    padding: 30px;
    background-color: var(--color-medium-gray);
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.guarantee-item:hover {
    border-color: var(--color-red);
    transform: translateY(-8px);
}

.guarantee-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.guarantee-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.guarantee-item p {
    font-size: 15px;
    color: #c0c0c0;
    line-height: 1.8;
}

/* ========== CTA FINAL ========== */
.final-cta {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
    padding: 80px 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(32px, 6vw, 52px);
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 40px;
}

.final-buttons {
    margin-bottom: 30px;
}

.final-buttons .btn {
    font-size: 18px;
    padding: 18px 50px;
}

.cta-footer {
    font-size: 14px;
    color: #999;
    margin-top: 30px;
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--color-black);
    border-top: 2px solid var(--color-medium-gray);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--color-red);
}

.footer-column p {
    font-size: 14px;
    color: #c0c0c0;
    line-height: 1.8;
}

.footer-column a {
    color: var(--color-red);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: var(--color-medium-gray);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    font-size: 18px;
}

.social-icon:hover {
    background-color: var(--color-red);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--color-medium-gray);
    padding-top: 30px;
    font-size: 13px;
    color: #888;
}

.footer-bottom a {
    color: var(--color-red);
    text-decoration: none;
    margin: 0 10px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ========== BOTÓN FLOTANTE WHATSAPP ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 0;
    z-index: 1000;
    animation: slideIn 0.5s ease;
    display: flex;
    align-items: center;
    gap: 0;
    padding-right: 0;
}

.whatsapp-tooltip {
    background-color: var(--color-red);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
    position: relative;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    order: 2;
    margin-right: 0;
}

.whatsapp-tooltip.visible {
    opacity: 1;
    visibility: visible;
    animation: fadeInScale 0.3s ease;
}

/* Puntita del globo apuntando al botón (ahora a la derecha) */
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--color-red);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.whatsapp-float a {
    display: flex;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 0;
    border-radius: 50% 0 0 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    animation: pulse 2s ease infinite;
    flex-shrink: 0;
    order: 3;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .pricing-card.featured {
        transform: scale(1.02);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-15px);
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .benefits-grid {
        display: flex;
        justify-content: center;
        position: relative;
        height: 350px;
        margin-bottom: 40px;
    }
    
    .benefit-card {
        position: absolute;
        width: calc(100% - 40px);
        max-width: 320px;
        opacity: 0;
        transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.6s ease;
        transform: scale(0.8);
        box-shadow: none;
        pointer-events: none;
    }
    
    .benefit-card.active {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(255, 0, 0, 0.3);
        pointer-events: auto;
        z-index: 2;
    }
    
    .benefit-card.prev {
        opacity: 0.3;
        transform: translateX(-50px) scale(0.9);
        z-index: 1;
    }
    
    .benefit-card.next {
        opacity: 0.3;
        transform: translateX(50px) scale(0.9);
        z-index: 1;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-15px);
    }
    
    .logos-container {
        display: flex;
        overflow-x: scroll;
        gap: 20px;
        margin-bottom: 60px;
        padding: 20px 0;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        /* Ocultar scrollbar */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .logos-container::-webkit-scrollbar {
        display: none;
    }
    
    .logos-carousel-infinite {
        animation: none;
    }
    
    .logo-item {
        flex: 0 0 140px;
        height: 120px;
    }
    
    .logo-placeholder {
        padding: 20px;
        font-size: 12px;
    }
    
    .testimonials-container {
        display: flex;
        justify-content: center;
        position: relative;
        height: 350px;
        margin-bottom: 40px;
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        position: absolute;
        width: calc(100% - 40px);
        max-width: 320px;
        opacity: 0;
        transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.6s ease;
        transform: scale(0.8);
        box-shadow: none;
        pointer-events: none;
    }
    
    .testimonial-card.active {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(255, 0, 0, 0.3);
        pointer-events: auto;
        z-index: 2;
    }
    
    .testimonial-card.prev {
        opacity: 0.3;
        transform: translateX(-50px) scale(0.9);
        z-index: 1;
    }
    
    .testimonial-card.next {
        opacity: 0.3;
        transform: translateX(50px) scale(0.9);
        z-index: 1;
    }
    
    .guarantee-features {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        height: 300px;
        margin-bottom: 40px;
    }
    
    .guarantee-item {
        position: absolute;
        width: calc(100% - 40px);
        max-width: 300px;
        opacity: 0;
        transition: opacity 0.8s ease, transform 0.8s ease;
        transform: scale(0.7) rotateY(60deg);
        pointer-events: none;
    }
    
    .guarantee-item.active {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
        pointer-events: auto;
        z-index: 3;
    }
    
    .guarantee-item.prev {
        opacity: 0.4;
        transform: scale(0.85) rotateY(-45deg) translateX(-60px);
        z-index: 1;
    }
    
    .guarantee-item.next {
        opacity: 0.4;
        transform: scale(0.85) rotateY(45deg) translateX(60px);
        z-index: 1;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 0;
        flex-direction: row;
        gap: 0;
        align-items: center;
    }
    
    .whatsapp-tooltip {
        padding: 10px 14px;
        font-size: 12px;
        white-space: normal;
        max-width: 120px;
        order: 2;
    }
    
    .whatsapp-tooltip::after {
        right: -6px;
        border-left: 6px solid var(--color-red);
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
    }

    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .discount-badge {
        flex-direction: column;
        padding: 10px 20px;
        gap: 8px;
        font-size: 12px;
    }
    
    .featured-badge {
        font-size: 10px;
        top: 15px;
        right: -25px;
    }

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
        padding: 60px 15px 40px;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .mockup-device {
        max-width: 100%;
        height: 400px;
    }
    
    .hero-buttons {
        gap: 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-primary-large {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    h2 {
        font-size: 28px !important;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .benefit-card,
    .guarantee-item,
    .step-card {
        padding: 25px;
    }
    
    .benefit-icon,
    .step-icon {
        font-size: 36px;
    }
    
    .guarantee-icon {
        font-size: 36px;
    }
    
    .benefit-card h3,
    .step-card h3,
    .guarantee-item h3 {
        font-size: 18px;
    }
    
    .plan-price {
        padding: 15px 0;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .process {
        padding: 60px 15px;
    }
    
    .guarantee {
        padding: 60px 15px;
    }
    
    .pricing {
        padding: 60px 15px;
        background-attachment: scroll;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-column h4 {
        font-size: 16px;
    }
    
    .footer-column p {
        font-size: 13px;
    }
}

/* ========== ANIMACIONES ADICIONALES ========== */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-scale {
    animation: fadeInScale 0.6s ease;
}


/* ========== PRECIO EN PESOS ARGENTINOS ========== */
.price-ars-converted {
    display: block;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    text-align: center;
}

.ars-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.ars-price {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-red);
}

/* ========== INFORMACIÓN DE PAGO (TEXTO) ========== */
.payment-info {
    margin-bottom: 30px;
    padding: 12px;
    background-color: rgba(255, 0, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    text-align: center;
}

.payment-text {
    font-size: 13px;
    color: #d0d0d0;
    font-weight: 500;
}

/* ========== DOTS DEL CARRUSEL ========== */
.carousel-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.dot-slider {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-slider:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.dot-slider.active {
    background-color: var(--color-red);
    transform: scale(1.2);
}

/* ========== CARRUSEL MOBILE ========== */
/* En mobile, convertir grid a carrusel horizontal */
@media (max-width: 768px) {
    .carousel-dots {
        display: flex;
    }
    
    #pricingGrid {
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 0 20px;
        margin: 0 -20px;
        scroll-behavior: smooth;
        /* Ocultar scrollbar */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    #pricingGrid::-webkit-scrollbar {
        display: none;
    }
    
    .pricing-card {
        flex: 0 0 calc(100vw - 60px);
        scroll-snap-align: center;
        scroll-snap-stop: always;
        max-width: calc(100vw - 60px);
    }
    
    .pricing-card:hover {
        transform: none;
        border-color: var(--color-medium-gray);
        box-shadow: none;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: none;
    }
}

