/* Carla Fitness - Modern Styles */

:root {
    --primary: #C975AF;
    --primary-dark: #A85A8F;
    --primary-light: #E0B8D6;

    --dark: #0F0F0F;
    --dark-gray: #1A1A1A;
    --light-gray: #F5F5F5;
    --border-gray: #E0E0E0;

    --text-primary: #1A1A1A;
    --text-secondary: #4a4a4a;
    --text-light: #7a7a7a;
    --card-bg: rgba(248, 245, 243, 0.92);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 0 40px rgba(201, 117, 175, 0.05);
    --card-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.06), 0 0 60px rgba(201, 117, 175, 0.08);

    --font-main: 'Golos Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'Courier New', monospace;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;
    --spacing-3xl: 8rem;
    --spacing-4xl: 10rem;

    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
}

@font-face {
    font-family: 'Golos Text';
    src: url('../assets/fonts/GolosText-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Golos Text';
    src: url('../assets/fonts/GolosText-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Golos Text';
    src: url('../assets/fonts/GolosText-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: #000000;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Typography */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    line-height: 1.7;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(201, 117, 175, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 117, 175, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary-light);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background: var(--dark);
    color: white;
}

.btn-secondary:hover {
    background: var(--dark-gray);
}

/* Navbar */
.navbar {
    background: transparent;
    border-bottom: 1px solid transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: none;
    transition: background 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, padding 0.5s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: none;
    box-shadow: none;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem var(--spacing-lg) 1.5rem 0;
    gap: var(--spacing-lg);
    max-width: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    transition: transform 0.3s ease;
    margin-right: auto;
}

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

.logo {
    height: 220px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: absolute;
    top: 50px;
    left: 2rem;
    z-index: 10;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(12px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:not(.btn-primary):hover {
    color: white;
}

.nav-link:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:not(.btn-primary):hover::after {
    width: 100%;
}

/* Nav CTA — Inscribite ahora — texto rosa con sombra negra */
.nav-link.nav-cta {
    color: var(--primary);
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.nav-link.nav-cta:hover {
    color: var(--primary-light);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

.nav-link.nav-cta::after {
    background: white;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 30%,
        rgba(201, 117, 175, 0.08) 0%,
        transparent 60%
    );
    pointer-events: none;
    z-index: 1.5;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(15, 15, 15, 0.7) 0%,
            rgba(26, 26, 26, 0.5) 50%,
            rgba(15, 15, 15, 0.65) 100%
        ),
        radial-gradient(
            ellipse at center,
            rgba(201, 117, 175, 0.05) 0%,
            transparent 70%
        );
    backdrop-filter: blur(3px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: none;
    padding: 0 var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-xl);
    animation: fadeInUp 1s ease-out;
}

.hero-text-wrapper {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-h1 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-transform: uppercase;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

.hero-highlight {
    color: var(--primary);
    font-weight: 900;
}

.hero-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: none;
    margin: 2rem 0 0 0;
    font-weight: 400;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.btn-hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.4rem 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, #9d5a8e 100%);
    color: white;
    border-radius: 14px;
    font-size: 1.15rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 0 40px rgba(201, 117, 175, 0.4),
        0 0 80px rgba(201, 117, 175, 0.15),
        0 12px 35px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    animation: glowPulse 3s ease-in-out;
}

.btn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

.btn-hero:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 60px rgba(201, 117, 175, 0.6),
        0 0 120px rgba(201, 117, 175, 0.25),
        0 20px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-hero:active {
    transform: translateY(-2px);
}

.btn-subtext {
    font-size: 0.85rem;
    opacity: 0.85;
    font-weight: 500;
}

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

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow:
            0 0 40px rgba(201, 117, 175, 0.4),
            0 0 80px rgba(201, 117, 175, 0.15),
            0 12px 35px rgba(0, 0, 0, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
    50% {
        box-shadow:
            0 0 50px rgba(201, 117, 175, 0.5),
            0 0 100px rgba(201, 117, 175, 0.2),
            0 12px 35px rgba(0, 0, 0, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.8px;
    line-height: 1.15;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    letter-spacing: 0.1px;
}

/* Diferencial Section */
.diferencial {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background-color: #ebe6db;
    background-image:
        radial-gradient(ellipse at top, rgba(201, 117, 175, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(201, 117, 175, 0.04) 0%, transparent 50%),
        url('../assets/images/concrete-bg.jpg');
    background-size: auto, auto, 140% auto;
    background-attachment: scroll, scroll, fixed;
    background-position: top center, bottom center, center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.diferencial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.06) 0%, transparent 100%);
    pointer-events: none;
}

.diferencial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
    position: relative;
    z-index: 1;
}

.diferencial-item {
    padding: var(--spacing-xl);
    background: var(--card-bg);
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--card-shadow);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.5s ease;
    position: relative;
    overflow: hidden;
}

.diferencial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 117, 175, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.diferencial-item:hover {
    transform: translateY(-4px);
    background: rgba(252, 250, 248, 0.96);
    box-shadow: var(--card-shadow-hover);
}

.diferencial-item:hover::before {
    opacity: 1;
}

.diferencial-item .icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.diferencial-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.diferencial-item:hover .icon {
    transform: scale(1.1) translateY(-2px);
}

.diferencial-item h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.diferencial-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Problema-Solución */
.problema-solucion {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background:
        radial-gradient(ellipse at 20% 20%, rgba(201, 117, 175, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(201, 117, 175, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0a 0%, var(--dark) 50%, #0a0a0a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.problema-solucion .container {
    position: relative;
    z-index: 1;
}

.ps-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.ps-block {
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease;
}

.ps-block:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 117, 175, 0.25);
}

.ps-block h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.ps-block ul {
    list-style: none;
}

.ps-block li {
    padding: var(--spacing-sm) 0;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.ps-block li::before {
    content: '✕';
    color: #ff6b6b;
    font-weight: bold;
    flex-shrink: 0;
}

.ps-block:nth-child(3) li::before {
    content: '✓';
    color: #51cf66;
}

.ps-divider {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.5;
    text-align: center;
}

/* Planes Section */
.planes {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background-color: #ebe6db;
    background-image: url('../assets/images/concrete-bg.jpg');
    background-size: 140% auto;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

.planes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.plan-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: var(--spacing-lg) var(--spacing-md);
    position: relative;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--card-shadow);
    font-size: 0.92rem;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

/* FEATURED — Semi-Personalizado — Protagonista */
.plan-card.featured {
    background: rgba(252, 248, 250, 0.95);
    border: 1.5px solid rgba(201, 117, 175, 0.4);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04),
        0 0 50px rgba(201, 117, 175, 0.1);
    z-index: 2;
}

.plan-card.featured:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.06),
        0 0 70px rgba(201, 117, 175, 0.14);
}

.plan-card.featured .plan-header h3 {
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.plan-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: linear-gradient(135deg, var(--primary), #c585b1);
    color: white;
    padding: 0.5rem 1.1rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow:
        0 6px 20px rgba(201, 117, 175, 0.35),
        0 2px 6px rgba(201, 117, 175, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.plan-header h3 {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.plan-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-lg);
}

.plan-price {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-gray);
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.period {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.plan-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

.plan-options {
    display: grid;
    gap: 0.6rem;
    margin-bottom: var(--spacing-lg);
}

.option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.2rem;
    background: rgba(245, 243, 240, 0.85);
    border-radius: 10px;
    font-size: 0.92rem;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
}

.option:hover {
    transform: translateX(2px);
    background: rgba(252, 240, 247, 0.95);
}

.option-label {
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.1px;
}

.option-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.2px;
}

.plan-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.plan-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.plan-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.plan-card .btn {
    width: 100%;
}

.plan-tagline {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin: 0.25rem 0 0;
    font-weight: 500;
    letter-spacing: 0.1px;
}

/* Info pills — bloques full-width premium */
.planes-info {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    max-width: 1020px;
    margin: 0 auto var(--spacing-xl);
}

.info-pill {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 18px;
    padding: 1.1rem 1.5rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.info-pill:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.info-pill-highlight {
    background: linear-gradient(135deg, rgba(252, 232, 246, 0.85), rgba(247, 218, 238, 0.95));
    border-color: rgba(201, 117, 175, 0.18);
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 117, 175, 0.15), rgba(224, 184, 214, 0.25));
    border: 1px solid rgba(201, 117, 175, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.info-icon svg {
    width: 22px;
    height: 22px;
}

.info-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.7rem;
    flex: 1;
    color: var(--text-primary);
    font-size: 0.92rem;
}

.info-title {
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.1px;
}

.info-detail {
    color: var(--text-secondary);
    font-weight: 400;
}

.info-amount {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
}

.info-divider {
    width: 1px;
    height: 16px;
    background: rgba(15, 15, 15, 0.12);
}

.planes-cta {
    text-align: center;
}

/* FAQ Section */
.faq {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background-color: #ebe6db;
    background-image: url('../assets/images/concrete-bg.jpg');
    background-size: 140% auto;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    align-items: start;
}

.faq-item {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 117, 175, 0.3);
    box-shadow: var(--card-shadow-hover);
}

.faq-trigger {
    width: 100%;
    padding: var(--spacing-lg);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
    font-family: var(--font-main);
    font-weight: 600;
    color: var(--text-primary);
}

.faq-trigger:hover {
    background: rgba(252, 240, 247, 0.5);
    color: var(--primary);
}

.faq-q {
    text-align: left;
    font-size: 0.95rem;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 var(--spacing-lg);
    background: rgba(255, 255, 255, 0.4);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: var(--spacing-lg);
}

.faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Testimonios */
/* Testimonios — Premium Redesign */
.testimonios {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background:
        radial-gradient(ellipse at 15% 10%, rgba(201, 117, 175, 0.10) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 90%, rgba(201, 117, 175, 0.08) 0%, transparent 45%),
        linear-gradient(180deg, #0a0a0a 0%, var(--dark) 50%, #0a0a0a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonios .container {
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    padding: 0.4rem 1rem;
    background: rgba(201, 117, 175, 0.1);
    border: 1px solid rgba(201, 117, 175, 0.25);
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.testimonios .section-header h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.75rem);
}

.testimonios .section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Stats premium */
.testimonios-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
    padding: var(--spacing-lg) var(--spacing-xl);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    letter-spacing: -1.5px;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
}

.stat-plus {
    color: var(--primary);
    font-size: 0.7em;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    letter-spacing: 0.3px;
    line-height: 1.4;
    max-width: 160px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* Testimonios grid */
.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
}

.testimonio-card {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, background 0.5s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.testimonio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 117, 175, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonio-card::after {
    content: '';
}

.testimonio-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 117, 175, 0.3);
}

.testimonio-card:hover::before {
    opacity: 1;
}

.testimonio-card:hover::after {
    color: rgba(201, 117, 175, 0.3);
}

.testimonio-stars {
    display: inline-flex;
    gap: 2px;
    color: #FFC93D;
}

.testimonio-stars svg {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 0 4px rgba(255, 201, 61, 0.3));
}

.testimonio-quote {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    font-style: normal;
    letter-spacing: 0.1px;
    flex: 1;
}

.testimonio-footer {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonio-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--avatar-gradient, linear-gradient(135deg, var(--primary), var(--primary-light)));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    letter-spacing: 0;
}

.testimonio-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonio-name {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.1px;
}

.testimonio-meta {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    letter-spacing: 0.2px;
}

.testimonio-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
}

.testimonio-top .testimonio-stars {
    flex-shrink: 0;
}

.testimonio-tag {
    padding: 0.3rem 0.75rem;
    background: rgba(201, 117, 175, 0.15);
    border: 1px solid rgba(201, 117, 175, 0.3);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

/* Google reviews CTA */
.testimonios-google {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.8rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 auto;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, border-color 0.4s ease;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.testimonios-google svg:first-child {
    width: 18px;
    height: 18px;
    color: #FFC93D;
}

.testimonios-google .arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonios-google:hover {
    transform: translateX(-50%) translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 117, 175, 0.4);
    color: white;
}

.testimonios-google:hover .arrow-icon {
    transform: translateX(4px);
}

/* Ubicaciones */
.ubicaciones {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background-color: #ebe6db;
    background-image: url('../assets/images/concrete-bg.jpg');
    background-size: 140% auto;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

.ubicaciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.ubicacion-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.ubicacion-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.ubicacion-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.ubicacion-pin {
    width: 28px;
    height: 28px;
    color: var(--primary);
    flex-shrink: 0;
}

.ubicacion-card h3 {
    margin-bottom: 2px;
    color: var(--primary);
    font-size: 1.15rem;
}

.ubicacion-barrio {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ubicacion-card p {
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.ubicacion-details {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
}

.ubicacion-map {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.ubicaciones-horario-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 18px;
    padding: 1rem 1.5rem;
    box-shadow: var(--card-shadow);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.horario-pill-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 117, 175, 0.15), rgba(224, 184, 214, 0.25));
    border: 1px solid rgba(201, 117, 175, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.horario-pill-icon svg {
    width: 18px;
    height: 18px;
}

.horario-pill-label {
    font-weight: 700;
    font-size: 0.95rem;
}

.horario-pill-sep {
    color: rgba(0, 0, 0, 0.2);
    font-weight: 300;
}

/* CTA Final */
.cta-final {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.cta-content p:last-of-type {
    margin-bottom: var(--spacing-lg);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: var(--spacing-3xl) var(--spacing-lg) var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.footer-section h4 {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-light);
}

.footer-trabaja {
    text-align: center;
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: var(--spacing-lg);
}

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--spacing-lg);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
}

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

.modal-content h2 {
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.modal-content form {
    display: grid;
    gap: var(--spacing-md);
}

.modal-content input,
.modal-content textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.95rem;
}

.modal-content input:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201,117,175,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--border-gray);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .nav-menu.active {
        max-height: 400px;
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
    }

    .nav-link {
        width: 100%;
        padding: var(--spacing-sm) 0;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-content {
        max-width: 90%;
    }

    .hero-h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .btn-hero {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
    }

    .ps-content {
        grid-template-columns: 1fr;
    }

    .ps-divider {
        transform: rotate(90deg);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .planes-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .plan-card.featured:hover {
        transform: translateY(-8px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-h1 {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .btn-hero {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    .diferencial-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        margin-bottom: var(--spacing-2xl);
    }

    .modal-content {
        padding: var(--spacing-lg);
    }
}
