@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap');

:root {
    --bg: #ffffff; /* White background */
    --card-bg: #ffffff;
    --card-bg-alt: #f1f5f9; /* Slate 100 */
    --glass-border: rgba(0, 0, 0, 0.08);
    --primary: #0284c7; /* Sky Blue Dark */
    --accent: #0ea5e9;  /* Sky Blue Primary */
    --accent-light: #e0f2fe; /* Sky Blue Very Light */
    --text: #0f172a; /* Slate 900 */
    --text-dim: #64748b; /* Slate 500 */
    --nav-height: 80px;
    --frate-primary: #4F46E5;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Fondos base eliminados para dar paso al diseño limpio */

header {
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary);
    letter-spacing: -1px;
}

.nav-logo {
    height: 40px;
    width: auto;
    /* Removed heavy shadow for a cleaner look */
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--text);
    cursor: pointer;
    transition: color 0.3s;
}

.menu-toggle:hover {
    color: var(--primary);
}

nav ul li a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary);
}

.btn-primary {
    display: inline-block;
    text-decoration: none;
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
    line-height: normal;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.3);
    background: var(--accent);
}

/* Hero Section */
.hero {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 8rem; /* Padding for the wave */
    min-height: 90vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding-inline: 4rem;
    gap: 4rem;
    background: radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(2, 132, 199, 0.15) 0%, transparent 40%),
                linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative; /* Essential for shape divider */
}

.hero-content {
    flex: 1;
    text-align: left;
    max-width: 1300px;
    z-index: 2;
}

.badge-new {
    display: inline-block;
    background: rgba(2, 132, 199, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 1px solid rgba(2, 132, 199, 0.2);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    color: var(--text);
}

.hero-subtitle {
    color: var(--text-dim);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 1.2;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.floating-img {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(2, 132, 199, 0.2);
    animation: float 6s ease-in-out infinite;
    border: 1px solid white;
}

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

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn-accent {
    background: var(--text);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 14px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.3);
    background: #1e293b;
}

.btn-secondary {
    background: white;
    color: var(--text);
    padding: 1rem 2.5rem;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: var(--card-bg-alt);
    border-color: #cbd5e1;
}

/* Shape Divider Asimétrico (Ola) */
.custom-shape-divider-bottom-1681234567 {
    position: absolute;
    bottom: -1px; /* Evita lineas blancas en algunos browsers */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1681234567 svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 150px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1681234567 .shape-fill {
    fill: var(--bg);
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(217, 119, 6, 0.1), transparent 50%);
    pointer-events: none;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(217, 119, 6, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Features Detail & Video */
.features-detail {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.video-placeholder {
    width: 100%;
    height: 500px;
    background: #111;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    z-index: 10;
    box-shadow: 0 0 30px rgba(217, 119, 6, 0.6);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 5;
}

.video-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Payments Section */
.payments-automated {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-card {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), rgba(2, 6, 23, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 5rem;
    text-align: center;
    backdrop-filter: blur(20px);
}

.payment-card h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.method {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    font-weight: 700;
    font-size: 1.2rem;
}

.card p {
    color: var(--text-dim);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.mini-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mini-features li {
    font-size: 0.9rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Nuvica Hero Visual Layout */
.hero-visual.advanced-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 600px;
}

.pill-image-large {
    position: relative;
    margin-top: -60px;
    width: 300px;
    height: 520px;
    border-radius: 200px;
    background: #ffffff;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.pill-image-small {
    position: relative;
    margin-top: 80px;
    width: 270px;
    height: 420px;
    border-radius: 200px;
    background: #ffffff;
    padding: 10px;
    box-shadow: 0 40px 80px rgba(2, 132, 199, 0.15);
}

.pill-img {
    width: 100%;
    height: 100%;
    border-radius: 190px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.pill-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pill-img.inner-shadow {
    box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

.floating-badge-box {
    position: absolute;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    animation: float 5s ease-in-out infinite;
    z-index: 10;
}

.badge-bottom-center {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.badge-top-right {
    top: 40px;
    right: -40px;
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: rgba(2, 132, 199, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.badge-icon.light-bg {
    background: var(--primary);
    color: white;
}

.badge-details {
    display: flex;
    flex-direction: column;
}

.badge-details strong {
    font-size: 1.2rem;
    line-height: 1.1;
    color: var(--text);
}

.badge-details span {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.align-center {
    align-items: center;
    text-align: center;
}

/* 3 Overlapping Cards (Nuvica Style) */
.hero-cards-deck {
    margin-top: -120px; /* Overlap the wave */
    position: relative;
    z-index: 10;
    padding: 0 2rem;
    margin-bottom: 5rem;
}

.hc-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.hc-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.hc-card.white-shadow-card {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--glass-border);
}

.hc-card.glass-card-special {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid white;
    box-shadow: 0 30px 60px rgba(2, 132, 199, 0.15);
    transform: translateY(-20px);
}

.hc-card:hover {
    transform: translateY(-10px);
}

.hc-card.glass-card-special:hover {
    transform: translateY(-30px);
}

.hc-icon-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.round-icon-img {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    object-fit: cover;
}

.hc-arrow {
    width: 40px;
    height: 40px;
    background: rgba(2, 132, 199, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: all 0.3s;
}

.hc-arrow.text-primary {
    color: var(--primary);
    background: rgba(2, 132, 199, 0.15);
}

.hc-card:hover .hc-arrow {
    background: var(--primary);
    color: white;
}

.hc-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    text-align: left;
    color: var(--text);
}

/* Offset Section: Why Choose Us */
.offset-section {
    padding: 6rem 2rem;
}

.offset-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}

.offset-image-area {
    flex: 1;
    position: relative;
    z-index: 1;
}

.offset-image-area img {
    border-radius: 40px;
    width: 100%;
    height: auto;
}

.offset-card {
    flex: 0 0 500px;
    margin-left: -100px;
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 30px;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--glass-border);
}

.established-text {
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.offset-card h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.offset-card p {
    color: var(--text-dim);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.offset-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-clip {
    font-size: 1.5rem;
    color: var(--primary);
    background: var(--accent-light);
    padding: 12px;
    border-radius: 50%;
    transform: rotate(-45deg);
}

.clip-text {
    display: flex;
    flex-direction: column;
}

/* Metrics Banner (Simplified Separator) */
.metrics-banner {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.metrics-divider {
    width: 80px;
    height: 4px;
    background: var(--accent-light);
    border-radius: 10px;
}

.metrics-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.m-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.m-label {
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.pricing {
    padding: 8rem 2rem;
    text-align: center;
}
    padding: 6rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.dna-feature {
    margin-bottom: 8rem;
}

.padding-top-feature {
    padding-top: 4rem;
}

.dna-header {
    margin-bottom: 3rem;
    max-width: 600px;
}

.dna-header.right-aligned {
    margin-left: auto;
    text-align: right;
}

.dna-header h2 {
    font-size: 3rem;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 1rem;
}

.dna-header p {
    color: var(--text-dim);
    font-size: 1.1rem;
}

.tag-row {
    margin-bottom: 1rem;
}

.dna-grid {
    display: grid;
    gap: 2rem;
    grid-auto-rows: 450px;
}

.dna-grid.layout-1 {
    grid-template-columns: 2fr 1fr;
}

.dna-grid.layout-2 {
    grid-template-columns: 1fr 2fr;
}

/* DNA Blocks */
.dna-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    height: 100%;
}

.dna-block {
    position: relative;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

.dna-block.large-block {
    height: 550px; /* Fixed height for consistency on PC */
}

.white-shadow-card {
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05); border-radius: 30px;
}

.corner-radius {
    border-radius: 30px;
}

.dna-img-cover {
    width: 100%;
    flex: 1; 
    min-height: 0;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 3.5rem !important; /* Forces large gap at bottom */
}

.dna-img-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.bg-light-blue {
    background: var(--accent-light);
}

.text-centric {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem;
}

.gradient-centric {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem;
}

.bg-gradient-blue {
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
}

.text-white { color: #ffffff !important; }
.text-white-dim { color: rgba(255,255,255,0.7) !important; }
.text-primary { color: var(--primary) !important; }
.text-dim { color: var(--text-dim) !important; }
.text-small { font-size: 0.9rem; }

h3.xxl-text {
    font-size: 4rem;
    margin-bottom: 0;
    line-height: 1;
}

.dna-header-internal h3 {
    font-size: 2rem;
}

.relative-block {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.p-0 { padding: 0 !important; }
.p-4 { padding: 2.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.margin-b { margin-bottom: 1rem !important; }

.dna-padding-inner {
    padding: 2rem 2rem 3rem 2rem !important; /* Forces bottom margin for images */
    height: auto;
    min-height: 0; /* Important for flex children */
    display: flex;
    flex-direction: column;
}

.glass-badge {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border: 1px solid white;
    padding: 15px 25px;
    border-radius: 100px;
    color: var(--text);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.badge-bottom-left {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.badge-bottom-right {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.square-arrow-btn {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 60px;
    height: 60px;
    border-radius: 30px 0 30px 0;
    background: var(--text);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-text {
    display: none;
    font-size: 1rem;
    font-weight: 700;
}

.square-arrow-btn:hover {
    width: 180px;
    background: var(--primary);
}

.square-arrow-btn:hover .btn-text {
    display: inline;
}

.dna-bg-shape {
    position: absolute;
    right: -20px;
    bottom: -30px;
    color: rgba(255,255,255,0.1);
    z-index: 0;
}

.op-1 { opacity: 0.4; }

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--accent-light);
    object-fit: cover;
}

.profile-card {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.social-mini {
    display: flex;
    justify-content: center;
    gap: 1rem;
    color: var(--text-dim);
}

/* Helpers Float */
.float-1 { animation: float-slow 7s ease-in-out infinite; }
.float-2 { animation: float-slow 5s ease-in-out infinite reverse; }

/* Split Sections (Para Soporte 24/7) */
.split-section {
    padding: 8rem 2rem;
    display: flex;
    justify-content: center;
    background: var(--bg);
}

.split-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.split-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text);
}

.feature-list-check {
    list-style: none;
    margin: 2rem 0 3rem;
}

.feature-list-check li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-dim);
    font-size: 1.1rem;
}

.feature-list-check i {
    color: var(--accent);
    margin-top: 5px;
}

/* Support Section */
.support-section {
    padding: 8rem 2rem;
    background: var(--bg);
}

.support-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.support-options {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.support-options .opt {
    color: var(--text-dim);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


/* CSS-Based Graphics */
.css-graphic-box {
    position: relative;
    width: 320px;
    height: 320px;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.css-graphic-box:hover {
    transform: translateY(-15px) rotate(2deg);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(2, 132, 199, 0.15);
}

.glow-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-aura 3s infinite;
}

@keyframes pulse-aura {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
}

.support-graphic .main-icon {
    font-size: 6rem;
    color: var(--primary);
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(2, 132, 199, 0.2));
}

.live-indicator {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    color: #10b981;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.live-indicator .dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.graphic-label {
    margin-top: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* CTA Centered Section */
.cta-banner-centered {
    position: relative;
    padding: 10rem 2rem;
    background: var(--card-bg-alt); /* Light gray/blue */
    text-align: center;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
}

.cta-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(2, 132, 199, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(2, 132, 199, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.8;
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.cta-visual {
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.rocket-aura {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-visual 4s ease-in-out infinite;
}

.cta-visual i {
    color: var(--primary);
    filter: drop-shadow(0 0 20px rgba(2, 132, 199, 0.2));
    animation: float-visual 4s ease-in-out infinite;
}

@keyframes float-visual {
    0% { transform: translateY(0px) rotate(-15deg); }
    50% { transform: translateY(-20px) rotate(-10deg); }
    100% { transform: translateY(0px) rotate(-15deg); }
}

.cta-banner-centered h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--text);
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

/* Footer Refinements */
.footer-center {
    flex: 1;
    text-align: center;
}

.fb-link {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s;
}

.fb-link:hover {
    color: #1877F2; /* Facebook Blue */
}

.fb-link i {
    font-size: 1.5rem;
}

@media (max-width: 992px) {
    .cta-btns {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Modal UI Fixes */
.qr-container {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    margin-top: 1rem;
}

.qr-img {
    max-width: 250px; /* Tamaño proporcionado */
    height: auto;
    border-radius: 15px;
    border: 5px solid white;
    margin-bottom: 1.5rem;
}

/* Pricing Section */
.pricing {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 800;
}

.price-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: stretch;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem 2rem;
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.price-card:hover {
    box-shadow: 0 20px 50px rgba(2, 132, 199, 0.08);
}

.price-card.featured {
    border: 2px solid var(--primary);
    position: relative;
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.08);
}

.badge {
    position: absolute;
    top: -15px;
    background: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-dim);
}

.price-bs {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 2rem;
    font-weight: 700;
}

.save-badge {
    background: #10b981;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.price-card ul {
    list-style: none;
    margin-bottom: 3rem;
    text-align: left;
    width: 100%;
    flex-grow: 1;
}

.price-card ul li {
    margin-bottom: 1rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.btn-link {
    background: none;
    border: none;
    color: var(--text-dim);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.3s;
}

/* Auto Carousel for Infrastructure */
.auto-carousel {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #e0f2fe; /* Light blue accent */
}

.carousel-track {
    display: flex;
    width: 600%; /* Important: 6 image containers */
    height: 100%;
    animation: slide-infinite 20s linear infinite;
}

.carousel-track img {
    width: 16.6666%; /* 100% / 6 */
    height: 100%;
    object-fit: cover;
    object-position: top center; /* Focus on the app headers */
    border-right: 2px solid white; /* Separation between mockups */
}

@keyframes slide-infinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Shift exactly 3 images over the duration */
}

/* Glass Node Visual for Hero */
.glass-node-visual {
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.core-node {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.1);
    z-index: 2;
}

.node-ring {
    position: absolute;
    border: 2px dashed #bae6fd;
    border-radius: 50%;
    animation: rotate-node 20s linear infinite;
}

.ring-1 { width: 180px; height: 180px; }
.ring-2 { width: 240px; height: 240px; opacity: 0.5; animation-direction: reverse; }

@keyframes rotate-node {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn-link:hover {
    color: white;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6); /* Slate shadow */
    backdrop-filter: blur(8px);
    overflow-y: auto;
}

.modal-content {
    background: #ffffff;
    margin: 5vh auto;
    padding: 3rem;
    border: 1px solid var(--glass-border);
    width: 95%;
    max-width: 550px;
    border-radius: 30px;
    position: relative;
    color: var(--text);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.close {
    position: absolute;
    right: 25px;
    top: 20px;
    color: var(--text-dim);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.close:hover {
    color: var(--text);
}

.payment-tabs {
    display: flex;
    gap: 0.5rem;
    margin: 2rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-dim);
    padding: 0.6rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}


/* Contact Section */
.contact-section {
    padding: 8rem 2rem;
    background: var(--bg);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.contact-form-box {
    margin: 2rem 0;
    padding: 2.5rem;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 1.2rem;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form-box textarea {
    height: 140px;
    margin-bottom: 1.5rem;
    resize: none;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
    outline: none;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-whatsapp:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.contact-logo-box {
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.1), rgba(14, 165, 233, 0.05));
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
}

.large-logo {
    width: 280px; /* Tamaño aumentado */
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 0 40px rgba(2, 132, 199, 0.2));
}

.email-note {
    font-size: 1rem;
    color: var(--text-dim);
    margin-top: 2rem;
}

.email-note a {
    color: var(--accent);
    font-weight: 600;
}

/* Footer */
.main-footer {
    padding: 4rem 2rem;
    border-top: 1px solid var(--glass-border);
    background: #0f172a; /* Slate 900 for footer */
    color: white;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    font-size: 1.5rem;
}

.footer-social a {
    color: var(--text-dim);
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--accent);
}

.footer-copy {
    width: 100%;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-top: 2rem;
}

/* Modal refinements */
.form-section {
    text-align: left;
    margin-bottom: 2.5rem;
}

.form-section h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-content input, .modal-content select {
    width: 100%;
    padding: 1.1rem;
    background: #ffffff !important;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    color: var(--text);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.modal-content input::placeholder {
    color: var(--text-dim);
}

.modal-content input:focus {
    border-color: var(--primary);
    background: #f8fafc !important;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
    outline: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        text-align: center;
        border-bottom: 1px solid var(--glass-border);
    }
    nav ul.active {
        display: flex;
    }
    .dna-grid.layout-1, .dna-grid.layout-2 {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .dna-header.right-aligned {
        text-align: left;
        margin-left: 0;
    }
    .offset-container {
        flex-direction: column;
        text-align: center;
    }
    .offset-card {
        flex: 1;
        margin-left: 0;
        margin-top: -60px;
    }
    .offset-actions {
        flex-direction: column;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        padding-inline: 2rem;
    }
    .hero-content {
        margin-bottom: 2rem;
    }
    .hero-visual.advanced-layout {
        width: 100%;
        height: auto;
        margin-top: 3rem;
        flex-direction: column;
        gap: 20px;
    }
    .pill-image-large, .pill-image-small {
        margin-top: 0;
        width: 80%;
        height: 350px;
    }
    .badge-top-right {
        top: 20px; right: 10px;
    }
    .split-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .feature-list-check li {
        justify-content: center;
    }
    .split-image {
        order: -1;
    }
    .support-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .support-options {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-cards-deck {
        margin-top: 2rem;
    }
}

/* Carousel System */
.carousel-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    /* Removed overflow: hidden to allow arrows on sides if needed, 
       but we will keep them inside for safe layout */
}

/* Arrows Styling */
.carousel-controls {
    position: absolute;
    top: 55%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none; /* Allows clicking things behind the transparent area */
    z-index: 10;
    transform: translateY(-50%);
}

.arrow-btn {
    pointer-events: auto; /* Re-enable for buttons */
    background: white;
    color: var(--accent);
    border: 1px solid var(--accent-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.arrow-btn:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}

.arrow-btn.prev { margin-left: 10px; }
.arrow-btn.next { margin-right: 10px; }

.carousel-nav-special {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.c-btn {
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-dim);
}

.c-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.2);
}

.system-carousel {
    position: relative;
    min-height: 600px;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Icons for Systems */
.fa-masks-theater { color: var(--frate-primary); }

.price-usd {
    font-size: 1.2rem;
    color: var(--accent);
    margin-top: 5px;
    font-weight: 700;
}

