/* ============================================
   LANDING REVOLUCIONARIA - TITANIATECH
   Estilos principales para index-revolucion
   ============================================ */

:root {
    --primary-orange: #fa510b;
    --secondary-orange: #fa930a;
    --primary-hover: #e64a0a;
    --dark-bg: #0a0a0a;
    --dark-card: #1a1a1a;
    --dark-surface: #1e1e1e;
    --dark-border: #2a2a2a;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    --gradient-primary: linear-gradient(135deg, #fa510b, #fa930a);
    --gradient-dark: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    --shadow-glow: 0 0 40px rgba(250, 81, 11, 0.2);
    --shadow-glow-intense: 0 0 60px rgba(250, 81, 11, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   NAVBAR MINIMALISTA Y POTENTE
============================================ */
.navbar {
    background: rgba(10, 10, 10, 0.98) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(250, 81, 11, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    box-shadow: var(--shadow-glow);
    border-bottom-color: rgba(250, 81, 11, 0.3);
}

.navbar-brand img {
    height: 50px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--primary-orange) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}

/* Estilos del dropdown del navbar */
.navbar .dropdown-menu {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(250, 81, 11, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                0 4px 16px rgba(250, 81, 11, 0.2);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.navbar .dropdown-item {
    color: #f5f5f5;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: linear-gradient(135deg, #fa510b 0%, #fa930a 100%);
    color: #ffffff;
}

.navbar .nav-link.dropdown-toggle {
    color: #f5f5f5;
}

.navbar .nav-link.dropdown-toggle:hover {
    color: #fa510b;
}

/* ============================================
   MEGAMENU - SOLUCIONES
============================================ */
.megamenu-parent {
    position: relative;
}

.megamenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(250, 81, 11, 0.3);
    border-radius: 16px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 8px 32px rgba(250, 81, 11, 0.2);
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.megamenu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(250, 81, 11, 0.3);
}

.megamenu::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #1a1a1a;
}

.megamenu-parent:hover .megamenu {
    opacity: 1;
    visibility: visible;
}

.megamenu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.megamenu-column h6 {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(250, 81, 11, 0.2);
    display: flex;
    align-items: center;
}

.megamenu-column h6 i {
    margin-right: 0.5rem;
}

.megamenu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.megamenu-column ul li {
    margin-bottom: 0.25rem;
}

.megamenu-column ul li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    color: #f5f5f5;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.megamenu-column ul li a:hover {
    background: linear-gradient(135deg, rgba(250, 81, 11, 0.15), rgba(250, 147, 10, 0.1));
    color: var(--primary-orange);
    transform: translateX(5px);
}

.megamenu-column ul li a i {
    font-size: 1rem;
    color: var(--primary-orange);
    opacity: 0.7;
    width: 20px;
    text-align: center;
}

.megamenu-column ul li a:hover i {
    opacity: 1;
}

/* Megamenu Responsive */
@media (max-width: 992px) {
    .megamenu {
        position: static;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(250, 81, 11, 0.2);
        padding: 1rem;
    }

    .megamenu::before,
    .megamenu::after {
        display: none;
    }

    .megamenu-parent.show .megamenu {
        display: block;
    }

    .megamenu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .megamenu-column h6 {
        font-size: 0.9rem;
    }

    .megamenu-column ul li a {
        padding: 0.5rem 0.5rem;
        font-size: 0.85rem;
    }
}

.cta-button {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white !important;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(250, 81, 11, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(250, 81, 11, 0.5);
    color: white !important;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* ============================================
   HERO SECTION REVOLUCIONARIO
   "Ve de pesca, tu TianiX trabaja"
============================================ */
.hero-revolucion {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background:
        radial-gradient(circle at 20% 50%, rgba(250, 81, 11, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(250, 147, 10, 0.1) 0%, transparent 50%),
        var(--dark-bg);
    overflow: hidden;
    padding-top: 90px;
}

.hero-revolucion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(250,81,11,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: float 25s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-20px) translateX(10px); }
    66% { transform: translateY(20px) translateX(-10px); }
}

.hero-content-revolucion {
    position: relative;
    z-index: 2;
}

.hero-pretitle {
    display: inline-block;
    background: rgba(250, 81, 11, 0.1);
    border: 1px solid rgba(250, 81, 11, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(250, 81, 11, 0.2); }
    50% { box-shadow: 0 0 30px rgba(250, 81, 11, 0.4); }
}

.hero-title-revolucion {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fa930a 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-slide 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-slide {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle-revolucion {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 90%;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.cta-primary-revolucion {
    background: var(--gradient-primary);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    color: white !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 15px 40px rgba(250, 81, 11, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.cta-primary-revolucion:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(250, 81, 11, 0.6);
}

.cta-secondary-revolucion {
    background: transparent;
    border: 2px solid var(--primary-orange);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: var(--primary-orange) !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.cta-secondary-revolucion:hover {
    background: var(--gradient-primary);
    color: white !important;
    border-color: transparent;
    transform: translateY(-3px);
}

.hero-trust-badges {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.hero-visual-revolucion {
    position: relative;
}

.split-screen-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.split-screen-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.split-screen-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow-intense);
}

.split-screen-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-screen-label {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
}

.split-you {
    border: 3px solid var(--primary-orange);
}

.split-tianix {
    border: 3px solid #10b981;
}

/* ============================================
   HERO CAROUSEL - ESTILOS PERSONALIZADOS
============================================ */
.carousel {
    height: 100vh;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 1s;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.hero-slide-content {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 30px;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(250, 81, 11, 0.3);
    transition: all 0.5s ease;
    border: 2px solid rgba(250, 81, 11, 0.2);
}

.hero-main-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.7),
        0 0 70px rgba(250, 81, 11, 0.5);
    border-color: rgba(250, 81, 11, 0.4);
}

/* Indicadores del carrusel personalizados */
.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators [data-bs-target].active {
    width: 40px;
    border-radius: 6px;
    background: var(--gradient-primary);
    border-color: rgba(250, 81, 11, 0.5);
}

/* Controles del carrusel */
.carousel-control-prev,
.carousel-control-next {
    width: 80px;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(250, 81, 11, 0.4);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(250, 81, 11, 0.6);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--primary-orange);
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(250, 81, 11, 0.8);
    border-color: var(--primary-orange);
}

/* Responsive del carrusel */

/* Pantallas muy grandes (1920px+) - Mejor distribución */
@media (min-width: 1920px) {
    .hero-revolucion .container {
        max-width: 100% !important;
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .hero-content-revolucion {
        padding-right: 4rem;
    }

    .hero-visual-revolucion {
        padding-left: 4rem;
    }

    .hero-title-revolucion {
        font-size: 5rem;
    }

    .carousel-control-prev {
        left: 2rem;
    }

    .carousel-control-next {
        right: 2rem;
    }
}

/* Pantallas grandes (1400px+) - Distribución óptima */
@media (min-width: 1400px) {
    .hero-revolucion .container {
        max-width: 100% !important;
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .hero-revolucion .row {
        gap: 4rem;
        justify-content: center;
        align-items: center;
    }

    .hero-content-revolucion {
        padding-right: 3rem;
        max-width: none;
    }

    .hero-visual-revolucion {
        padding-left: 3rem;
    }

    .hero-title-revolucion {
        font-size: 4.5rem;
    }

    .hero-subtitle-revolucion {
        max-width: none;
    }

    .carousel-control-prev {
        left: 1rem;
    }

    .carousel-control-next {
        right: 1rem;
    }
}

/* Laptops y pantallas medianas (1200px - 1400px) */
@media (max-width: 1400px) {
    .hero-title-revolucion {
        font-size: 3.5rem;
        line-height: 1.15;
    }

    .hero-subtitle-revolucion {
        font-size: 1.2rem;
    }

    .hero-main-image {
        max-width: 500px;
    }
}

/* Laptops pequeñas (993px - 1199px) */
@media (max-width: 1199px) {
    .hero-title-revolucion {
        font-size: 3rem;
        line-height: 1.2;
    }

    .hero-subtitle-revolucion {
        font-size: 1.1rem;
    }

    .hero-main-image {
        max-width: 450px;
    }

    .hero-pretitle {
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
    }

    .cta-primary-revolucion {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }

    .cta-secondary-revolucion {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

/* Tablets (768px - 992px) */
@media (max-width: 992px) {
    .hero-main-image {
        max-width: 100%;
        border-radius: 20px;
    }

    .carousel {
        height: auto;
        min-height: 100vh;
    }

    .hero-slide-content {
        padding: 3rem 0;
    }

    .hero-title-revolucion {
        font-size: 2.5rem;
        line-height: 1.25;
    }

    .hero-subtitle-revolucion {
        font-size: 1.05rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cta-primary-revolucion,
    .cta-secondary-revolucion {
        width: 100%;
        justify-content: center;
    }
}

/* Móviles grandes (577px - 767px) */
@media (max-width: 767px) {
    .hero-title-revolucion {
        font-size: 2.2rem;
    }

    .hero-subtitle-revolucion {
        font-size: 1rem;
    }

    .hero-image-wrapper {
        margin-top: 2rem;
    }
}

/* Móviles pequeños (hasta 576px) */
@media (max-width: 576px) {
    .hero-main-image {
        border-radius: 15px;
    }

    .hero-title-revolucion {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle-revolucion {
        font-size: 0.95rem;
    }

    .hero-pretitle {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .cta-primary-revolucion,
    .cta-secondary-revolucion {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 35px;
        height: 35px;
    }

    .carousel-indicators {
        bottom: 15px;
    }

    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
    }

    .carousel-indicators [data-bs-target].active {
        width: 25px;
    }
}

/* ============================================
   SECCIÓN: MIENTRAS TÚ VIVES, TU TIANIX TRABAJA
============================================ */
.lifestyle-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
    position: relative;
}

.section-pretitle {
    text-align: center;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #fa930a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 5rem;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

/* Responsive para lifestyle grid */
@media (max-width: 1200px) {
    .lifestyle-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 2.5rem;
    }

    .lifestyle-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .lifestyle-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lifestyle-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .lifestyle-image {
        height: 250px;
    }

    .lifestyle-content {
        padding: 2rem;
    }
}

.lifestyle-card {
    background: var(--gradient-dark);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(250, 81, 11, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.lifestyle-card:hover {
    transform: translateY(-15px);
    border-color: rgba(250, 81, 11, 0.4);
    box-shadow: var(--shadow-glow-intense);
}

.lifestyle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.lifestyle-card:hover::before {
    transform: scaleX(1);
}

.lifestyle-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.lifestyle-card:hover .lifestyle-image {
    transform: scale(1.05);
}

.lifestyle-content {
    padding: 2.5rem;
}

.lifestyle-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.lifestyle-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.lifestyle-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.lifestyle-benefit {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   SECCIÓN: EL NUEVO NÚMERO PERSONAL
============================================ */
.nuevo-numero-section {
    padding: 8rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.nuevo-numero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(250, 81, 11, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
}

.comparison-side {
    background: var(--gradient-dark);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.comparison-side.antes {
    border-color: rgba(239, 68, 68, 0.3);
}

.comparison-side.despues {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: var(--shadow-glow);
}

.comparison-side:hover {
    transform: translateY(-10px);
}

.comparison-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-label.antes {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.comparison-label.despues {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.comparison-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.comparison-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li i {
    font-size: 1.2rem;
}

.comparison-vs {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-orange);
    text-align: center;
}

/* ============================================
   SECCIÓN: GALERÍA DE TIANIX
============================================ */
.tianix-gallery-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--dark-card) 0%, var(--dark-bg) 100%);
}

.tianix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.tianix-card {
    background: var(--gradient-dark);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(250, 81, 11, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.tianix-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(250, 81, 11, 0.5);
    box-shadow: var(--shadow-glow-intense);
}

.tianix-image-container {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(250, 81, 11, 0.1), rgba(250, 147, 10, 0.05));
}

.tianix-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tianix-card:hover .tianix-image {
    transform: scale(1.1);
}

.tianix-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tianix-info {
    padding: 1.5rem;
}

.tianix-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.tianix-role {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.tianix-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tianix-industry-tag {
    background: rgba(250, 81, 11, 0.1);
    color: var(--text-muted);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
}

.tianix-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.tianix-cta-text {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
}

.tianix-cta i {
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.tianix-card:hover .tianix-cta i {
    transform: translateX(5px);
}

/* ============================================
   CALCULADORA DE LIBERTAD
============================================ */
.calculator-section {
    padding: 8rem 0;
    background: var(--dark-card);
    position: relative;
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--gradient-dark);
    padding: 4rem;
    border-radius: 30px;
    border: 2px solid rgba(250, 81, 11, 0.2);
    box-shadow: var(--shadow-glow);
}

.calculator-input-group {
    margin-bottom: 3rem;
}

.calculator-label {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.calculator-input {
    width: 100%;
    background: rgba(10, 10, 10, 0.5);
    border: 2px solid rgba(250, 81, 11, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-align: center;
    transition: all 0.3s ease;
}

.calculator-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 30px rgba(250, 81, 11, 0.3);
}

.calculator-result {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 2rem;
    display: none;
}

.calculator-result.show {
    display: block;
    animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calculator-result-number {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.calculator-result-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

/* ============================================
   SECCIÓN: SOLUCIONES SLIDE REVEAL
============================================ */
.soluciones-section {
    padding: 8rem 0;
    background: var(--dark-card);
    position: relative;
    overflow: hidden;
}

.soluciones-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(250, 81, 11, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(250, 147, 10, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.soluciones-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.solucion-card {
    position: relative;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark-surface);
    border: 2px solid rgba(250, 81, 11, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.solucion-card:hover {
    transform: translateY(-10px);
    border-color: rgba(250, 81, 11, 0.5);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(250, 81, 11, 0.3);
}

.solucion-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.solucion-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.solucion-card:hover .solucion-image {
    transform: scale(1.1);
}

/* Overlay gradiente que se desliza desde abajo */
.solucion-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0%;
    background: linear-gradient(
        to top,
        rgba(250, 81, 11, 0.98) 0%,
        rgba(250, 147, 10, 0.95) 50%,
        rgba(250, 81, 11, 0.92) 100%
    );
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
}

.solucion-card:hover .solucion-overlay {
    height: 100%;
    opacity: 1;
    pointer-events: all;
}

/* Barra superior que crece */
.solucion-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.solucion-card:hover .solucion-top-bar {
    transform: scaleX(1);
}

/* Badge superior */
.solucion-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    color: var(--primary-orange);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(250, 81, 11, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.solucion-card:hover .solucion-badge {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: scale(1.1);
}

/* Título de la solución (visible siempre) */
.solucion-title-preview {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    transition: opacity 0.3s ease;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.solucion-title-text {
    display: block;
}

.solucion-cta-preview {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    pointer-events: auto;
    position: relative;
    z-index: 20;
    box-shadow: 0 5px 20px rgba(250, 81, 11, 0.4);
}

.solucion-cta-preview:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(250, 81, 11, 0.6);
    color: white !important;
}

.solucion-card:hover .solucion-title-preview {
    opacity: 0;
}

/* Contenido del overlay */
.solucion-content {
    text-align: center;
    color: white;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.solucion-card:hover .solucion-content {
    transform: translateY(0);
    opacity: 1;
}

.solucion-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.solucion-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.solucion-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.solucion-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.solucion-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary-orange);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
    pointer-events: auto;
    position: relative;
    z-index: 100;
}

.solucion-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    color: var(--primary-orange);
}

/* Responsive Soluciones */
@media (max-width: 1400px) {
    .solucion-card {
        height: 500px;
    }
}

@media (max-width: 1200px) {
    .soluciones-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .solucion-card {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .solucion-card {
        height: 420px;
    }

    .solucion-title {
        font-size: 1.8rem;
    }

    .solucion-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .soluciones-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .solucion-card {
        height: 400px;
    }

    .solucion-title {
        font-size: 1.6rem;
    }

    .solucion-icon {
        font-size: 3rem;
    }

    .soluciones-section {
        padding: 5rem 0;
    }
}

@media (max-width: 576px) {
    .solucion-card {
        height: 380px;
    }

    .solucion-title {
        font-size: 1.4rem;
    }

    .solucion-description {
        font-size: 0.95rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .solucion-overlay {
        padding: 1.5rem;
    }

    .solucion-title-preview {
        padding: 1.5rem 1rem;
        font-size: 1.2rem;
    }

    .solucion-cta-preview {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .solucion-title-text {
        font-size: 1.1rem;
    }
}

/* ============================================
   TESTIMONIOS LIFESTYLE
============================================ */
.testimonios-lifestyle-section {
    padding: 8rem 0;
    background: var(--dark-bg);
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.testimonio-lifestyle-card {
    background: var(--gradient-dark);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(250, 81, 11, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.testimonio-lifestyle-card:hover {
    transform: translateY(-10px);
    border-color: rgba(250, 81, 11, 0.4);
    box-shadow: var(--shadow-glow);
}

.testimonio-quote {
    font-size: 4rem;
    color: var(--primary-orange);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 2rem;
}

.testimonio-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.testimonio-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonio-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--primary-orange);
    object-fit: cover;
}

.testimonio-author-info h5 {
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.testimonio-author-info p {
    color: var(--text-muted);
    margin: 0;
}

.testimonio-metric {
    display: inline-block;
    margin-top: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
}

/* ============================================
   PRICING REVOLUCIONARIO
============================================ */
.pricing-revolucion-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--dark-card) 0%, var(--dark-bg) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.pricing-card-revolucion {
    background: var(--gradient-dark);
    border-radius: 30px;
    padding: 3rem;
    border: 2px solid rgba(250, 81, 11, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card-revolucion.destacado {
    border-color: var(--primary-orange);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow-intense);
}

.pricing-card-revolucion:hover {
    transform: translateY(-15px);
    border-color: rgba(250, 81, 11, 0.5);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 2rem;
    border-bottom-left-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.pricing-price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.pricing-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-features li i {
    color: #10b981;
    font-size: 1.2rem;
}

.pricing-cta-revolucion {
    width: 100%;
    padding: 1.25rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.pricing-cta-revolucion:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(250, 81, 11, 0.5);
}

/* ============================================
   FAQ LIFESTYLE
============================================ */
.faq-lifestyle-section {
    padding: 8rem 0;
    background: var(--dark-bg);
}

.faq-accordion {
    max-width: 900px;
    margin: 4rem auto 0;
}

.faq-item {
    background: var(--gradient-dark);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(250, 81, 11, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(250, 81, 11, 0.3);
}

.faq-question {
    width: 100%;
    padding: 2rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-question i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 1200px;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================
   SECCIÓN CONTACTO REVOLUCIONARIO
============================================ */
.contacto-revolucion-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1414 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.contacto-revolucion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(250, 81, 11, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.contacto-info {
    position: relative;
    z-index: 2;
}

.contacto-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contacto-opciones {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.opcion-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(250, 81, 11, 0.05);
    border: 1px solid rgba(250, 81, 11, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.opcion-card-clickable {
    cursor: pointer;
    position: relative;
}

.opcion-card-clickable:hover {
    background: rgba(250, 81, 11, 0.1);
    border-color: rgba(250, 81, 11, 0.4);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(250, 81, 11, 0.2);
}

.opcion-card-clickable:active {
    transform: translateX(8px) scale(0.98);
}

.opcion-card-clickable.active {
    background: rgba(250, 81, 11, 0.15);
    border-color: rgba(250, 81, 11, 0.6);
    border-width: 2px;
}

.opcion-card-clickable.active::before {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

#opcionHumano.active {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.6);
}

#opcionHumano.active::before {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.opcion-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.opcion-content h4 {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.opcion-content p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.opcion-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.opcion-badge.instant {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.opcion-badge.delayed {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.contacto-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--dark-surface);
    border: 1px solid rgba(250, 81, 11, 0.2);
    border-radius: 12px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Formulario de Contacto */
.contacto-form-wrapper {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.95));
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(250, 81, 11, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.contacto-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

/* Toggle TianiX vs Humano */
.contact-toggle-container {
    margin-bottom: 2rem;
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-toggle-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--dark-surface);
    border-radius: 15px;
    padding: 5px;
    border: 2px solid rgba(250, 81, 11, 0.2);
}

.contact-toggle-wrapper input[type="radio"] {
    display: none;
}

.toggle-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    text-align: center;
}

.toggle-option i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.toggle-avatar img {
    transition: transform 0.3s ease;
}

#toggleTianix:checked ~ .tianix-option .toggle-avatar img {
    transform: scale(1.1);
}

.toggle-option span {
    font-size: 1rem;
    font-weight: 700;
    display: block;
    transition: all 0.3s ease;
}

.toggle-option small {
    font-size: 0.75rem;
    opacity: 0.7;
    display: block;
    margin-top: 0.25rem;
}

/* Estados del toggle */
#toggleTianix:checked ~ .tianix-option,
#toggleHumano:checked ~ .humano-option {
    color: white;
}

#toggleTianix:checked ~ .tianix-option i,
#toggleHumano:checked ~ .humano-option i {
    transform: scale(1.1);
}

.toggle-slider {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(50% - 5px);
    height: calc(100% - 10px);
    border-radius: 12px;
    background: var(--gradient-primary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

#toggleHumano:checked ~ .toggle-slider {
    transform: translateX(100%);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.tianix-option {
    color: rgba(255, 255, 255, 0.5);
}

.humano-option {
    color: rgba(255, 255, 255, 0.5);
}

/* Alerta de delay */
.delay-alert {
    display: none;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    align-items: center;
    gap: 1rem;
    animation: slideDown 0.3s ease;
}

.delay-alert.show {
    display: flex;
}

.delay-alert i {
    font-size: 1.5rem;
    color: #8b5cf6;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Campos del formulario */
.form-group-revolucion {
    margin-bottom: 2rem;
    position: relative;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#emailGroup {
    opacity: 1;
    transform: translateY(0);
}

.form-label-revolucion {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.form-label-revolucion i {
    color: var(--primary-orange);
    margin-right: 0.5rem;
}

.form-input-revolucion {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(250, 81, 11, 0.2);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-input-revolucion::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input-revolucion:focus {
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(250, 81, 11, 0.2);
}

.form-textarea-revolucion {
    resize: vertical;
    min-height: 120px;
}

.input-underline {
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    margin-top: -2px;
    border-radius: 2px;
}

.form-input-revolucion:focus ~ .input-underline {
    transform: scaleX(1);
}

/* Botón de envío */
.btn-submit-revolucion {
    width: 100%;
    padding: 1.5rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit-revolucion::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-submit-revolucion:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(250, 81, 11, 0.4);
}

.btn-submit-revolucion:hover::before {
    left: 100%;
}

.btn-submit-revolucion:active {
    transform: translateY(0);
}

.btn-loader {
    display: none;
}

.btn-submit-revolucion.loading .btn-text {
    display: none;
}

.btn-submit-revolucion.loading .btn-loader {
    display: inline;
}

.form-privacy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

.form-privacy i {
    color: #10b981;
}

/* Responsive */
@media (max-width: 991px) {
    .contacto-stats {
        grid-template-columns: 1fr;
    }

    .contacto-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .contacto-revolucion-section {
        padding: 4rem 0;
    }

    .toggle-option {
        padding: 1rem 0.5rem;
    }

    .toggle-option i {
        font-size: 1.5rem;
    }

    .toggle-option span {
        font-size: 0.9rem;
    }
}

/* ============================================
   FOOTER
============================================ */
.footer-revolucion {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-top: 1px solid rgba(250, 81, 11, 0.2);
    padding: 4rem 0 2rem;
}

.footer-revolucion h5 {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-revolucion h6 {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-revolucion p {
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.6;
}

.footer-revolucion .list-unstyled li a {
    color: var(--text-light) !important;
    opacity: 0.7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-revolucion .list-unstyled li a:hover {
    color: var(--primary-orange) !important;
    opacity: 1;
    transform: translateX(5px);
}

.social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-right: 1rem;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(250, 81, 11, 0.4);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 992px) {
    .hero-title-revolucion {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .lifestyle-grid,
    .tianix-grid {
        grid-template-columns: 1fr;
    }

    .comparison-container {
        grid-template-columns: 1fr;
    }

    .comparison-vs {
        transform: rotate(90deg);
        margin: 2rem 0;
    }

    .split-screen-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title-revolucion {
        font-size: 2.5rem;
    }

    .hero-subtitle-revolucion {
        font-size: 1.1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-primary-revolucion,
    .cta-secondary-revolucion {
        width: 100%;
        justify-content: center;
    }

    .calculator-container {
        padding: 2rem;
    }

    .calculator-result-number {
        font-size: 3rem;
    }

    .pricing-grid,
    .testimonios-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ANIMACIONES GENERALES
============================================ */
.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(250, 81, 11, 0.3);
    border-top: 4px solid var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
