/* ===========================
   VIVVS OPTIMIZED - Variables y Reset
   Paleta Rompedora: Rapidez + Profesionalismo + Novedad
   =========================== */
:root {
    /* Nueva Paleta de Colores Rompedora */
    --electric-cyan: #00D9FF;
    --deep-purple: #6B21A8;
    --neon-orange: #FF6B35;
    --dark-navy: #0A1929;
    --medium-navy: #1E3A5F;
    --soft-white: #F9FAFB;
    --light-gray: #F3F4F6;
    --medium-gray: #9CA3AF;
    --dark-gray: #374151;
    
    /* Gradientes */
    --gradient-hero: linear-gradient(135deg, #00D9FF 0%, #6B21A8 100%);
    --gradient-cta: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
    --gradient-purple: linear-gradient(135deg, #6B21A8 0%, #8B5CF6 100%);
    
    /* Colores Funcionales */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-cyan: 0 10px 40px rgba(0, 217, 255, 0.3);
    --shadow-orange: 0 10px 40px rgba(255, 107, 53, 0.3);
    --shadow-purple: 0 10px 40px rgba(107, 33, 168, 0.3);
    
    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--soft-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-navy);
}

/* ===========================
   Animaciones Globales
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===========================
   WhatsApp Float Button - OPTIMIZADO PARA CONVERSIONES
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #20BA5A 0%, #1DA851 100%);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 50px rgba(37, 211, 102, 0.8);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}

/* ===========================
   Navbar Optimizado
   =========================== */
.navbar {
    background: var(--dark-navy);
    padding: 1rem 0;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    background: rgba(10, 25, 41, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-vivvs {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition-normal);
}

.brand-vivvs:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all var(--transition-normal);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--electric-cyan);
    transition: width var(--transition-normal);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--electric-cyan);
    transform: translateY(-2px);
}

.btn-cta-nav {
    background: var(--gradient-cta);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-normal);
    border: none;
    box-shadow: var(--shadow-orange);
}

.btn-cta-nav:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
    color: white;
}

/* ===========================
   Hero Section Optimizado
   =========================== */
.hero-section {
    position: relative;
    background: var(--gradient-hero);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: white;
    padding-top: 100px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--neon-orange);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.badge-icon {
    font-size: 1.3rem;
    animation: bounce 2s infinite;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    line-height: 1.1;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--electric-cyan) 0%, white 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--neon-orange);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    max-width: 600px;
}

.hero-price-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid rgba(255, 107, 53, 0.5);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

.price-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.hero-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.35s;
    animation-fill-mode: both;
    max-width: 600px;
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    animation: fadeInUp 1s ease 0.5s;
    animation-fill-mode: both;
}

.hero-guarantee i {
    color: var(--electric-cyan);
    font-size: 1.3rem;
}

.hero-cta {
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta {
    background: var(--gradient-cta);
    border: none;
    padding: 1.2rem 3rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-orange);
    color: white;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-xl);
    color: white;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 1.2rem 3rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-normal);
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--deep-purple);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease 0.6s, floatImage 4s ease-in-out infinite 1s;
    animation-fill-mode: both;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-image img {
    border: 5px solid rgba(0, 217, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3), 0 0 40px rgba(107, 33, 168, 0.2);
    transition: all var(--transition-slow);
}

.hero-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 80px rgba(0, 217, 255, 0.5), 0 0 60px rgba(107, 33, 168, 0.4);
    border-color: rgba(0, 217, 255, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    z-index: 10;
}

/* ===========================
   Section Styles Optimizados
   =========================== */
section {
    padding: 6rem 0;
    position: relative;
}

.section-label {
    display: inline-block;
    color: var(--electric-cyan);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 30px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 3px;
    background: var(--electric-cyan);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* ===========================
   Urgency Badge (Nuevo)
   =========================== */
.urgency-badge {
    background: linear-gradient(135deg, var(--neon-orange) 0%, #FF4500 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-orange);
    animation: pulse 2s infinite;
    margin-bottom: 1.5rem;
}

.urgency-badge i {
    font-size: 1.2rem;
}

/* ===========================
   Stats Section (Nuevo)
   =========================== */
.stats-section {
    background: var(--dark-navy);
    color: white;
    padding: 4rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
    animation: countUp 1s ease;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ===========================
   Problema Section Optimizado
   =========================== */
.problema-section {
    background: var(--light-gray);
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    padding: 1.2rem 0;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid rgba(239, 68, 68, 0.1);
    transition: all var(--transition-normal);
}

.problem-list li:hover {
    transform: translateX(10px);
    background: rgba(239, 68, 68, 0.05);
    padding-left: 1rem;
    border-radius: 10px;
}

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

.problem-list i {
    color: var(--error);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-box {
    background: var(--gradient-purple);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-purple);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: gradientShift 10s ease infinite;
}

/* ===========================
   Solución Section Optimizado
   =========================== */
.solucion-section {
    background: white;
}

.solution-list {
    list-style: none;
    padding: 0;
}

.solution-list li {
    padding: 1.2rem 0;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid rgba(16, 185, 129, 0.1);
    transition: all var(--transition-normal);
}

.solution-list li:hover {
    transform: translateX(10px);
    background: rgba(16, 185, 129, 0.05);
    padding-left: 1rem;
    border-radius: 10px;
}

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

.solution-list i {
    color: var(--success);
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

/* ===========================
   Método Section Optimizado
   =========================== */
.metodo-section {
    background: var(--light-gray);
}

.method-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-hero);
}

.method-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-cyan);
    border-color: var(--electric-cyan);
}

.method-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--gradient-hero);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: var(--shadow-cyan);
}

.method-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(107, 33, 168, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--electric-cyan);
    transition: all var(--transition-normal);
}

.method-card:hover .method-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--gradient-hero);
    color: white;
}

.method-card h4 {
    font-size: 1.4rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.method-card p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* ===========================
   Comparison Table (Nuevo)
   =========================== */
.comparison-section {
    background: white;
    padding: 6rem 0;
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--gradient-hero);
    color: white;
}

.comparison-table th {
    padding: 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    text-align: center;
}

.comparison-table tr:hover {
    background: rgba(0, 217, 255, 0.05);
}

.comparison-table .highlight-col {
    background: rgba(0, 217, 255, 0.1);
    font-weight: 600;
}

/* ===========================
   Guarantee Section (Nuevo)
   =========================== */
.guarantee-section {
    background: var(--gradient-purple);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.guarantee-badge {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-xl);
}

.guarantee-badge i {
    font-size: 4rem;
    color: var(--success);
}

.guarantee-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.guarantee-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.guarantee-feature i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--electric-cyan);
}

/* ===========================
   Bonus Section (Nuevo)
   =========================== */
.bonus-section {
    background: var(--dark-navy);
    color: white;
    padding: 5rem 0;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid var(--neon-orange);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-orange);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '🎁';
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 10rem;
    opacity: 0.1;
}

.bonus-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--neon-orange);
}

.bonus-list {
    list-style: none;
    padding: 0;
}

.bonus-list li {
    padding: 1rem 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.bonus-list i {
    color: var(--success);
    font-size: 1.5rem;
}

.bonus-validity {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    border: 2px dashed var(--neon-orange);
}

/* ===========================
   Planes Section Optimizado
   =========================== */
.planes-section {
    background: var(--light-gray);
}

.pricing-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
    position: relative;
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-xl);
    border-color: var(--electric-cyan);
}

.pricing-card.featured {
    border-color: var(--neon-orange);
    box-shadow: var(--shadow-orange);
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(107, 33, 168, 0.05) 100%);
    border-width: 4px;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-cta);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: var(--shadow-orange);
    animation: pulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.pricing-price del {
    font-size: 1.8rem;
    color: #999;
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    text-decoration-color: var(--neon-orange);
    opacity: 0.7;
    margin-right: 0.5rem;
}

.pricing-price strong {
    display: block;
    font-size: 4rem;
    margin-top: 0.5rem;
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--dark-gray);
}

.pricing-features i {
    color: var(--success);
    font-size: 1.2rem;
}

/* ===========================
   Testimonios Optimizados
   =========================== */
.testimonios-section {
    background: white;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-left: 5px solid var(--electric-cyan);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(0, 217, 255, 0.1);
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-cyan);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--electric-cyan);
}

.testimonial-info h5 {
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.2rem;
}

.testimonial-info p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #FFC107;
    margin-top: 0.5rem;
}

/* ===========================
   FAQ Optimizado
   =========================== */
.faq-section {
    background: var(--light-gray);
}

.accordion-item {
    background: white;
    border: none;
    border-radius: 15px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-button {
    background: white;
    color: var(--dark-navy);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-hero);
    color: white;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* ===========================
   CTA Final Optimizado
   =========================== */
.cta-final-section {
    background: var(--dark-navy);
    padding: 6rem 0;
}

.cta-final-box {
    background: var(--gradient-hero);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    padding: 5rem 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-final-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-final-box h2 {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
}

.cta-final-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Footer Optimizado
   =========================== */
.footer {
    background: var(--dark-navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 2rem;
    border-top: 3px solid var(--electric-cyan);
}

.footer p {
    margin: 0;
}

/* ===========================
   WhatsApp Float Button (Nuevo)
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-float i {
    color: white;
    font-size: 2rem;
}

/* ===========================
   MOBILE OPTIMIZATION (320px - 480px)
   =========================== */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding-top: 80px;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-cta {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .btn-outline-light {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .method-card,
    .pricing-card,
    .testimonial-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .pricing-title {
        font-size: 1.4rem;
    }
    
    .pricing-price {
        font-size: 2rem;
    }
    
    .pricing-features li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    
    .pricing-badge {
        top: -10px;
        right: 10px;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .method-card {
        text-align: center;
    }
    
    .method-number {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .method-icon {
        font-size: 2rem;
    }
    
    .method-card h4 {
        font-size: 1.1rem;
    }
    
    .method-card p {
        font-size: 0.9rem;
    }
    
    .testimonial-card h5 {
        font-size: 1rem;
    }
    
    .testimonial-card .role {
        font-size: 0.8rem;
    }
    
    .testimonial-card p {
        font-size: 0.9rem;
    }
    
    .accordion-button {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .cta-final-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-final-box h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-final-box .lead {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .guarantee-badge {
        font-size: 2.5rem;
    }
    
    .guarantee-title {
        font-size: 1.5rem;
    }
    
    .guarantee-text {
        font-size: 0.9rem;
    }
    
    .guarantee-feature i {
        font-size: 1.8rem;
    }
    
    .guarantee-feature p {
        font-size: 0.85rem;
    }
    
    .bonus-card {
        padding: 1.5rem 1rem;
    }
    
    .bonus-title {
        font-size: 1.3rem;
    }
    
    .bonus-list li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
    }
}

/* ===========================
   TABLET OPTIMIZATION (481px - 768px)
   =========================== */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .btn-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .cta-final-box h2 {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-cta,
    .btn-outline-light {
        width: 100%;
    }
    
    .pricing-card {
        padding: 2.5rem 1.5rem;
    }
    
    .method-card {
        text-align: center;
    }
}

/* ===========================
   Utility Classes
   =========================== */
.text-gradient {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-cyan {
    color: var(--electric-cyan);
}

.text-orange {
    color: var(--neon-orange);
}

.text-purple {
    color: var(--deep-purple);
}

.bg-gradient {
    background: var(--gradient-hero);
}

.shadow-cyan {
    box-shadow: var(--shadow-cyan);
}

.shadow-orange {
    box-shadow: var(--shadow-orange);
}

.shadow-purple {
    box-shadow: var(--shadow-purple);
}


/* Lead Magnet Section Styles */
.lead-magnet-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.lead-magnet-form .form-control {
    padding: 15px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.lead-magnet-form .form-control:focus {
    border-color: var(--electric-cyan);
    box-shadow: 0 0 0 0.2rem rgba(0, 217, 255, 0.25);
}

.lead-magnet-preview {
    position: relative;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.preview-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--neon-orange);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.logo-navbar {
    transition: all 0.3s ease;
}

.logo-navbar:hover {
    transform: scale(1.05);
}

/* ===========================
   NEW LEAD MAGNET SECTION STYLES
   =========================== */
.new-lead-magnet-section {
    background: var(--soft-white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--light-gray);
}

.new-lead-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--dark-navy);
}

.new-lead-title .highlight-orange {
    color: var(--neon-orange); /* Naranja Coral */
}

.new-lead-title .highlight-blue {
    color: var(--electric-cyan); /* Azul Cielo */
}

.new-lead-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.new-lead-form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.form-control-lg {
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--light-gray);
    transition: border-color 0.3s;
}

.form-control-lg:focus {
    border-color: var(--electric-cyan);
    box-shadow: 0 0 0 0.25rem rgba(0, 217, 255, 0.25);
}

.btn-cta-lead {
    background: var(--gradient-cta);
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-orange);
    border: none;
    font-size: 1.1rem;
}

.btn-cta-lead:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
}

/* Responsive adjustments for the new form */
@media (max-width: 767px) {
    .new-lead-title {
        font-size: 2rem;
    }
    .new-lead-form-container {
        padding: 1.5rem;
    }
    .col-md-5 {
        width: 100%;
        margin-bottom: 1rem;
    }
    .col-md-auto {
        width: 100%;
    }
    .btn-cta-lead {
        width: 100%;
    }
}

/* ===========================
   Optimización de Conversión - CTA Mejorado
   =========================== */

/* Animación de pulso más pronunciada para CTAs */
@keyframes pulseCTA {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 15px 50px rgba(255, 107, 53, 0.6);
    }
}

/* Hacer el botón principal más prominente */
.btn-cta {
    animation: pulseCTA 2s ease-in-out infinite;
    font-size: 1.2rem !important;
    padding: 1.3rem 3.5rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Efecto de brillo adicional en hover */
.btn-cta:hover {
    animation: none;
    transform: translateY(-5px) scale(1.08) !important;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.7) !important;
}

/* Botón sticky flotante para móvil */
@media (max-width: 768px) {
    .sticky-cta-mobile {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
        width: 90%;
        max-width: 350px;
        animation: pulseCTA 2s ease-in-out infinite;
    }
}

/* Mejorar visibilidad del botón en navbar */
.btn-cta-nav {
    animation: pulseCTA 2.5s ease-in-out infinite;
    font-weight: 700 !important;
    padding: 0.7rem 1.8rem !important;
}

/* Tracking de conversión Google Ads */
.btn-cta[href*="calendly"],
.btn-cta-nav[href*="calendly"] {
    /* Los eventos de conversión se añadirán via Google Tag Manager */
}

/* Portfolio Section Styles */
.portfolio-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    background: white;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl) !important;
}

.portfolio-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Testimonial Card Enhancements */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.testimonial-header img {
    border: 3px solid var(--electric-cyan);
}

.testimonial-rating {
    color: #FFD700;
    margin-top: 1rem;
}

/* Footer Enhancements - High Legibility Version */
.footer {
    background-color: #050c14 !important; /* Fondo un poco más oscuro para máximo contraste */
    border-top: 2px solid rgba(0, 217, 255, 0.1);
    color: #ffffff !important;
}

.footer h4, .footer h5 {
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer p.text-muted, .footer .text-muted {
    color: #cbd5e1 !important; /* Gris mucho más claro (Slate 300) para legibilidad */
    line-height: 1.6;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cbd5e1 !important;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--electric-cyan) !important;
    transform: translateX(5px);
}

.footer i {
    color: var(--electric-cyan); /* Iconos en cyan para destacar */
    width: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #ffffff !important;
}

.social-links a:hover {
    background: var(--gradient-cta);
    transform: translateY(-5px);
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

hr.border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
    opacity: 1;
}

/* Blog Section Styles */
.blog-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl) !important;
}

.blog-card .btn-link {
    color: var(--neon-orange);
    font-weight: 600;
}

.blog-card .btn-link:hover {
    color: var(--deep-purple);
}


/* ===========================
   Micro-interacciones de Urgencia (Toasts)
   =========================== */
.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    color: #1a3a5c;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid #3b82f6;
    max-width: 320px;
}

.toast-notification.show {
    transform: translateY(0);
}

.toast-icon {
    background: #e0f2fe;
    color: #3b82f6;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-content {
    font-size: 0.9rem;
    line-height: 1.4;
}

.toast-content strong {
    display: block;
    color: #1a3a5c;
}

/* ===========================
   Premium Projects Gallery Styles
   =========================== */
.premium-project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.premium-project-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 217, 255, 0.2);
}

.project-img-container {
    position: relative;
    overflow: hidden;
}

.project-img-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.premium-project-card:hover .project-img-container img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(10, 25, 41, 0.9), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.premium-project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay span {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ===========================
   Animaciones Mejoradas para Micro-interacciones
   =========================== */

/* Pulso en Botones */
@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 8px 50px rgba(255, 107, 53, 0.8);
    }
}

/* Efecto Ripple */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Glow Suave */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
    }
}

/* Bounce Suave */
@keyframes bounce-soft {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Fade In Up */
@keyframes fadeInUp-delay {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shake Suave */
@keyframes shake-soft {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-2px);
    }
    75% {
        transform: translateX(2px);
    }
}

/* Mejoras en Elementos Existentes */
.btn-cta {
    position: relative;
    overflow: hidden;
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta:active::after {
    width: 300px;
    height: 300px;
}

/* Efecto de Hover Mejorado en Tarjetas */
.method-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.method-card:hover {
    animation: bounce-soft 0.6s ease;
}

/* Animación en Iconos */
.method-icon {
    animation: bounce 3s infinite;
}

.method-card:hover .method-icon {
    animation: bounce 0.6s ease;
}

/* Efecto de Glow en Badges */
.urgency-badge {
    animation: glow 2s infinite;
}

/* Efecto de Hover en Enlaces */
a {
    transition: all 0.3s ease;
}

a:hover {
    animation: shake-soft 0.3s ease;
}

/* Animación de Entrada para Elementos */
.fade-in-up {
    animation: fadeInUp-delay 0.8s ease forwards;
}

/* Efecto de Hover en Imágenes */
img {
    transition: all 0.3s ease;
}

img:hover {
    filter: brightness(1.1) drop-shadow(0 10px 20px rgba(0, 217, 255, 0.3));
}

/* Mejora en Formularios */
input, textarea, select {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--electric-cyan);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
    transform: scale(1.02);
}

/* Efecto de Carga */
@keyframes loading {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: loading 2s infinite;
}

/* Efecto de Transición Suave en Secciones */
section {
    animation: fadeInUp 1s ease;
}

/* Hover en Tarjetas de Testimonios */
.testimonial-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.2);
}

/* Efecto de Scroll Suave */
html {
    scroll-behavior: smooth;
}

/* Animación en Números de Estadísticas */
.stat-number {
    animation: countUp 1s ease;
}

/* Efecto de Hover en Botones Secundarios */
.btn-outline-light {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.btn-outline-light:hover::before {
    left: 100%;
}

/* Animación de Entrada en Elementos de Lista */
.problem-list li, .solution-list li {
    transition: all 0.3s ease;
}

.problem-list li:hover, .solution-list li:hover {
    animation: bounce-soft 0.6s ease;
}

/* Efecto de Brillo en Elementos Destacados */
.highlight-box {
    animation: glow 3s infinite;
}

/* Transición Suave en Cambios de Color */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
