/* AUDANTES - Professional Styles | Responsive & High Impact */

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

/* Selección de texto - contraste audaz */
::selection {
    background: var(--purple);
    color: var(--white);
}

::-moz-selection {
    background: var(--purple);
    color: var(--white);
}

:root {
    --purple: #7F00FF;
    --purple-light: #9D4EDD;
    --purple-glow: rgba(127, 0, 255, 0.4);
    --black: #0a0a0a;
    --gray: #1a1a1a;
    --gray-light: #252525;
    --white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dim: rgba(255, 255, 255, 0.5);
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --transition: 0.3s ease;
    --shadow-glow: 0 20px 50px rgba(127, 0, 255, 0.25);
    --safe-bottom: env(safe-area-inset-bottom, 1rem);
    --safe-top: env(safe-area-inset-top, 0);
    --header-h: 72px;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--black);
    color: var(--white);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    letter-spacing: 0.03em;
    line-height: 1.1;
    text-transform: uppercase;
}

.no-js .nav-toggle {
    display: none;
}

.no-js .nav-links {
    display: flex;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 1.5rem);
}

/* Ticker - Carrusel infinito premium (derecha a izquierda) */
.ticker-bar {
    position: relative;
    background: linear-gradient(90deg, rgba(127, 0, 255, 0.18) 0%, rgba(157, 78, 221, 0.12) 50%, rgba(127, 0, 255, 0.18) 100%);
    border-top: 1px solid rgba(127, 0, 255, 0.25);
    border-bottom: 1px solid rgba(127, 0, 255, 0.25);
    overflow: hidden;
    white-space: nowrap;
    padding: 0.75rem 0;
    user-select: none;
    box-shadow: 0 4px 24px rgba(127, 0, 255, 0.08);
}

.ticker-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--black) 0%, transparent 8%, transparent 92%, var(--black) 100%);
    pointer-events: none;
    z-index: 1;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    animation: ticker 40s linear infinite;
    padding-left: 2rem;
}

.ticker-item {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    letter-spacing: 0.12em;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.92) 50%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(127, 0, 255, 0.3));
}

.ticker-sep {
    width: 6px;
    height: 6px;
    background: var(--purple);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--purple-glow);
    flex-shrink: 0;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(127, 0, 255, 0.15);
    z-index: 1000;
    padding: 0.875rem 0;
    padding-top: max(0.875rem, var(--safe-top));
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
    min-height: 44px;
    align-items: center;
}

.logo-img {
    width: 42px;
    height: 42px;
    filter: drop-shadow(0 0 6px var(--purple-glow));
    transition: filter var(--transition);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 12px rgba(127, 0, 255, 0.7));
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Hamburger - solo móvil */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    z-index: 1002;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    border-color: var(--purple);
    background: rgba(127, 0, 255, 0.1);
    outline: none;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.navbar.is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar.is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.navbar.is-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-overlay {
        display: none !important;
    }
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.is-open .nav-overlay {
    display: block;
    opacity: 1;
}

.nav-links {
    display: flex;
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    bottom: auto;
    width: min(320px, 90vw);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background: rgba(15, 10, 25, 0.99);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(127, 0, 255, 0.4);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease, visibility 0.35s;
    visibility: hidden;
    z-index: 1001;
    max-height: calc(100vh - 3rem);
    overflow: visible;
}

.navbar.is-open .nav-links {
    transform: translateX(0);
    visibility: visible;
}

@media (min-width: 768px) {
    .nav-links {
        position: static;
        width: auto;
        flex-direction: row;
        background: transparent;
        border: none;
        padding: 0;
        transform: none;
        visibility: visible;
        gap: clamp(1.25rem, 3vw, 2rem);
        max-height: none;
        overflow: visible;
    }
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--purple);
    outline: none;
}

@media (min-width: 768px) {
    .nav-links a {
        font-size: 1rem;
        padding: 0;
        min-height: auto;
    }
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--purple);
    color: var(--purple);
    padding: 0.5rem 1rem;
    min-height: 44px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.lang-btn:hover,
.lang-btn:focus-visible {
    background: var(--purple);
    color: var(--white);
    outline: none;
}

/* Hero - Impacto visual */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: clamp(3rem, 8vw, 5rem) 0;
    position: relative;
    padding-top: max(clamp(3rem, 8vw, 5rem), var(--safe-top));
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(127, 0, 255, 0.18) 0%, transparent 55%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, var(--black) 85%);
    pointer-events: none;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(127, 0, 255, 0.2);
    border: 1px solid rgba(127, 0, 255, 0.45);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    animation: fadeUp 0.8s ease both;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title span {
    display: block;
    font-size: clamp(2rem, 9vw, 4.5rem);
    animation: fadeUp 0.7s ease both;
}

.hero-title span:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-title span:nth-child(2) {
    animation-delay: 0.18s;
}

.hero-title span:nth-child(3) {
    animation-delay: 0.26s;
}

.hero-title span:nth-child(4) {
    animation-delay: 0.34s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient {
    background: linear-gradient(135deg, #7F00FF 0%, #FF00FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.hero-desc {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
    color: var(--text-muted);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeUp 0.7s 0.4s ease both;
    text-align: justify;
}

.hero-ctas {
    display: flex;
    gap: clamp(0.75rem, 2vw, 1rem);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    animation: fadeUp 0.7s 0.5s ease both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem clamp(1.25rem, 3vw, 2rem);
    min-height: 52px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition);
    border: 2px solid;
}

.btn:focus-visible {
    outline: 2px solid var(--purple);
    outline-offset: 3px;
}

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

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
}

.btn-secondary:hover {
    border-color: var(--purple);
    background: rgba(127, 0, 255, 0.12);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeUp 0.7s 0.6s ease both;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--purple);
}

.stat-label {
    font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dim);
}

.hero-region {
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-region strong {
    color: var(--purple);
}

/* Reveal al hacer scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sections Base */
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    font-size: clamp(1rem, 2vw, 1.125rem);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.solutions,
.pricing,
.testimonials,
.contact,
.process,
.faq {
    padding: clamp(3rem, 8vw, 5rem) 0;
}

.solutions {
    background: var(--gray);
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    gap: clamp(1.25rem, 3vw, 2rem);
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: rgba(10, 10, 10, 0.6);
    border: 2px solid rgba(127, 0, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    transition: all var(--transition);
}

.card:hover {
    border-color: var(--purple);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.card-icon {
    width: clamp(3.25rem, 5vw, 4rem);
    height: clamp(3.25rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--text-muted);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    text-align: justify;
}

/* Manifiesto - sección visible */
.manifesto-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(127, 0, 255, 0.06) 0%, transparent 50%);
    border-top: 1px solid rgba(127, 0, 255, 0.15);
    border-bottom: 1px solid rgba(127, 0, 255, 0.15);
}

.manifesto-section .section-title {
    margin-bottom: 0.5rem;
}

.manifesto-lead {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.manifesto-block {
    max-width: 680px;
    margin: 0 auto 2rem;
    padding: 2rem clamp(1.5rem, 4vw, 2.5rem);
    background: rgba(127, 0, 255, 0.06);
    border: 1px solid rgba(127, 0, 255, 0.2);
    border-radius: var(--radius-lg);
    position: relative;
}

.manifesto-block::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    color: var(--purple);
    opacity: 0.35;
    line-height: 1;
}

.manifesto-text {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.75;
    color: var(--text-muted);
    font-weight: 400;
    position: relative;
    z-index: 1;
    text-align: justify;
}

.manifesto-text em {
    color: var(--purple-light);
    font-style: italic;
}

.manifesto-cta {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

/* Pricing */
.pricing-grid {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2rem);
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }
}

.plan {
    display: flex;
    flex-direction: column;
    background: var(--gray);
    border: 2px solid rgba(127, 0, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    transition: all var(--transition);
    position: relative;
}

.plan:hover {
    border-color: var(--purple);
    transform: translateY(-6px);
}

.plan.popular {
    border-color: var(--purple);
    border-width: 3px;
}

@media (min-width: 1024px) {
    .plan.popular {
        transform: scale(1.03);
    }

    .plan.popular:hover {
        transform: scale(1.03) translateY(-6px);
    }
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.plan-header p {
    color: rgba(255, 255, 255, 0.6);
}

.plan-price {
    background: rgba(10, 10, 10, 0.5);
    border-radius: var(--radius-md);
    padding: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 1.5rem;
}

.price-setup {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(127, 0, 255, 0.2);
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

.price-monthly {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-monthly strong {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--purple);
}

.plan-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.plan>.btn {
    margin-top: auto;
    align-self: center;
    width: auto;
    min-width: 180px;
}

.plan-features li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: clamp(0.875rem, 1.5vw, 0.95rem);
}

.plan-features i {
    color: var(--purple);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.btn-outline {
    background: transparent;
    border-color: var(--purple);
    color: var(--purple);
    width: 100%;
    justify-content: center;
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: var(--purple);
    color: var(--white);
    outline: none;
}

/* ------------------------------------------
   NUEVO: SECCIÓN ADD-ONS (Personalización)
   ------------------------------------------
*/
.addons-section {
    margin-top: 4rem;
    border-top: 1px solid rgba(127, 0, 255, 0.2);
    padding-top: 3rem;
}

.addons-header {
    text-align: center;
    margin-bottom: 2rem;
}

.addons-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.addons-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.addons-grid {
    display: grid;
    gap: clamp(1rem, 2vw, 1.5rem);
    max-width: 900px;
    margin: 0 auto;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .addons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.addon-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: clamp(1.25rem, 2vw, 1.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--transition);
}

.addon-card:hover {
    background: rgba(127, 0, 255, 0.05);
    border-color: var(--purple);
    transform: translateY(-4px);
}

.addon-icon {
    color: var(--purple);
    margin-bottom: 1rem;
}

.addon-info h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.addon-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.addon-price {
    font-weight: 700;
    color: var(--white);
    background: rgba(127, 0, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 1rem;
}

/* Custom Project Card Style */
.addon-card.custom-project {
    border-color: rgba(127, 0, 255, 0.4);
    background: linear-gradient(145deg, rgba(127, 0, 255, 0.05), transparent);
}

.btn-sm {
    display: inline-block;
    background: var(--purple);
    color: var(--white);
    text-decoration: none;
    padding: 0.4rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    transition: background 0.3s;
}

.btn-sm:hover {
    background: #9D4EDD;
}

/* ------------------------------------------
   TESTIMONIOS - REESTRUCTURA PREMIUM
   ------------------------------------------
*/

.testimonials {
    background: var(--gray);
}

.carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-track {
    display: flex;
    justify-content: center;
    width: 100%;
}

.testimonial {
    width: 100%;
    max-width: 800px;
    min-height: 380px;
    padding: clamp(1.5rem, 4vw, 3rem);
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(127, 0, 255, 0.15);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.testimonial:hover {
    border-color: var(--purple);
    box-shadow: 0 15px 50px rgba(127, 0, 255, 0.15);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-badge {
    background: rgba(127, 0, 255, 0.15);
    color: var(--purple);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(127, 0, 255, 0.3);
}

.testimonial-text {
    font-family: 'Lato', sans-serif;
    font-size: clamp(1.05rem, 2.5vw, 1.4rem);
    font-weight: 300;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    min-height: 140px;
    text-align: justify;
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.testimonial-role {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.3rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(127, 0, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--purple);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--purple);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .testimonial-header {
        flex-direction: column;
        gap: 1rem;
    }

    .carousel {
        min-height: 420px;
    }

    .testimonial {
        min-height: 380px;
    }

    .carousel-dots {
        margin-top: 1.5rem;
    }
}

/* ------------------------------------------
   NUEVO: SECCIÓN PROCESO
   ------------------------------------------
*/
.process {
    padding: 5rem 0;
    border-bottom: 1px solid rgba(127, 0, 255, 0.1);
}

.process-steps {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2rem);
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-left: 3px solid rgba(127, 0, 255, 0.3);
    background: linear-gradient(90deg, rgba(127, 0, 255, 0.05), transparent);
    transition: all var(--transition);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.step:hover {
    border-left-color: var(--purple);
    background: linear-gradient(90deg, rgba(127, 0, 255, 0.1), transparent);
}

.step-number {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 0;
    right: 1rem;
    line-height: 1;
}

.step h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--purple);
}

.step p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: justify;
}

/* ------------------------------------------
   NUEVO: SECCIÓN FAQ
   ------------------------------------------
*/
.faq {
    padding: 5rem 0;
    background: #050505;
}

.faq-grid {
    display: grid;
    gap: clamp(1.25rem, 2vw, 2rem);
    max-width: 900px;
    margin: 0 auto;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.faq-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    text-align: justify;
}

/* Contact & Form */
.contact-form {
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

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

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-muted);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(127, 0, 255, 0.25);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-dim);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(127, 0, 255, 0.2);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239D4EDD' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.form-actions .btn {
    min-height: 52px;
}

.form-actions .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-status {
    margin-top: 1rem;
    font-size: 0.95rem;
    min-height: 1.4em;
}

.form-status.success {
    color: #34D399;
}

.form-status.error {
    color: #F87171;
}

.contact-or {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.contact-btns {
    display: flex;
    gap: clamp(0.75rem, 2vw, 1rem);
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btns .btn {
    min-width: min(100%, 280px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.btn-email {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
}

.btn-email:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: #000;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(127, 0, 255, 0.2);
}

.footer-manifesto {
    max-width: 720px;
    margin: 0 auto 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-manifesto-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--purple);
    margin-bottom: 0.75rem;
}

.footer-manifesto-text {
    font-size: 0.8rem;
    line-height: 1.65;
    color: var(--text-dim);
    font-weight: 300;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-brand span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-copy {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp Float - Responsive y safe area */
.wa-float {
    position: fixed;
    bottom: max(1.25rem, var(--safe-bottom));
    right: max(1rem, env(safe-area-inset-right, 1rem));
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
    animation: pulse 2s infinite;
}

@media (min-width: 768px) {
    .wa-float {
        width: 60px;
        height: 60px;
        bottom: 2rem;
        right: 2rem;
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.08);
    }
}

.wa-float:hover {
    transform: scale(1.1);
}

.wa-float:focus-visible {
    outline: 2px solid #25D366;
    outline-offset: 3px;
}

/* Efecto de cursor que sigue al mouse (sutil y audaz) */
.cursor-glow {
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 0, 255, 0.14) 0%, rgba(127, 0, 255, 0.04) 45%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: opacity 0.2s ease;
}

.cursor-glow.is-hidden {
    opacity: 0;
}

@media (hover: none),
(pointer: coarse) {
    .cursor-glow {
        display: none !important;
    }
}