:root {
    --primary-color: #00ADEF; /* Vimeo Blue-ish */
    --primary-dark: #0088cc;
    --text-color: #1a2e3b;
    --text-light: #6c757d;
    --bg-color: #ffffff;
    --bg-alt: #f4f5f7;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --max-width: 1200px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --border-radius: 8px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(0, 173, 239, 0.45);
    outline-offset: 3px;
    border-radius: 12px;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px; /* Pill shape like Vimeo */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--text-color); /* Black/Dark buttons often used */
    color: white;
}

.btn-primary:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #eef1f2;
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: #d8dbdc;
}

.btn-accent {
    background-color: var(--primary-color);
    color: white;
}

.btn-accent:hover {
    background-color: var(--primary-dark);
}

/* Header */
.site-header {
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0;
    letter-spacing: -1px;
}

.logo img {
    height: 112px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-light);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    gap: 15px;
}

/* Hero Section */
.hero {
    padding: 100px 0 140px;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    letter-spacing: -2px;
}

.hero h1 span {
    background: linear-gradient(90deg, var(--primary-color), #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero2 {
    padding: 110px 0 80px;
    background: radial-gradient(circle at 20% 10%, rgba(0, 173, 239, 0.20), transparent 55%),
                radial-gradient(circle at 80% 10%, rgba(0, 210, 255, 0.14), transparent 55%),
                linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero2-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
    gap: 48px;
    align-items: center;
}

.hero2-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.10);
    font-weight: 800;
    letter-spacing: -0.2px;
    color: rgba(15, 23, 42, 0.92);
}

.hero2-copy h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin: 16px 0 14px;
    letter-spacing: -2px;
}

.hero2-sub {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 62ch;
}

.hero2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.hero2-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.10);
    font-weight: 800;
    color: rgba(15, 23, 42, 0.92);
}

.hero2-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.10);
}

.hero2-card-title {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.8px;
    margin-bottom: 6px;
}

.hero2-card-sub {
    color: var(--text-light);
}

.hero2-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 16px 0 14px;
}

.opt {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    font-weight: 900;
    background: rgba(255, 255, 255, 0.95);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.opt:hover {
    border-color: rgba(0, 173, 239, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.hero2-quick {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(0, 173, 239, 0.10);
    border: 1px solid rgba(0, 173, 239, 0.18);
    font-weight: 900;
}

.hero2-quick-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(0, 173, 239, 0.18);
}

.gg-mini {
    margin-top: 14px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.gg-mini-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.gg-mini-title {
    font-weight: 950;
    letter-spacing: -0.5px;
}

.gg-mini-level {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 173, 239, 0.10);
    border: 1px solid rgba(0, 173, 239, 0.18);
    font-weight: 900;
    font-size: 0.85rem;
}

.gg-progress {
    height: 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.10);
}

.gg-progress > span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), #00d2ff);
}

.gg-mini-meta {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(15, 23, 42, 0.75);
    font-weight: 800;
    font-size: 0.92rem;
}

.gg-subnav {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gg-subnav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.9);
    font-weight: 900;
    color: rgba(15, 23, 42, 0.9);
}

.gg-subnav a:hover {
    border-color: rgba(0, 173, 239, 0.28);
    color: rgba(15, 23, 42, 1);
}

.gg-screen {
    padding: 70px 0 110px;
    background: #ffffff;
}

.gg-screen-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.gg-screen-title h1 {
    font-size: 2.4rem;
    letter-spacing: -1.4px;
    line-height: 1.1;
}

.gg-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.gg-kpi {
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 18px;
    padding: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 18px 46px rgba(0,0,0,0.04);
}

.gg-kpi .k {
    color: var(--text-light);
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gg-kpi .v {
    margin-top: 8px;
    font-weight: 1000;
    letter-spacing: -0.8px;
    font-size: 1.8rem;
}

.benefits {
    padding: 100px 0;
    background: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 46px rgba(0,0,0,0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 173, 239, 0.28);
    box-shadow: 0 26px 60px rgba(0,0,0,0.08);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 173, 239, 0.12);
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    letter-spacing: -0.6px;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-light);
}

.process {
    padding: 110px 0;
    background: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.process-step {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 46px rgba(0,0,0,0.04);
}

.process-num {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.92);
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.10);
    margin-bottom: 14px;
}

.process-step h3 {
    font-size: 1.2rem;
    letter-spacing: -0.6px;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-light);
}

.process-cta {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.faq {
    padding: 110px 0;
    background: var(--bg-alt);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 18px 46px rgba(0,0,0,0.04);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 18px;
    font-weight: 900;
    letter-spacing: -0.4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.3rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.70);
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-content {
    padding: 0 18px 18px;
    color: var(--text-light);
}

/* Services Section */
.services {
    background-color: var(--bg-alt);
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #e0f7ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
}

.influencer-feature {
    background: #ffffff;
    padding: 110px 0;
}

.influencer-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
    gap: 48px;
    align-items: center;
}

@media (max-width: 980px) {
    .influencer-feature-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.influencer-feature-copy h2 {
    font-size: 2.75rem;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.influencer-feature-copy p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 720px;
}

.influencer-feature-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.10);
    font-weight: 800;
    color: rgba(15, 23, 42, 0.9);
    margin-bottom: 18px;
}

.influencer-feature-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.influencer-mini-card {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 16px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.influencer-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(0,0,0,0.10);
    border-color: rgba(0, 173, 239, 0.22);
}

.influencer-mini-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.influencer-mini-logo {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    object-fit: cover;
    background: #fff;
    flex: 0 0 46px;
}

.influencer-mini-meta {
    min-width: 0;
}

.influencer-mini-name {
    font-weight: 950;
    letter-spacing: -0.4px;
}

.influencer-mini-handle {
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.influencer-mini-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.influencer-mini-stat {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    padding: 10px 12px;
    text-align: center;
    min-width: 110px;
}

.influencer-mini-stat .v {
    font-weight: 950;
    letter-spacing: -0.4px;
}

.influencer-mini-stat .k {
    color: var(--text-light);
    font-weight: 800;
    font-size: 0.82rem;
    margin-top: 2px;
}

.influencer-mini-cta {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(0, 173, 239, 0.10);
    border: 1px solid rgba(0, 173, 239, 0.18);
    color: rgba(15, 23, 42, 0.9);
    flex: 0 0 40px;
}

.influencer-mini-links {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 700;
}

.influencer-link {
    color: var(--text-color);
    font-weight: 850;
    transition: transform 200ms ease, color 200ms ease;
}

.influencer-link:hover {
    transform: translateY(-1px);
    color: var(--primary-color);
}

.influencer-link-sep {
    opacity: 0.45;
}

.influencer-feature-phone {
    display: grid;
    justify-items: end;
}

@media (max-width: 980px) {
    .influencer-feature-phone {
        justify-items: center;
    }
}

@keyframes homePhoneFloat {
    0%, 100% { transform: translateY(0) rotate(-0.35deg); }
    50% { transform: translateY(-10px) rotate(0.35deg); }
}

.home-phone {
    width: min(420px, 92vw);
    border-radius: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.72) 100%);
    border: 1px solid rgba(15, 23, 42, 0.14);
    box-shadow: 0 28px 70px rgba(0,0,0,0.14);
    position: relative;
    overflow: hidden;
    animation: homePhoneFloat 6.8s ease-in-out infinite;
    transform: translateZ(0);
}

.home-phone::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    pointer-events: none;
}

.home-phone::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 26px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    pointer-events: none;
}

.home-screen {
    position: relative;
    margin: 14px;
    border-radius: 32px;
    overflow: hidden;
    background: #fff;
}

.home-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px 10px;
    font-weight: 900;
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.85);
    background: #ffffff;
}

.home-status-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(15, 23, 42, 0.72);
    font-size: 1rem;
}

.home-ig-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    background: #fff;
}

.home-ig-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.home-ig-avatar {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    object-fit: cover;
    background: #fff;
}

.home-ig-user {
    font-weight: 950;
    letter-spacing: -0.3px;
    line-height: 1.05;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-ig-sub {
    margin-top: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.85);
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.10);
    width: fit-content;
}

.home-ig-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(0, 173, 239, 0.10);
    border: 1px solid rgba(0, 173, 239, 0.18);
    font-weight: 900;
    color: rgba(15, 23, 42, 0.9);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.home-ig-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.10);
}

.home-ig-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.home-ig-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px 14px 16px;
    background: #fff;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.home-stat {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 12px;
    text-align: center;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.home-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}

.home-stat .v {
    font-weight: 1000;
    font-size: 1.22rem;
    letter-spacing: -0.4px;
}

.home-stat .k {
    color: var(--text-light);
    font-weight: 800;
    font-size: 0.82rem;
    margin-top: 2px;
}

/* Rating estrellas en reseñas home */
.rating-stars {
    color: #fbbf24;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.rating-stars i {
    margin-right: 2px;
}

/* Espaciado extra en botones de otros sistemas (planes.php) */
.otros-sistemas .service-card p {
    margin-bottom: 16px;
}

/* Icono para tarjetas de portafolio */
.portfolio-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--primary-color), #0b1b24);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.service-card .portfolio-icon {
    margin-bottom: 12px;
}

/* Footer */
.site-footer {
    padding: 60px 0;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-color);
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        color: var(--text-color);
        padding: 5px;
        z-index: 1001;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }

    .hero2 {
        padding: 90px 0 60px;
    }

    .hero2-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .hero2-copy h1 {
        font-size: 2.35rem;
        letter-spacing: -1.2px;
    }

    .hero2-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero2-trust {
        gap: 8px;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 10px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
        z-index: 1000;
    }

    .main-nav.active {
        display: block;
        animation: fadeIn 0.3s ease-out;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav ul li {
        width: 100%;
        text-align: center;
    }

    .main-nav ul li a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #f5f5f5;
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }

    .logo {
        font-size: 0;
    }

    .logo img {
        height: 84px;
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Clases de utilidad para animación */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animaciones iniciales (Hero) */
.hero h1 {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero p {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0; /* Estado inicial para el delay */
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
    }

    .animate-on-scroll,
    .service-card,
    .benefit-card,
    .opt,
    .btn {
        transition: none !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* Efectos hover adicionales */
.btn {
    position: relative;
    overflow: hidden;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.currency-toggle {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 16px;
}

.currency-btn {
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.2);
    padding: 6px 14px;
    background: #ffffff;
    color: var(--text-color);
    font-size: 0.85rem;
    cursor: pointer;
}

.currency-btn.active {
    background: var(--text-color);
    color: #ffffff;
    border-color: var(--text-color);
}

.pricing-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    transition: transform .25s ease, box-shadow .25s ease;
}

.pricing-card.highlight {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.price {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 6px;
}

.feature-list {
    display: grid;
    gap: 8px;
    padding-left: 0;
}

.feature-list li {
    position: relative;
    padding-left: 22px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}

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

.tickets-info-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-decoration: underline;
}

.tickets-info-link:hover {
    text-decoration: underline;
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.modal-content {
    position: relative;
    background: #fff;
    color: var(--text-color);
    width: min(640px, 92vw);
    border-radius: 16px;
    padding: 24px;
    max-height: 80vh;
    overflow: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-content h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.modal-content h4 {
    margin-top: 16px;
    margin-bottom: 8px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.services-page {
    padding: 40px 0 100px;
}

.service-row {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid #eee;
}

.service-row:last-child {
    border-bottom: none;
}

.service-row-text h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.service-row-text p {
    color: var(--text-light);
    font-size: 1rem;
}

.service-row-media {
    display: flex;
    justify-content: flex-end;
}

.service-row-image {
    width: 320px;
    height: 210px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.service-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

 .service-row-image span {
}

@media (max-width: 768px) {
    .service-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-row-media {
        justify-content: flex-start;
    }
}

.cta-video {
    position: relative;
    color: white;
    text-align: center;
    padding: 120px 0;
    overflow: hidden;
}

.cta-video .video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.cta-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.cta-content {
    position: relative;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: #e2e2e2;
    margin-bottom: 32px;
    font-size: 1.2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-color);
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}
