﻿/*
┌────────────────────────────────┐
│        Index   site.css        │
└────────────────────────────────┘
*/
html {
    font-size: 14px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.white {
    color: white;
}

/* Fluya Studio Logo */
.logo-glow {
    border-radius: 4px;
    filter: drop-shadow(0 0 6px #ea4472);
    transition: filter 0.3s ease;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.2), 0 0 8px rgba(255, 255, 255, 0.3);
}

    .logo-glow:hover {
        filter: drop-shadow(0 0 10px #ea4472) brightness(1.1);
    }

.navbar-nav {
    display: flex;
    flex-direction: column;
}

.navbar-collapse {
    flex-basis: auto !important;
    flex-grow: 0 !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
}

.navbar-nav {
    padding-left: revert-layer;
}

.custom-navbar {
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    border-bottom: none;
    box-shadow: none;
    padding-top: 8px;
    padding-bottom: 8px;
}

.custom-navbar .nav-contacto {
    color: #fdb600;
    font-weight: 600;
    padding: 8px 12px;
    text-decoration: none;
}

.nav-contacto:hover {
    color: #fff;
    text-shadow: 0 0 6px rgba(234, 68, 114, 0.6), 0 0 12px rgba(234, 68, 114, 0.8);
}

.custom-navbar .nav-link {
    color: #fff;
    font-weight: 500;
    transition: color 0.2s;
}

    .custom-navbar .nav-link:hover {
        color: var(--color-accent);
    }

.custom-navbar .navbar-brand {
    color: var(--color-accent);
}

    .custom-navbar .navbar-brand:hover {
        color: #fff;
    }

/* Custom Glow */
.custom-navbar .nav-link {
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.2), 0 0 8px rgba(255, 255, 255, 0.3);
}

    .custom-navbar .nav-link:hover {
        text-shadow: 0 0 4px rgba(255, 255, 255, 0.2), 0 0 8px rgba(255, 255, 255, 0.3);
    }

.custom-navbar .navbar-brand {
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.2), 0 0 8px rgba(255, 255, 255, 0.3);
}

    .custom-navbar .navbar-brand:hover {
        text-shadow: 0 0 4px rgba(255, 255, 255, 0.2), 0 0 8px rgba(255, 255, 255, 0.3);
    }

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.15);
}

.navbar-toggler-icon {
    filter: invert(100%);
}

html {
    position: relative;
    min-height: 100%;
}

body {
    background: linear-gradient(to bottom, #0d0b14, #5618f7);
    font-family: var(--font-main);
    color: var(--color-dark);
}

:root {
    --color-bg: #f7fafc;
    --color-primary: #14b8a6;
    --color-secondary: #2563eb;
    --color-dark: #18181b;
    --color-light: #fff;
    --color-accent: #4ade80;
    --font-main: 'Montserrat', Arial, sans-serif;
    --font-alt: 'Roboto', Arial, sans-serif;
    /*--shadow-card: 0 8px 32px 0 rgba(31, 38, 135, 0.08);*/
    --transition-fast: 0.2s cubic-bezier(.4,0,.2,1);
}

* {
    box-sizing: border-box;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
}

/* HEADER / HERO */
header.hero {
    background: linear-gradient(to bottom, #0d0b14, #5618f7);
    color: var(--color-light);
    padding: 60px 0 40px 0;
    text-align: center;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    padding-bottom: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.hero-text,
.hero-image {
    flex: 1;
}

.mockup-img {
    max-width: 100%;
    height: auto;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

header p {
    font-size: 1.30rem;
    max-width: 600px;
    margin: 36px auto 36px auto;
    font-weight: 400;
}

.hero-actions {
    margin-bottom: 40px;
}

.cta-btn {
    background: var(--color-accent);
    color: var(--color-dark);
    border: none;
    border-radius: 32px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 12px;
    box-shadow: 0 3px 16px 0 rgba(20,184,166,0.11);
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.cta-btn:hover {
    background: var(--color-light);
    color: var(--color-secondary);
    transform: translateY(-3px) scale(1.03);
}

.hero-video {
    margin: 36px auto 0 auto;
    max-width: 900px;
    border-radius: 18px;
    overflow: hidden;
}

.hero-mockup.fade-in.fade-in-4.visible {
    padding-right: 50px;
}

/* Social Media Icons */
.fade-in img {
    width: 436px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
    transition: transform 0.2s;
}

.fade-in img:hover {
    transform: scale(1.15);
}

/* Propuestas */
.solution-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(30px);
    opacity: 0;
}

.solution-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-item {
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.feature-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.feature-item:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.05);
}

.cta-button {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.cta-button.animate {
    opacity: 1;
    transform: translateY(0);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -12px rgba(139, 92, 246, 0.4);
}

.section-title {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s ease;
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 45rem;
    border-radius: 1rem
}

.glass-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.avatar {
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.rating-stars {
    color: #fbbf24;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.company-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.3s;
}

.stagger-3 {
    animation-delay: 0.5s;
}

.stagger-4 {
    animation-delay: 0.7s;
}

.stagger-5 {
    animation-delay: 0.9s;
}

.stagger-6 {
    animation-delay: 1.1s;
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(168, 85, 247, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.quote-mark {
    font-size: 4rem;
    line-height: 1;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 10px;
}

/* GENERAL SECTIONS */
section {
    max-width: 100%;
    box-shadow: var(--shadow-card);
    padding: 0;
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
    color: #fff;
    position: relative;
    overflow: hidden;
}
/* ———————————————————————————————
   SECTIONS CON FONDO DEGRADADO
  ——————————————————————————————— */
.section-content {
    padding: 64px 32px;
    box-shadow: var(--shadow-card);
    color: #fff;
    max-width: 100%;
    max-height: 100%;
    min-width: 100%;
    min-height: 100%;
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}
/* SOLUCIONES DESTACADAS CARROUSEL INFINITO */
.carousel-track {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-slide {
    display: flex;
    gap: 30px;
    animation: scrollCarousel 20s linear infinite;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.feature-card {
    min-width: 100px;
    max-width: 400px;
    flex-shrink: 0;
}
/* Cada sección con su gradiente */
#quienes {
    background: linear-gradient(to bottom, #5618f7, #8c3af0);
}
/* SOLUCIONES BACKGROUND */
#soluciones {
    position: relative;
    padding: 46px 0 30px;
    background: radial-gradient(1200px 520px at 18% 35%, rgba(86,24,247,.24), transparent 60%), radial-gradient(980px 520px at 82% 40%, rgba(234,68,114,.18), transparent 62%), radial-gradient(980px 620px at 50% 120%, rgba(253,182,0,.12), transparent 62%);
}

#soluciones::before {
    content: "";
    display: none;
}

#funciona {
    background: linear-gradient(to bottom, #ea4472, #fdb600);
}

#instagram {
    background: linear-gradient(to bottom, #ea4472, #fdb600);
}

#recursos {
    background: linear-gradient(to bottom, #fdb600, #0d0b14);
}

.section-content:hover {
    box-shadow: 0 12px 64px rgba(44,101,180,0.10);
}

.content-gradient {
    padding: 0; 
}

.content-white {
    /*background-color: white;*/
    padding: 48px 32px;
    margin: 16px; 
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    color: #fff;
    justify-content: center !important;
    align-items: center !important;
}
/* Títulos */
.content-white h2 {
    color: #fff;
    margin-top: 0;
    font-family: var(--font-alt);
    font-size: 2rem;
    font-weight: 500;
    justify-content: center !important;
    align-items: center !important;
}

.content-white p {
    font-size: 1.12rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #fff;
    justify-content: center !important;
    align-items: center !important;
}

section h2 {
    font-family: var(--font-alt);
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    margin-top: 0;
}

.content-white {
    /*background-color: white;*/
    padding: 48px 32px;
    border-radius: 22px;
    box-shadow: var(--shadow-card);
    color: #fff;
    justify-content: center !important;
    align-items: center !important;
}

.content-white h2 {
    color: var(--color-dark);
    margin-top: 0;
    font-family: var(--font-alt);
    font-size: 2rem;
    font-weight: 500;
}

.content-white p {
    font-size: 1.12rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--color-dark);
}

/* Clases para h2 & p */
.text-white-fr {
    color: #fff !important;
    margin-top: 0 !important;
    font-family: var(--font-alt) !important;
    font-size: 2rem !important;
    font-weight: 500 !important;
}

.text-white-h2 {
    color: black !important;
    margin-top: 0 !important;
    font-family: var(--font-alt) !important;
    font-size: 2rem !important;
    font-weight: 500 !important;
}

.text-white-p {
    font-size: 1.12rem !important;
    line-height: 1.7 !important;
    margin-bottom: 24px !important;
    color: black !important;
}

.divider {
    height: 1.5px;
    background: linear-gradient(90deg, var(--color-primary)40%, var(--color-secondary) 100%);
    border: none;
    margin: 72px auto 52px auto;
    opacity: 0.09;
    max-width: 860px;
}

/* DESTACADOS */
.features-list {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    margin-top: 34px;
    margin-bottom: 14px;
}

.feature-card {
    border-radius: 14px;
    padding: 26px 24px;
    box-shadow: 0 4px 18px rgba(20,184,166,0.09);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background 0.3s;
    cursor: pointer;
    border-left: 5px solid var(--color-secondary);
    color: var(--color-dark);
}

.feature-card:hover {
    background: var(--color-accent);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
    transform: scale(1.04) translateY(-4px);
}

.feature-card h3 {
    margin-top: 0;
    font-size: 1.15rem;
    font-weight: 700;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
    display: inline-block;
    color: var(--color-primary);
}
/* TEAM / TESTIMONIALS */
.mini-team {
    display: flex;
    gap: 26px;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.team-card {
    background: #e7f7f4;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    overflow: hidden;
    border: 2.5px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 9px rgba(20,184,166,0.09);
    position: relative;
}

.team-card img {
    width: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.01rem;
    margin-top: 6px;
    color: var(--color-secondary);
    font-weight: 600;
    text-align: center;
}
/* CALL TO ACTION */
.cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(100deg, var(--color-accent), var(--color-primary) 85%);
    box-shadow: var(--shadow-card);
    border-radius: 16px;
    padding: 34px 32px;
    margin-top: 36px;
}

.cta-bar-text {
    color: var(--color-dark);
    font-size: 1.28rem;
    font-weight: 500;
}

.cta-bar .cta-btn {
    margin: 0;
}

@media (max-width:700px) {
    .cta-bar {
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
    }
}

/* FOOTER */
footer {
    background: #161b22;
    color: #c1e4e6;
    text-align: center;
    padding: 36px 0 10px;
    font-size: 1.09rem;
}

.footer-social {
    margin: 8px 0 8px 0;
}

.footer-social a {
    color: var(--color-accent);
    margin-right: 18px;
    font-size: 1.45rem;
    transition: color .15s;
}

.footer-social a:hover {
    color: var(--color-primary);
}

.footer-links {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #79fe8f;
}

.footer-social.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin: 8px 0 8px 0;
}

.footer-social.social-links a {
    margin-right: 0;
}

.d-flex.align-items-center.gap-2.mx-auto.justify-content-center {
    padding-right: 22px;
}

/* Zoom Items */
.zo-wrap {
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

.zo-wrap img.zo {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.zo-wrap:hover img.zo {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.hero-mockup {
    position: relative;
    display: inline-block;
    width: fit-content;
    isolation: isolate;
}

.hero-mockup::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: clamp(420px, 60vw, 820px);
    height: clamp(420px, 60vw, 820px);
    transform: translate(-50%, -50%);
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    /* Glow circular */
    background: radial-gradient(circle, rgba(234, 68, 114, .22) 0%, rgba(86, 24, 247, .18) 35%, transparent 70%);
    /* Gaussian blur */
    filter: blur(34px);
    opacity: .95;
    -webkit-mask-image: radial-gradient(circle, #000 45%, transparent 72%);
    mask-image: radial-gradient(circle, #000 45%, transparent 72%);
}

.hero-mockup .mockup-img {
    position: relative;
    z-index: 1;
    display: block;
    filter: drop-shadow(0 18px 40px rgba(0,0,0,.45));
}

.hero-image,
.hero-video,
.hero-mockup {
    overflow: visible !important;
}

.fade-in-1 {
    animation-delay: 0.2s
}

.fade-in-2 {
    animation-delay: 0.5s
}

.fade-in-3 {
    animation-delay: 0.8s
}

.fade-in-4 {
    animation-delay: 1.1s
}

@keyframes fadeInMove {
    0% {
        opacity: 0;
        transform: translateY(26px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width:900px) {
    section {
        padding: 0;
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width:520px) {
    header h1 {
        font-size: 1.5rem;
    }

    header p {
        font-size: 1.01rem;
    }
}

/* CONTACTO */
body {
    margin: 0;
    font-family: sans-serif;
}

.contact-side {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    display: flex;
    z-index: 1000;
    flex-direction: row-reverse;
}

.contact-trigger {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    background: black;
    color: white;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 20px 10px;
    cursor: pointer;
}

.contact-form-container {
    width: 0;
    top: 60%;
    right: calc(100% + 1px);
    transform: translateY(-50%);
    position: absolute;
    overflow: hidden;
    background: white;
    transition: width 0.4s ease;
    padding: 0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.contact-form-container.open {
    width: 500px;
    height: 34rem;
    padding: 40px 30px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 5px;
}

button {
    padding: 10px;
    background-color: #add8f0;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background-color: #8ecae6;
}

/* INSTAGRAM SCROLLING POST */
.insta-wrapper {
    opacity: 0;
    transform: translateX(-200px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    display: flex;
    justify-content: flex-start; /* Alinea a la izquierda */
    padding-left: 380px; /* Margen interior a la izquierda para que no quede pegado */
    max-width: 700px; /* Máximo ancho consistente con embed */
    margin: 0 auto 40px 0; /* Margen inferior y margen derecho automático para separar */
    box-sizing: border-box; /* Considera padding dentro del ancho */
}
.insta-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

@keyframes fadeSlideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-content {
    display: flex;
    justify-content: center;
    background: #f6f8fa;
    padding: 48px 0;
}

.content-white {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    max-width: 860px;
    width: 100%;
    padding: 48px 36px 40px 36px;
    margin: 0 auto;
}

.text-white-h2 {
    font-size: 2.4rem;
    font-weight: bold;
    color: black;
    margin-bottom: 1.5rem;
}

.text-white-p {
    color: black;
    font-size: 1.13rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}
/* Mini Team Cards */
.mini-team {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.team-card {
    background: #f5f6fa;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(36,61,113,0.05);
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s;
}

.team-card img {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: 3px solid #e8eaf0;
    object-fit: cover;
    box-shadow: 0 0 4px rgba(36,61,113,0.13);
}

.team-card:hover {
    box-shadow: 0 6px 24px rgba(36,61,113,0.12);
}

.team-name {
    margin-left: 20px;
    font-size: 1.04rem;
    color: #1452d1;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.hero-mockup {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.8s;
    text-align: center;
    align-items: center;
}

.hero-mockup {
    display: flex;
    flex-direction: column; /* Apila imagen y botón */
    align-items: center; /* Centra horizontalmente */
    gap: 20px; /* Espacio entre la imagen y el botón */
}
.hero-mockup img {
    display: block;
    max-width: 100%;
    height: auto;
}

.button-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    margin-top: 20px; /* Space between image and button */
}

.mockup-img {
    width: 150% !important;
    max-width: 900px;
    height: 150% !important;
    display: block;
    margin: 40px auto 20px;
    border-radius: 20px;
}

.mockup-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    text-align: center;
}
/* Fade-in animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ANIMACIÓN: "Quiénes Somos" - Desliza desde la derecha, termina centrada */
#quienes .content-white {
    opacity: 0;
    transform: translateX(200px); /* inicia desplazada a la derecha */
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    max-width: 700px;
    margin: 0 auto 40px auto; /* CENTRADO horizontal */
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
}

#quienes .content-white.visible {
    opacity: 1;
    transform: translateX(0);
}
/* Animación para la sección ¿Cómo Funciona? - slide desde la izquierda (puedes cambiar a derecha si quieres) */
#funciona .content-white {
    opacity: 0;
    transform: translateX(-200px); /* inicia desplazada a la izquierda */
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    max-width: 700px;
    margin: 0 auto 40px auto; /* centrado horizontal con margen abajo */
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
}

#funciona .content-white.visible {
    opacity: 1;
    transform: translateX(0); /* posición final centrada */
}
/* Animación para la sección Recursos - Desliza desde la derecha y termina centrada */
#recursos .content-white {
    opacity: 0;
    transform: translateX(200px); /* inicio desplazado a la derecha */
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    max-width: 700px;
    margin: 0 auto 40px auto; /* centrado horizontal, margen inferior */
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
}

#recursos .content-white.visible {
    opacity: 1;
    transform: translateX(0); /* posición final centrada */
}
/* FLIP CARDS */
/* Nuevas variables de color basadas en tu ejemplo de Tailwind */
:root {
    --color-gradient-start: #4c1d95;
    --color-gradient-mid: #1e3a8a;
    --color-gradient-end: #1e40af;
    --color-purple-200: #d8b4fe;
}

.ia-grid-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
    color: white;
    margin-bottom: 2rem;
    padding-top: 40px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.grid-item {
    perspective: 1000px;
    height: 320px;
    position: relative;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
}

.grid-item.flipped .flip-card-inner {
    transform: rotateY(180deg);
}
/* Ambas caras con fondo sólido/translúcido para evitar transparencia molesta */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    border-radius: 1.5rem;
    color: white;
    box-sizing: border-box;
    /* Fondo con opacidad mayor para evitar que se vea contenido por detrás*/
    background: rgba(30, 30, 30, 0.95); /* fondo oscuro semiopaco */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}
/* Fondos personalizables si quieres cambiar */
.flip-card-front {
    /* Opcional: usar un fondo distinto si quieres */
}

.solution-card {
    background: transparent; /* Ya definido en las caras */
    border: none; /* Para evitar borde duplicado */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.grid-item:hover .flip-card-front {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.flip-card-back {
    transform: rotateY(180deg);
    /* Así la cara trasera también tiene fondo consistente */
    background: rgba(35,35,35,0.95);
}
/* Icono con animación flotante */
.card-icon {
    width: 96px;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.65));
    animation: float 3s ease-in-out infinite;
}
/* Texto frontal */
.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1.2;
}
/* Texto trasero */
.back-card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1.3;
}

.back-card-description {
    font-size: 0.95rem;
    color: var(--color-purple-200);
    line-height: 1.5;
    text-align: center;
}
/* Animación de flotación para icons */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}
/* Fondo degradado para toda la sección */
.ia-grid {
    background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-mid) 50%, var(--color-gradient-end) 100%);
    padding-bottom: 40px;
}
/* Responsive */
@media (max-width: 768px) {
    .ia-grid-title {
        font-size: 1.8rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .back-card-title {
        font-size: 1rem;
    }

    .back-card-description {
        font-size: 0.85rem;
    }

    .grid-item {
        height: 280px;
    }
}
/* Tarjetas de Servicio */
.service-card {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 1rem; /* rounded-2xl */
    padding: 2rem; /* p-8 */
    border: 1px solid rgba(255, 255, 255, 0.125);
}

.service-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(139, 92, 246, 0.3);
}
/* Icono emoji con animación bounce */
.icon-bounce {
    animation: bounce 2s infinite;
    user-select: none;
}
/* Animación bounce */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}
/* Animación pulse para botón */
.pulse-button {
    animation: pulse 2s infinite;
}
/* Animación pulse */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    }
}
/* Animaciones escalonadas para aparición */
.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.3s;
}

.stagger-3 {
    animation-delay: 0.5s;
}

.stagger-4 {
    animation-delay: 0.7s;
}

.stagger-5 {
    animation-delay: 0.9s;
}

.stagger-6 {
    animation-delay: 1.1s;
}
/* Para el gradiente que aparece debajo del texto */
.w-16 {
    width: 4rem;
}

.h-1 {
    height: 0.25rem;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-purple-400 {
    --tw-gradient-from: #a78bfa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0));
}

.to-blue-400 {
    --tw-gradient-to: #60a5fa;
}
/* Border radius for that rounded pill shape */
.rounded-full {
    border-radius: 9999px;
}
/* Text colors */
.text-white {
    color: white;
}

.text-purple-100 {
    color: #ddd6fe;
}

.text-purple-300 {
    color: #c4b5fd;
}
/* Fonts and text */
.font-bold {
    font-weight: 700;
}

.leading-relaxed {
    line-height: 1.625;
}

.leading-tight {
    line-height: 1.25;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 2.5rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}
/* Layout */
.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.pt-4 {
    padding-top: 1rem;
}

.p-8 {
    padding: 2rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.estadisticas-grid {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: center; /* Centra horizontalmente el conjunto */
    gap: 2rem; /* Separación entre las estadísticas */
}

.md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.text-center {
    text-align: center;
}
/* Button styles */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-purple-500 {
    --tw-gradient-from: #7c3aed;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0));
}

.to-blue-500 {
    --tw-gradient-to: #3b82f6;
}

.hover\:from-purple-600:hover {
    --tw-gradient-from: #6b21a8;
}

.hover\:to-blue-600:hover {
    --tw-gradient-to: #2563eb;
}

.text-lg {
    font-size: 1.125rem;
}

.font-bold {
    font-weight: 700;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.rounded-full {
    border-radius: 9999px;
}

.transition-all {
    transition-property: all;
}

.duration-300 {
    transition-duration: 300ms;
}

.transform {
    transform-origin: center;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.text-purple-200 {
    color: #c4b5fd;
}

.mt-4 {
    margin-top: 1rem;
}
/* BULLETS */
@keyframes fadeInMove {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconBounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

.feature-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-family: 'Work Sans', sans-serif;
    text-align: center;
    font-size: 1rem;
    border-radius: 4px;
    padding: 10px;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.feature-item .icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
    animation: iconBounce 1.5s ease-in-out infinite;
    transition: transform 0.3s ease;
    will-change: transform;
}
/* Hover dinámico */
.feature-item:hover .icon {
    transform: scale(1.2) rotate(2deg);
    animation: none; /* pausa el bounce cuando el usuario pasa el mouse */
}
/* Fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(26px);
    animation: fadeInMove 1s forwards;
}
/* Pajarito IA */
#pajarito {
    position: fixed;
    top: 120px;
    left: 40px;
    z-index: 9999;
    pointer-events: auto;
    cursor: pointer;
    transform: scaleX(-1);
}

#pajarito:hover {
    transform: scaleX(-1) scale(1.1);
}

#pajarito img {
    width: 56px;
    height: auto;
    animation: aleteo 0.6s ease-in-out infinite alternate, respirar 4s ease-in-out infinite;
    transform-origin: center;
}
/* Wing flapping */
@keyframes aleteo {
    0% {
        transform: rotateZ(-2deg) scaleY(1);
    }

    100% {
        transform: rotateZ(2deg) scaleY(0.95);
    }
}
/* Breathing - runs independently */
@keyframes respirar {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}
/* Flying state - faster wing flaps */
#pajarito.flying img {
    animation: aleteoRapido 0.3s ease-in-out infinite alternate, respirar 4s ease-in-out infinite;
}

@keyframes aleteoRapido {
    0% {
        transform: rotateZ(-4deg) scaleY(0.9);
    }

    100% {
        transform: rotateZ(4deg) scaleY(1.1);
    }
}
/* AI Icon */
.icono-animado {
    animation: animacionIcono 6s ease-in-out infinite;
    transition: transform 0.3s ease;
    display: inline-block;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.3));
}
/* Hover */
.icono-animado:hover {
    transform: scale(1.15) rotate(3deg);
}
/* Animación combinada: flotación + giro leve */
@keyframes animacionIcono {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-4px) rotate(1deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(4px) rotate(-1deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}
/* LOTTIE */
#waveCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    pointer-events: none;
    z-index: -1;
}
/* SERVICIOS QUE */
.text-purple-400 {
    color: #a78bfa;
}
/* Tailwind purple-400 */
.text-pink-400 {
    color: #f472b6;
}
/* Tailwind pink-400 */
.text-yellow-400 {
    color: #facc15;
}
/* Tailwind yellow-400 */
.text-green-400 {
    color: #4ade80;
}
/* Tailwind green-400 */
.text-blue-400 {
    color: #60a5fa;
}
/* Tailwind blue-400 */

.rotating-text {
    display: inline-block;
    position: relative;
    min-width: 150px;
    transform: scale(0.85);
    vertical-align: bottom;
}

.word {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    display: flex;
    font-weight: 700;
    top: -48px;
    left: -1px;
    transform: scale(1.2);
}

.letter {
    display: inline-block;
    transform-origin: center center 25px;
}

.letter.out {
    transform: rotateX(90deg);
    transition: 0.32s cubic-bezier(0.6, 0, 0.7, 0.2);
    opacity: 0;
}

.letter.behind {
    transform: rotateX(-90deg);
    opacity: 0;
}

.letter.in {
    transform: rotateX(0deg);
    transition: 0.38s ease;
    opacity: 1;
}

/* CARDS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

.gradient-bg {
    background: linear-gradient(135deg, #4c1d95 0%, #1e3a8a 50%, #1e40af 100%);
}

.solution-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-item {
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.feature-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.feature-item:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.05);
}

.cta-button {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.cta-button.animate {
    opacity: 1;
    transform: translateY(0);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -12px rgba(139, 92, 246, 0.4);
}

.section-title {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s ease;
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.stats-counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b5cf6;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
/* BUBBLECHAT EFFY */
.bubblechat {
    transform: scaleX(-1) !important;
    display: inline-block;
    transform-origin: center;
    position: relative;
    top: 15px;
    right: 15px;
    width: 30px !important;
    height: 30px !important;
    /* Subtle floating animation */
    animation: floatSubtle 4s ease-in-out infinite;
}

@keyframes floatSubtle {
    0%, 100% {
        transform: scaleX(-1) translateY(0);
    }

    50% {
        transform: scaleX(-1) translateY(-5px);
    }
}
/* SPEACH BUBBLE */
#bubble-container {
    position: absolute;
    bottom: 60px; /* above the bird */
    left: 50%;
    transform: translateX(-50%);
    display: none;
    pointer-events: auto;
    font-family: sans-serif;
}
/* Full speech bubble style */
.speech-bubble {
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    max-width: 220px;
    position: relative;
    font-size: 14px;
}

.speech-bubble::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: white transparent transparent;
}

.speech-bubble ul {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}

.speech-bubble li {
    padding: 6px;
    background: #f0f0f0;
    margin-bottom: 6px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s;
}

.speech-bubble li:hover {
    background: #e0e0ff;
}

.speech-bubble:hover,
.speech-bubble li:hover {
    animation: none !important;
    transition-property: opacity !important; /* keep fade only */
}
/* ===== SOLUCIONES DESTACADAS (testimonios: soft panel + blobs + cards) ===== */

#soluciones {
    position: relative;
    padding: 42px 0 28px;
}

#soluciones::before {
    content: "";
    position: absolute;
    inset: -40px 0 -20px 0;
    pointer-events: none;
    background: radial-gradient(520px 300px at 18% 35%, rgba(253,182,0,.22), transparent 60%), radial-gradient(560px 340px at 78% 40%, rgba(234,68,114,.20), transparent 62%), radial-gradient(620px 420px at 50% 105%, rgba(86,24,247,.20), transparent 64%);
    filter: blur(18px);
    opacity: .95;
}
/* Panel principal tipo testimonio */
#soluciones .solution-card {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 18px 12px;
    border-radius: 28px;
    background: radial-gradient(120% 140% at 15% 10%, rgba(255,255,255,.12), rgba(255,255,255,.06) 45%, rgba(255,255,255,.04)), rgba(12,14,20,.22);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 26px 80px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
}
/* brillo superior */
#soluciones .solution-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(120% 80% at 25% 0%, rgba(255,255,255,.10), transparent 55%);
    opacity: .8;
}

#soluciones .carousel-track {
    overflow: hidden;
    position: relative;
    padding: 14px 4px 18px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
/* slide */
#soluciones .carousel-slide {
    display: flex;
    gap: 16px;
    align-items: stretch;
    will-change: transform;
    transform: translate3d(0,0,0);
}
/* ===== CAROUSEL CARD ===== */
#soluciones .feature-card {
    min-width: 320px;
    max-width: 360px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 18px 18px 16px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
    background: radial-gradient(120% 110% at 20% 10%, rgba(255,255,255,.14), transparent 58%), radial-gradient(110% 120% at 90% 70%, rgba(255,255,255,.08), transparent 62%), rgba(18,22,34,.34);
    box-shadow: 0 18px 55px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform .22s cubic-bezier(.16,1,.3,1), box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

#soluciones .feature-card::before {
    content: "MVP";
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .6px;
    opacity: .9;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
}

#soluciones .carousel-slide .feature-card:nth-child(1)::before,
#soluciones .carousel-slide .feature-card:nth-child(5)::before {
    content: "Salud / Turnos";
}

#soluciones .carousel-slide .feature-card:nth-child(2)::before,
#soluciones .carousel-slide .feature-card:nth-child(6)::before {
    content: "E-commerce / Pedidos";
}

#soluciones .carousel-slide .feature-card:nth-child(3)::before,
#soluciones .carousel-slide .feature-card:nth-child(7)::before {
    content: "Administración / Facturas";
}

#soluciones .carousel-slide .feature-card:nth-child(4)::before,
#soluciones .carousel-slide .feature-card:nth-child(8)::before {
    content: "Finanzas / Recibos";
}

#soluciones .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 10px;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.22), rgba(255,255,255,.06));
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 14px 28px rgba(0,0,0,.28);
}

#soluciones .feature-card h3 {
    margin: 2px 0 8px 0;
    font-weight: 800;
    letter-spacing: -0.2px;
    font-size: 19px;
    line-height: 1.15;
    color: rgba(255,255,255,.98);
}

#soluciones .feature-card p {
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 15.7px;
    line-height: 1.55;
}

#soluciones .feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 24px 75px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.12);
}

#soluciones .feature-card:hover {
    background: radial-gradient(120% 110% at 20% 10%, rgba(255,255,255,.16), transparent 58%), radial-gradient(110% 120% at 90% 70%, rgba(255,255,255,.10), transparent 62%), linear-gradient(135deg, rgba(255,255,255,.08), transparent 45%), rgba(18,22,34,.34);
}

#soluciones .feature-card:nth-child(1) {
    --acc: rgba(234,68,114,.30);
}

#soluciones .feature-card:nth-child(2) {
    --acc: rgba(253,182,0,.30);
}

#soluciones .feature-card:nth-child(3) {
    --acc: rgba(86,24,247,.30);
}

#soluciones .feature-card:nth-child(4) {
    --acc: rgba(121,255,143,.22);
}

#soluciones .feature-card {
    box-shadow: 0 18px 55px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.02), inset 0 1px 0 rgba(255,255,255,.10), 0 0 0 6px rgba(0,0,0,0), 0 0 34px var(--acc);
}
/* ICONO PILL */
#soluciones .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 10px;
    background: rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.14);
}
/* - */
#soluciones.section-content {
    min-height: auto !important;
    height: auto !important;
    max-height: none !important;
    padding: 44px 32px !important;
}

#soluciones .solution-card {
    width: min(1240px, calc(100% - 48px)); /* todo el ancho */
    margin: 0 auto;
    border-radius: 28px;
    padding: 18px 18px 12px;
    background: rgba(12,14,20,.18);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 26px 80px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
}
/*
#soluciones .feature-card::before {
content: none !important;
display: none !important;
}
*/
#soluciones .carousel-track {
    padding: 0 !important;
    margin: 0 !important;
}
/* PREGUNTAS FRECUENTES */
#faq .faq-wrapper {
max-width: 1100px;
max-height: 900vh;
margin: 0 auto;
}

#faq .faq-title {
color: #fff;
font-size: 42px;
font-weight: 800;
margin: 0 0 18px 0;
letter-spacing: .2px;
display: flex;
justify-content: center;
}

#faq .faq-list {
display: flex;
flex-direction: column;
gap: 12px;
}

#faq .faq-item {
border-radius: 18px;
overflow: hidden;
border: 1px solid rgba(255,255,255,0.12);
background: rgba(255,255,255,0.06);
box-shadow: 0 18px 50px rgba(0,0,0,0.25);
backdrop-filter: blur(10px);
}

.bot-icon {
border-radius: 18px;
overflow: hidden;
border: 1px solid rgba(255,255,255,0.12);
background: rgba(255,255,255,0.06);
box-shadow: 0 18px 50px rgba(0,0,0,0.25);
backdrop-filter: blur(10px);
}

img.bot-icon {
width: 4rem;
height: 4rem;
}

#faq .faq-q {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 22px 22px;
background: transparent;
border: 0;
cursor: pointer;
color: #fff;
font-size: 25px;
font-weight: 650;
text-align: left;
}

#faq .faq-q:focus {
outline: none;
}

#faq .faq-q:hover {
background: rgba(255,255,255,0.05);
}

#faq .faq-icon {
width: 46px;
height: 46px;
display: grid;
place-items: center;
border-radius: 14px;
font-size: 34px;
line-height: 1;
color: #fff;
background: rgba(0,0,0,0.22);
border: 1px solid rgba(255,255,255,0.12);
transition: transform .18s ease;
}

#faq .faq-a {
max-height: 0;
opacity: 0;
overflow: hidden;
padding: 0 22px;
color: rgba(255,255,255,0.88);
font-size: 20px;
line-height: 1.55;
border-top: 1px solid rgba(255,255,255,0.08);
transition: max-height .22s ease, opacity .18s ease, padding .18s ease;
}

#faq .faq-item.open .faq-a {
max-height: 520px;
opacity: 1;
padding: 18px 22px 22px;
}

#faq .faq-item.open .faq-icon {
transform: rotate(45deg);
}
/* ===== FAQ #161B22 ===== */
#faq {
background: radial-gradient(900px 520px at 18% 18%, rgba(86,24,247,.28), transparent 62%), radial-gradient(820px 520px at 78% 28%, rgba(0,215,255,.18), transparent 60%), radial-gradient(720px 480px at 70% 82%, rgba(234,68,114,.16), transparent 62%), linear-gradient(to bottom, #0b0f14 0%, #0f1420 55%, #0b0f14 100%);
padding: 60px 0;
}

#faq .faq-wrapper {
padding: 0 18px;
}
/* ===== Items (cajitas) ===== */
#faq .faq-item {
border: 1px solid rgba(255,255,255,0.10);
background: linear-gradient( to bottom, rgba(15,19,26,0.65) 0%, rgba(22,27,34,0.78) 55%, rgba(31,38,48,0.88) 100% );
box-shadow: 0 18px 50px rgba(0,0,0,0.35);
backdrop-filter: blur(10px);
}

#faq .faq-item:hover {
border-color: rgba(255,255,255,0.16);
background: linear-gradient( to bottom, rgba(15,19,26,0.70) 0%, rgba(22,27,34,0.82) 55%, rgba(31,38,48,0.94) 100% );
}

/* ===== FAQ Q: glass ===== */
#faq .faq-q {
position: relative;
overflow: hidden;
background: transparent;
border: 1px solid transparent;
box-shadow: none;
backdrop-filter: none;
-webkit-backdrop-filter: none;
transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease, backdrop-filter .22s ease, -webkit-backdrop-filter .22s ease;
}

/* Reflejo (apagado por defecto) */
#faq .faq-q::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient( to bottom, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 22%, transparent 55% );
    opacity: 0;
    transition: opacity .22s ease;
}

/* Hover: aparece glass */
#faq .faq-q:hover {
    background: rgba(255,255,255,0.06); 
    border-color: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Hover */
#faq .faq-q:hover::before {
    opacity: 1;
}

/* ===== Respuesta  ===== */
#faq .faq-a {
    border-top: 1px solid rgba(255,255,255,0.10);
    background: linear-gradient( to bottom, rgba(10,13,18,0.35) 0%, rgba(22,27,34,0.55) 40%, rgba(31,38,48,0.70) 100% );
}

#faq .faq-item.open .faq-a {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
/* ===== Icono ===== */
#faq .faq-icon {
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.12);
}
/* ===== Tipografía FAQ ===== */
#faq {
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}
#faq .faq-title {
    font-weight: 800;
    letter-spacing: -0.4px;
}
#faq .faq-q {
    font-weight: 150;
    letter-spacing: -0.2px;
}
#faq .faq-a {
    font-weight: 450;
}
#faq .faq-space {
    height: 240px;
}

#faq {
    height: auto !important;
    min-height: unset !important;
    padding-bottom: 0 !important;
}

#faq .faq-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px;
    height: 46px;
    background-image: none !important;
}

#faq .faq-icon {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* Glow */
#faq .faq-icon-img {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 3px rgba(255,255,255,0.35)) drop-shadow(0 0 10px rgba(255,255,255,0.18)) drop-shadow(0 0 14px rgba(0,215,255,0.14)) brightness(1.08) contrast(1.05);
}

#faq .faq-icon img {
    display: block !important;
    width: 22px !important;
    height: 22px !important;
    object-fit: contain;
    opacity: 1 !important;
}

#faq + section {
    margin-top: 0 !important;
    transform: none !important;
    top: auto !important;
    position: relative !important;
}

section#faq.section-content {
    height: auto !important;
    min-height: 800px !important;
    padding-top: 60px !important;
    padding-bottom: 120px !important;
    margin-bottom: 0 !important;
    position: relative !important;
    z-index: 50 !important;
    display: block !important;
}

section#faq.section-content::after {
    content: "";
    display: block;
    height: 120px; 
}

section#faq.section-content + section {
    margin-top: 0 !important;
    top: auto !important;
    transform: none !important;
    position: relative !important;
    z-index: 1 !important;
}

/*  SECCIÓN: MOTIVOS  */
#motivos {
    background: radial-gradient(900px 520px at 20% 10%, rgba(86,24,247,.22), transparent 62%), radial-gradient(820px 520px at 85% 35%, rgba(234,68,114,.18), transparent 60%), linear-gradient(to bottom, #0f1118 0%, #161B22 45%, #111827 100%);
    padding: 70px 0;
    padding-bottom: 110px;
}

section#motivos {
    background: linear-gradient( to bottom, #511CEC 0%, #4B1AE0 22%, #3E178F 55%, #361463 100% );
}

#motivos .motivos-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}

#motivos .motivos-title {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.4px;
    margin: 0 0 18px 0;
}
/* cards */
#motivos .motivo-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    padding: 28px 26px 42px 26px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.10);
    background: radial-gradient(1100px 460px at 12% 10%, rgba(86,24,247,.26), transparent 60%), radial-gradient(900px 420px at 92% 58%, rgba(206,43,214,.16), transparent 60%), radial-gradient(700px 360px at 55% 105%, rgba(234,68,114,.14), transparent 62%), radial-gradient(420px 240px at 78% 18%, rgba(253,182,0,.10), transparent 68%), linear-gradient(to bottom, rgba(22,27,34,.92), rgba(10,12,18,.78));
    box-shadow: 0 18px 55px rgba(0,0,0,0.45);
    backdrop-filter: blur(10px);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

#motivos .motivo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.16);
    box-shadow: 0 22px 65px rgba(0,0,0,0.55), 0 0 0 1px rgba(86,24,247,.10);
}

#motivos .motivo-card h3 {
    margin: 0 0 10px 0;
    font-size: 26px;
    font-weight: 750;
    letter-spacing: -0.2px;
    color: #fff;
}

#motivos .motivo-card p {
    margin: 0;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255,255,255,0.82);
    max-width: 92%;
}

#motivos .motivo-icon {
    position: absolute;
    right: 18px;
    bottom: 16px;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 26px;
    background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.22), rgba(255,255,255,.06)), radial-gradient(circle at 70% 80%, rgba(234,68,114,.12), transparent 62%);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 12px 28px rgba(0,0,0,0.40), 0 0 0 6px rgba(86,24,247,0.14), 0 0 0 14px rgba(234,68,114,0.08);
}

    #motivos {
        background: radial-gradient(950px 520px at 15% 20%, rgba(86,24,247,.26), transparent 62%), radial-gradient(820px 520px at 55% 10%, rgba(206,43,214,.18), transparent 62%), radial-gradient(820px 520px at 85% 35%, rgba(234,68,114,.18), transparent 62%), radial-gradient(620px 420px at 80% 85%, rgba(253,182,0,.12), transparent 62%), linear-gradient(to bottom, #22124a 0%, #2b165e 55%, #22124a 100%);
        padding: 70px 0;
    }
        /* 2x2 como la captura (cards más “anchas”) */
        #motivos .motivos-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 columnas fijas */
            gap: 18px;
        }
    /* Responsive sin media query: que baje a 1 col cuando no entra */
    @supports (grid-template-columns: repeat(auto-fit, minmax(1px, 1fr))) {
        #motivos .motivos-grid {
            grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
        }
    }

    #motivos .motivo-card {
        position: relative;
        overflow: hidden;
        border-radius: 26px;
        padding: 34px 32px 56px 32px; /* más “Netflix-like” */
        color: #fff;
        /* Card más clara y marcada */
        background: radial-gradient(900px 420px at 12% 10%, rgba(86,24,247,.22), transparent 60%), radial-gradient(700px 360px at 88% 22%, rgba(234,68,114,.16), transparent 62%), radial-gradient(520px 300px at 70% 95%, rgba(253,182,0,.12), transparent 64%), linear-gradient(to bottom, rgba(255,255,255,.12), rgba(255,255,255,.05));
        border: 1px solid rgba(255,255,255,.18);
        box-shadow: 0 20px 60px rgba(0,0,0,.35);
        backdrop-filter: blur(12px);
        transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }

        #motivos .motivo-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255,255,255,.24);
            box-shadow: 0 26px 76px rgba(0,0,0,.40);
        }
    /* FORZAR que #motivos crezca con su contenido (por si hay height/min-height heredado) */
    #motivos.section-content,
    #motivos {
        height: auto !important;
        min-height: unset !important;
        max-height: none !important;
        overflow: visible !important;
        display: block;
    }
        /* Asegura que el wrapper/grid no estén “con altura fija” */
        #motivos .motivos-wrapper,
        #motivos .motivos-grid {
            height: auto !important;
            min-height: unset !important;
            max-height: none !important;
            overflow: visible !important;
        }
    /* Aire abajo para que no lo pise la siguiente sección */
    #motivos {
        padding-bottom: 120px !important;
    }
    /* SUBTITULOS */

    .feature-item small {
        display: block;
        margin-top: 6px;
        line-height: 1.35;
        opacity: .85;
        font-size: .9em;
    }

    .custom-navbar .navbar-collapse.show {
        display: flex !important;
        align-items: center;
    }

    .custom-navbar .navbar-brand {
        margin-right: auto !important;
    }

    .custom-navbar .navbar-nav {
        margin-left: auto !important;
        flex-direction: row !important;
    }

    .custom-navbar .container-fluid {
        padding-left: 170px;
        padding-right: 270px;
    }

    a.navbar-brand.d-flex.align-items-center.gap-2.me-auto {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    /* Base pill */
    .cta-pill {
        --pill-grad: linear-gradient(135deg,#ff4fd8,#ff5a73 55%,#ff7a48);
        --pill-glow: radial-gradient(circle at 30% 45%, rgba(255,79,216,.55), transparent 60%), radial-gradient(circle at 70% 60%, rgba(255,122,72,.40), transparent 68%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: clamp(12px, 1.2vw, 16px) clamp(22px, 2.2vw, 34px);
        border-radius: 999px;
        /* tipografía */
        font-weight: 650;
        font-size: clamp(16px, 1.2vw, 20px);
        line-height: 1.1;
        letter-spacing: .2px;
        color: #fff;
        text-shadow: 0 6px 18px rgba(0,0,0,.28);
        position: relative;
        isolation: isolate;
        background: var(--pill-grad);
        border: 1px solid rgba(255,255,255,.14);
        /* sombra suave como en la referencia */
        box-shadow: 0 16px 38px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.18);
        transform: translateY(0);
        transition: transform .18s ease, box-shadow .18s ease;
    }
        /* Glow suave */
        .cta-pill::before {
            content: "";
            position: absolute;
            inset: 0; /* <-- clave: ya no agranda el glow */
            border-radius: 999px;
            z-index: -1;
            pointer-events: none;
            background: var(--pill-glow);
            filter: blur(14px); /* más controlado */
            opacity: .26; /* más sutil */
            /* fade para que no aparezca “borde” */
            -webkit-mask-image: radial-gradient(circle, #000 62%, transparent 86%);
            mask-image: radial-gradient(circle, #000 62%, transparent 86%);
            transform: scale(1.04); /* halo mínimo (no gigante) */
        }
        /* Brillo interno “glossy” */
        .cta-pill::after {
            content: "";
            position: absolute;
            inset: 1px;
            border-radius: inherit;
            pointer-events: none;
            z-index: 0;
            background: radial-gradient(120% 90% at 30% 20%, rgba(255,255,255,.22), transparent 55%), linear-gradient(180deg, rgba(255,255,255,.14), transparent 55%);
            opacity: .55;
            mix-blend-mode: overlay;
        }
        /* Asegura que el texto quede arriba del sheen */
        .cta-pill > * {
            position: relative;
            z-index: 1;
        }

        .cta-pill:hover {
            transform: translateY(-1px);
            box-shadow: 0 18px 44px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.20);
        }
    /**/
    /* 60fps: solo transform (evitar animar box-shadow) */
    .cta-pill {
        will-change: transform;
        transform: translate3d(0,0,0);
        backface-visibility: hidden;
        /* importante: NO animar box-shadow si querés fluidez real */
        transition: transform .18s cubic-bezier(.16, 1, .3, 1);
    }
        /* Hover: slime + bounce (solo transform) */
        .cta-pill:hover {
            animation: pillSlime60 .52s cubic-bezier(.16, 1, .3, 1) both;
        }
        /* Active: apretón slime */
        .cta-pill:active {
            transform: translate3d(0,0,0) scale(.985, 1.03);
        }

    @keyframes pillSlime60 {
        0% {
            transform: translate3d(0,0,0) scale(1,1);
        }

        35% {
            transform: translate3d(0,-3px,0) scale(.99,1.08);
        }

        60% {
            transform: translate3d(0,-1px,0) scale(1.06,.94);
        }

        82% {
            transform: translate3d(0,-2px,0) scale(1.02,1.02);
        }

        100% {
            transform: translate3d(0,-1px,0) scale(1.03,.98);
        }
    }

    .cta-pill:hover {
        box-shadow: 0 18px 44px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.20);
    }
    /* Variantes */
    .pill-rosa {
        --pill-grad: linear-gradient(135deg,#ff3fd3 0%, #ff4d7a 55%, #ff7a48 100%);
        --pill-glow: radial-gradient(circle at 28% 48%, rgba(255,63,211,.55), transparent 62%), radial-gradient(circle at 74% 62%, rgba(255,122,72,.38), transparent 70%);
    }

    .pill-amarillo {
        --pill-grad: linear-gradient(135deg,#ffd36b 0%, #ff9f2e 55%, #ff5e4b 100%);
        --pill-glow: radial-gradient(circle at 30% 50%, rgba(255,211,107,.50), transparent 62%), radial-gradient(circle at 70% 60%, rgba(255,94,75,.30), transparent 72%);
        color: #fff;
    }

    .pill-azul {
        --pill-grad: linear-gradient(135deg,#2b7bff 0%, #5a56ff 55%, #7a2bff 100%);
        --pill-glow: radial-gradient(circle at 30% 48%, rgba(43,123,255,.48), transparent 62%), radial-gradient(circle at 72% 62%, rgba(122,43,255,.34), transparent 72%);
    }
    /* ICONS */
    iconify-icon {
        display: inline-block;
        width: 1em;
        height: 1em;
    }

    .social-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 22px;
        padding: 18px 0;
    }
    /* botón circular */
    .social-btn {
        width: 44px;
        height: 44px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #5618f7 0%, #ce2bd6 45%, #ea4472 100%);
        border: 1px solid rgba(255,255,255,.14);
        box-shadow: 0 14px 34px rgba(0,0,0,.35), 0 0 24px rgba(234,68,114,.18), inset 0 1px 0 rgba(255,255,255,.16);
        transform: translate3d(0,0,0);
        transition: transform .18s cubic-bezier(.16,1,.3,1), box-shadow .18s ease;
    }
    /* ícono */
    .social-ico {
        font-size: 28px; /* tamaño del icono */
        color: #fff; /* stroke/fill monotone */
        filter: drop-shadow(0 0 10px rgba(255,255,255,.18));
        opacity: .92;
    }
    /* hover suave */
    .social-btn:hover {
        transform: translate3d(0,-1px,0) scale(1.03);
        box-shadow: 0 18px 44px rgba(0,0,0,.38), 0 0 34px rgba(86,24,247,.18), 0 0 28px rgba(234,68,114,.22), inset 0 1px 0 rgba(255,255,255,.18);
    }
    /* SOLUCIONES HENRRY */

    .henrry-section {
        padding: 70px 0;
        background: radial-gradient(900px 520px at 18% 25%, rgba(86,24,247,.22), transparent 62%), radial-gradient(820px 520px at 78% 35%, rgba(234,68,114,.18), transparent 62%), radial-gradient(620px 420px at 80% 85%, rgba(253,182,0,.12), transparent 62%), linear-gradient(to bottom, #22124a 0%, #2b165e 55%, #22124a 100%);
    }
    /* Hacer la sección más grande (altura real) */
    .henrry-section {
        min-height: 820px; /* ajustá: 780 / 900 según gusto */
        padding-top: 90px;
        padding-bottom: 140px; /* aire abajo */
    }
    /* Por si el contenedor interno queda muy “apretado” */
    .henrry-wrap {
        min-height: 560px; /* empuja a que haya cuerpo abajo */
        align-items: center; /* si usás grid/flex */
    }

    .henrry-wrap {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 34px;
        flex-wrap: wrap;
    }

    .henrry-left {
        flex: 1;
        min-width: 360px;
        max-width: 560px;
        padding-left: 90px;
    }

    .henrry-right {
        flex: 1;
        min-width: 360px;
        display: flex;
        justify-content: center;
    }

    .henrry-title {
        color: #fff;
        font-size: 40px;
        font-weight: 800;
        letter-spacing: -0.4px;
        margin: 0 0 14px 0;
    }

    .henrry-p {
        color: rgba(255,255,255,.84);
        font-size: 18px;
        line-height: 1.6;
        margin: 0 0 16px 0;
    }

    .henrry-list {
        margin: 0 0 20px 0;
        padding-left: 18px;
        color: rgba(255,255,255,.86);
        font-size: 17px;
        line-height: 1.7;
    }

    .henrry-cta {
        margin-top: 10px;
    }

    .henrry-img {
        width: min(560px, 100%);
        height: auto;
        border-radius: 22px;
        border: 1px solid rgba(255,255,255,.16);
        box-shadow: 0 22px 70px rgba(0,0,0,.40);
    }
    /* IMG HENRRY */
    .henrry-img {
        width: 150px;
        height: 150px;
        object-fit: cover; /* llena el cuadro */
        object-position: center; /* centra el recorte */
        border-radius: 5px;
        display: block;
        border-radius: 15px;
    }

    .henrry-mockup {
        width: 600px;
        height: 600px;
        object-fit: contain;
        display: block;
    }
    /* ===== SOLUCIÓN 2: FLUYASALES IA ===== */
    #orion .fluyasales-wrap {
        display: flex; /* aseguro flex */
        align-items: center;
        justify-content: space-between;
        gap: 48px;
    }
    /* Texto a la izquierda */
    #orion .fluyasales-right {
        order: 1;
        flex: 1 1 520px;
    }
    /* Imagen a la derecha */
    #orion .fluyasales-left {
        order: 2;
        flex: 1 1 520px;
    }

    #orion .fluyasales-left {
        display: flex;
        justify-content: flex-end;
    }
    /* CONTENEDOR mockups */
    .hero-mockups {
        position: relative;
        width: min(520px, 100%);
        margin-left: auto;
        aspect-ratio: 16 / 10;
        transform: translate3d(0,0,0);
    }

        .hero-mockups img {
            position: absolute;
            height: auto;
            user-select: none;
            -webkit-user-drag: none;
            transform: translate3d(0,0,0);
            opacity: 0;
            filter: blur(10px);
        }
    /* Laptop */
    .mockup-laptop {
        right: 0;
        bottom: -200px;
        width: 750px;
        z-index: 1;
        transform: translate3d(16px, 18px, 0) scale(.98);
        animation: laptopIn 1.9s cubic-bezier(.16,1,.3,1) .20s forwards;
    }
    /* Phone */
    .mockup-phone {
        left: -6%;
        bottom: -200px;
        left: 20%;
        width: 600px;
        z-index: 2;
        transform: translate3d(-18px, 24px, 0) scale(.98) rotate(-4deg);
        animation: phoneIn 1.9s cubic-bezier(.16,1,.3,1) .05s forwards;
    }
    /* Fade In */
    @keyframes laptopIn {
        from {
            opacity: 0;
            /* blur + glow */
            filter: blur(12px) drop-shadow(0 26px 60px rgba(0,0,0,.45)) drop-shadow(0 0 42px rgba(86,24,247,.26)) drop-shadow(0 0 34px rgba(234,68,114,.18));
            transform: translate3d(16px, -70px, 0) scale(.98);
        }

        to {
            opacity: 1;
            filter: blur(0) drop-shadow(0 26px 60px rgba(0,0,0,.45)) drop-shadow(0 0 42px rgba(86,24,247,.26)) drop-shadow(0 0 34px rgba(234,68,114,.18));
            transform: translate3d(16px, 18px, 0) scale(.98);
        }
    }

    @keyframes phoneIn {
        from {
            opacity: 0;
            filter: blur(12px) drop-shadow(0 26px 60px rgba(0,0,0,.45)) drop-shadow(0 0 38px rgba(234,68,114,.24)) drop-shadow(0 0 30px rgba(86,24,247,.18));
            transform: translate3d(70px, 24px, 0) scale(.98) rotate(-4deg);
        }

        to {
            opacity: 1;
            filter: blur(0) drop-shadow(0 26px 60px rgba(0,0,0,.45)) drop-shadow(0 0 38px rgba(234,68,114,.24)) drop-shadow(0 0 30px rgba(86,24,247,.18));
            transform: translate3d(-18px, 24px, 0) scale(.98) rotate(-4deg);
        }
    }
    /* Hover */
    .hero-mockups:hover .mockup-laptop {
        transform: translate3d(0,-6px,0) scale(1.01);
        transition: transform .28s cubic-bezier(.16,1,.3,1);
    }

    .hero-mockups:hover .mockup-phone {
        transform: translate3d(0,-10px,0) scale(1.02) rotate(-1deg);
        transition: transform .28s cubic-bezier(.16,1,.3,1);
    }
    /* Sombras suaves */
    .mockup-laptop,
    .mockup-phone {
        filter: drop-shadow(0 22px 42px rgba(0,0,0,.40));
    }

    .hero-mockups {
        position: relative;
        overflow: visible;
    }
    /* Glow PRO */
    .mockup-laptop {
        /* sombra base + glow de color */
        filter: drop-shadow(0 26px 60px rgba(0,0,0,.45)) drop-shadow(0 0 42px rgba(86,24,247,.26)) drop-shadow(0 0 34px rgba(234,68,114,.18));
    }

    .mockup-phone {
        filter: drop-shadow(0 26px 60px rgba(0,0,0,.45)) drop-shadow(0 0 38px rgba(234,68,114,.24)) drop-shadow(0 0 30px rgba(86,24,247,.18));
    }
    /* ===== HENRY mockup: más grande + fade-in lento + float suave ===== */
    #henrry .henrry-right {
        position: relative;
    }

    #henrry .henrry-mockup {
        /* tamaño */
        width: 850px;
        height: auto;
        display: block;
        /* look & performance */
        will-change: transform, opacity, filter;
        transform: translate3d(26px, -18px, 0) scale(.985);
        opacity: 0;
        filter: saturate(1.02) contrast(1.02);
        animation: henrryEnter 1.7s cubic-bezier(.16,1,.3,1) .12s forwards, henrryFloat 4.6s ease-in-out 1.9s infinite;
    }
    /* posición final + fade-in */
    @keyframes henrryEnter {
        0% {
            opacity: 0;
            transform: translate3d(26px,-34px,0) scale(.975);
            filter: blur(2px);
        }

        65% {
            opacity: 1;
            transform: translate3d(18px, 4px,0) scale(1);
            filter: blur(0);
        }

        100% {
            opacity: 1;
            transform: translate3d(16px, 0px,0) scale(1);
            filter: blur(0);
        }
    }

    @keyframes henrryFloat {
        0%, 100% {
            transform: translate3d(16px, 0px,0) scale(1);
        }

        50% {
            transform: translate3d(16px, -10px,0) scale(1);
        }
    }
    /* ===== Depth glow + shadow detrás del teléfono (pro, sutil) ===== */
    /* Contenedor del mockup */
    #henrry .henrry-right {
        position: relative;
    }

        #henrry .henrry-right::before {
            content: "";
            position: absolute;
            right: 6%;
            bottom: -6%;
            width: 86%;
            height: 92%;
            border-radius: 28px;
            z-index: 0;
            pointer-events: none;
            /* Glow Fluya (violeta/rosa/azul) */
            background: radial-gradient(closest-side at 35% 55%, rgba(234,68,114,.28), transparent 70%), radial-gradient(closest-side at 65% 45%, rgba(86,24,247,.26), transparent 72%), radial-gradient(closest-side at 55% 80%, rgba(0,210,255,.10), transparent 75%);
            filter: blur(22px);
            opacity: .95;
        }
    /* Sombra real + micro glow */
    #henrry .henrry-mockup {
        position: relative;
        z-index: 1;
        /* depth + glow */
        filter: drop-shadow(0 26px 50px rgba(0,0,0,.55)) drop-shadow(0 10px 22px rgba(0,0,0,.28)) drop-shadow(0 0 18px rgba(86,24,247,.18)) drop-shadow(0 0 12px rgba(234,68,114,.10));
    }

    .fluyasales-left {
        position: relative;
        isolation: isolate;
    }
        /* Glow profesional */
        .fluyasales-left::after {
            content: "";
            position: absolute;
            inset: -10%;
            z-index: -1;
            pointer-events: none;
            background: radial-gradient( closest-side, rgba(140, 90, 255, 0.38), rgba(0, 240, 255, 0.14), transparent 72% );
            filter: blur(30px);
            opacity: 0.95;
        }
    /* Fade-in suave + float continuo */
    .henrry-mockup {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 22px;
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
        filter: drop-shadow(0 12px 30px rgba(130, 90, 255, 0.22));
        opacity: 0;
        transform: translateY(14px);
        will-change: transform, opacity, filter;
        animation: mockupEnter 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards, mockupFloat 7.2s ease-in-out 900ms infinite;
    }

    @keyframes mockupEnter {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes mockupFloat {
        0%, 100% {
            transform: translateY(0);
        }

        25% {
            transform: translateY(-10px);
        }

        75% {
            transform: translateY(8px);
        }
    }

    .button-container {
        display: flex;
        justify-content: center;
        margin-top: 26px;
    }
    /* BOTÓN 2025 */
    .pulse-glow {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 26px 76px;
        min-width: 360px;
        border-radius: 999px;
        text-decoration: none;
        color: #fff;
        font-size: 20px;
        font-weight: 800;
        letter-spacing: -0.2px;
        background: linear-gradient(90deg, #7b3dff 0%, #3f7bff 45%, #00d7ff 100%);
        background-size: 180% 180%;
        border: 1px solid rgba(255,255,255,0.18);
        box-shadow: 0 16px 46px rgba(0,0,0,0.45);
        overflow: hidden;
        transform: translateZ(0);
        will-change: transform, box-shadow, filter, background-position;
        transition: transform .20s ease, box-shadow .25s ease, filter .25s ease;
        animation: bgShift 5.5s ease-in-out infinite;
    }
        /* Glow */
        .pulse-glow::before {
            content: "";
            position: absolute;
            inset: -28px;
            z-index: -1;
            border-radius: 999px;
            background: radial-gradient( closest-side, rgba(123,61,255,0.55), rgba(0,215,255,0.22), transparent 72% );
            filter: blur(26px);
            opacity: .95;
            pointer-events: none;
            animation: glowBreath 2.6s ease-in-out infinite;
        }
        /* Shimmer */
        .pulse-glow::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 999px;
            pointer-events: none;
            background: linear-gradient( 110deg, transparent 0%, rgba(255,255,255,0.22) 18%, transparent 38% );
            transform: translateX(-120%);
            opacity: .9;
            animation: sheen 2.9s ease-in-out infinite;
        }
        /* Hover nítido y pro */
        .pulse-glow:hover {
            transform: translateY(-2px) scale(1.02);
            filter: brightness(1.06);
            box-shadow: 0 22px 64px rgba(0,0,0,0.52);
        }
        /* Click */
        .pulse-glow:active {
            transform: translateY(0) scale(0.99);
        }
        /* Accesibilidad */
        .pulse-glow:focus {
            outline: none;
        }

        .pulse-glow:focus-visible {
            box-shadow: 0 22px 64px rgba(0,0,0,0.52), 0 0 0 4px rgba(255,255,255,0.20), 0 0 0 8px rgba(123,61,255,0.25);
        }
    /* Animaciones */
    @keyframes glowBreath {
        0%,100% {
            opacity: .75;
            transform: scale(0.98);
        }

        50% {
            opacity: 1;
            transform: scale(1.03);
        }
    }

    @keyframes bgShift {
        0%,100% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }
    }

    @keyframes sheen {
        0% {
            transform: translateX(-120%);
            opacity: 0;
        }

        20% {
            opacity: .9;
        }

        60% {
            opacity: .35;
        }

        100% {
            transform: translateX(120%);
            opacity: 0;
        }
    }
    /* Botón */
    .cta-probalo {
        position: relative;
        display: inline-block;
        gap: 12px;
        padding: 26px 76px;
        min-width: 360px;
        border-radius: 999px;
        text-decoration: none;
        color: #fff;
        font-size: 20px;
        font-weight: 800;
        line-height: 1;
        background: linear-gradient(90deg, #ff2bd6 0%, #7b3dff 48%, #00d7ff 100%);
        background-size: 180% 180%;
        border: 1px solid rgba(255,255,255,0.18);
        box-shadow: 0 14px 40px rgba(0,0,0,0.40);
        overflow: hidden;
        will-change: transform, filter, background-position;
        transition: transform .18s ease, filter .22s ease, box-shadow .22s ease;
        animation: ctaBgShift 5.5s ease-in-out infinite;
    }
        /* Glow */
        .cta-probalo::before {
            content: "";
            position: absolute;
            inset: -22px;
            z-index: -1;
            border-radius: 999px;
            pointer-events: none;
            background: radial-gradient( closest-side, rgba(255,43,214,0.48), rgba(0,215,255,0.20), transparent 72% );
            filter: blur(22px);
            opacity: .9;
            animation: ctaGlowBreath 2.6s ease-in-out infinite;
        }
        /* Shimmer */
        .cta-probalo::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 999px;
            pointer-events: none;
            background: linear-gradient( 110deg, transparent 0%, rgba(255,255,255,0.22) 18%, transparent 38% );
            transform: translateX(-120%);
            opacity: .7;
            animation: ctaSheen 2.9s ease-in-out infinite;
        }

        .cta-probalo:hover {
            transform: translateY(-2px);
            filter: brightness(1.06);
            box-shadow: 0 20px 56px rgba(0,0,0,0.48);
        }

        .cta-probalo:active {
            transform: translateY(0);
        }

        .cta-probalo:focus {
            outline: none;
        }

        .cta-probalo:focus-visible {
            box-shadow: 0 20px 56px rgba(0,0,0,0.48), 0 0 0 4px rgba(255,255,255,0.18), 0 0 0 8px rgba(255,43,214,0.20);
        }

    @keyframes ctaGlowBreath {
        0%,100% {
            opacity: .75;
            transform: scale(0.985);
        }

        50% {
            opacity: 1;
            transform: scale(1.02);
        }
    }

    @keyframes ctaBgShift {
        0%,100% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }
    }

    @keyframes ctaSheen {
        0% {
            transform: translateX(-120%);
            opacity: 0;
        }

        20% {
            opacity: .75;
        }

        60% {
            opacity: .28;
        }

        100% {
            transform: translateX(120%);
            opacity: 0;
        }
    }

    .cta-probalo .arrow {
        margin-left: 10px;
        display: inline-block;
        transform: translateY(1px);
        transition: transform .20s ease, opacity .20s ease;
        opacity: .95;
    }

    .cta-probalo:hover .arrow {
        transform: translateX(4px) translateY(1px);
        opacity: 1;
    }
    /* Propuestas */
    section.px-4 {
        padding: 70px 0 0px 10px;
        background: radial-gradient(900px 520px at 18% 25%, rgba(86,24,247,.22), transparent 62%), radial-gradient(820px 520px at 78% 35%, rgba(234,68,114,.18), transparent 62%), radial-gradient(620px 420px at 80% 85%, rgba(253,182,0,.12), transparent 62%), linear-gradient(to bottom, #22124a 0%, #2b165e 55%, #22124a 100%);
    }

    /* inline-block + center */
    .cta-inline {
        display: inline-block;
    }

    .cta-center {
        text-align: center;
    }
    /* tipografía */
    .cta-white {
        color: #fff;
    }

    .cta-bold {
        font-weight: 800;
    }
    /* pill */
    .cta-pill {
        border-radius: 999px;
    }
    /* gradiente */
    .cta-grad {
        background-image: linear-gradient(90deg, #8b5cf6 0%, #3b82f6 100%);
        background-size: 160% 160%;
    }

    .cta-grad:hover {
        background-image: linear-gradient(90deg, #7c3aed 0%, #2563eb 100%);
    }
    /* transición + hover scale */
    .cta-anim {
        transition: transform .30s ease, filter .30s ease, box-shadow .30s ease, background-position .30s ease;
        will-change: transform, box-shadow, filter, background-position;
    }

    .cta-scale:hover {
        transform: scale(1.05);
        filter: brightness(1.06);
    }

    .cta-pulse {
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,0.16);
        box-shadow: 0 18px 55px rgba(0,0,0,0.42);
        animation: ctaPulse 2.2s infinite;
    }

    .cta-grad.cta-anim {
        animation: ctaGradMove 6s ease-in-out infinite;
    }
    /* Animación pulse */
    @keyframes ctaPulse {
        0% {
            box-shadow: 0 0 0 0 rgba(139,92,246,0.55), 0 18px 55px rgba(0,0,0,0.42);
        }

        70% {
            box-shadow: 0 0 0 16px rgba(139,92,246,0.00), 0 18px 55px rgba(0,0,0,0.42);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(139,92,246,0.00), 0 18px 55px rgba(0,0,0,0.42);
        }
    }
    /* Gradiente “vivo” */
    @keyframes ctaGradMove {
        0%,100% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }
    }

    .sparkle-title {
        font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
        font-weight: 800;
    }

    .jakarta {
        font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
        font-weight: 500;
        letter-spacing: 0.2px;
        line-height: 1.55;
    }

    #faq .faq-q span:first-child {
        font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
        font-weight: 600;
        letter-spacing: 0.2px;
        line-height: 1.25;
    }

    /* ===== NAV Fluya Studio ===== */
    .custom-navbar {
        padding-top: 14px;
        padding-bottom: 14px;
        background: transparent;
    }
        /* El pill contenedor */
        .custom-navbar .navbar-nav {
            gap: 8px !important;
            padding: 7px 8px;
            border-radius: 999px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 14px 40px rgba(0,0,0,0.28);
        }
        /* Links */
        .custom-navbar .nav-link {
            border-radius: 999px;
            padding: 10px 16px !important;
            color: rgba(255,255,255,0.86);
            text-decoration: none;
            transition: background-color .18s ease, color .18s ease, transform .18s ease;
        }

            .custom-navbar .nav-link.active,
            .custom-navbar .nav-link[aria-current="page"] {
                background: rgba(255,255,255,0.16);
                color: #fff;
                box-shadow: 0 10px 24px rgba(0,0,0,0.20);
            }
        /* Contacto */
        .custom-navbar .nav-contacto {
            color: #fff !important;
            border: 1px solid rgba(255,255,255,0.18);
        }
        /* Marca (logo + texto) */
        .custom-navbar .navbar-brand {
            padding: 8px 10px;
            border-radius: 14px;
            transition: background-color .18s ease;
        }

            .custom-navbar .navbar-brand:hover {
                background: rgba(255,255,255,0.06);
            }

/* ===== CONTACT TRIGGER: efectos ocultos hasta hover ===== */
.contact-trigger {
    position: relative;
    overflow: hidden;
    background: transparent; /* o rgba(255,255,255,0.02) */
    border: 1px solid transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease, backdrop-filter .22s ease, -webkit-backdrop-filter .22s ease;
}

    /* Reflejo oculto por defecto */
    .contact-trigger::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        /* reflejo diagonal “glass” */
        background: linear-gradient( 120deg, transparent 0%, rgba(255,255,255,0.22) 18%, rgba(255,255,255,0.06) 32%, transparent 52% );
        opacity: 0;
        transition: opacity .22s ease;
    }

    /* Hover: aparece glass + reflejo */
    .contact-trigger:hover {
        background: rgba(255,255,255,0.06);
        border-color: rgba(255,255,255,0.16);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 18px 50px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.12);
    }

    /* Hover reflejo */
    .contact-trigger:hover::before {
        opacity: .75;
    }

    /* Reflejo tipo vidrio */
    .contact-trigger::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient( 120deg, transparent 0%, rgba(255,255,255,0.20) 18%, rgba(255,255,255,0.06) 32%, transparent 52% );
        transform: translateY(-20%);
        opacity: .75;
    }

    .contact-trigger:hover {
        background: rgba(255,255,255,0.09);
        border-color: rgba(255,255,255,0.22);
    }

    /* Cal Sans */
    .custom-navbar .navbar-nav .nav-link {
        font-family: "Cal Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
        font-weight: 600 !important;
        letter-spacing: -0.2px;
    }
    /* NAV */
    .custom-navbar .navbar-nav .nav-link {
        border: 1px solid transparent !important;
        outline: none !important;
        box-shadow: none !important;
        text-shadow: none;
        transition: text-shadow .28s ease, color .18s ease, background-color .18s ease;
    }
        /* Hover: glow */
        .custom-navbar .navbar-nav .nav-link:hover {
            box-shadow: none !important;
            border-color: transparent !important;
            text-shadow: 0 0 8px rgba(255,255,255,0.55), 0 0 18px rgba(255,255,255,0.22);
        }
    /* Contacto */
    .custom-navbar .navbar-nav .nav-contacto:hover {
        box-shadow: none !important;
        text-shadow: 0 0 10px rgba(255,255,255,0.65), 0 0 22px rgba(255,255,255,0.20);
    }

    .custom-navbar .navbar-nav .nav-link:focus-visible {
        outline: none !important;
        box-shadow: none !important;
        text-shadow: 0 0 8px rgba(255,255,255,0.45), 0 0 18px rgba(255,255,255,0.18);
    }
    /* HERO debe ser “contenedor” del fondo */
    .hero {
        position: relative;
        overflow: hidden; 
    }

    .hero .hero-inner {
        position: relative;
        z-index: 2;
    }
    /* Plasma layer */
    .hero-plasma {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        overflow: hidden;
        filter: blur(130px); /* ajustá 90–160 */
    }
    /* Blobs */
    .hero-blob {
        position: absolute;
        border-radius: 999px;
        opacity: 0.60;
        mix-blend-mode: screen;
        animation-iteration-count: infinite;
        animation-timing-function: cubic-bezier(0.1, 0, 0.9, 1);
        will-change: transform;
    }

    .hero-blob-1 {
        background: rgb(86, 24, 247);
        width: 720px;
        height: 720px;
        left: 62%;
        top: 42%;
        animation: heroBlob1 11s infinite;
    }

    .hero-blob-2 {
        background: rgb(234, 68, 114);
        width: 620px;
        height: 620px;
        left: 40%;
        top: 62%;
        animation: heroBlob2 11s infinite;
    }

    .hero-blob-3 {
        background: rgb(0, 215, 255);
        width: 520px;
        height: 520px;
        left: 52%;
        top: 52%;
        opacity: 0.50;
        animation: heroBlob3 11s infinite;
    }
    /* Keyframes */
    @keyframes heroBlob1 {
        0% {
            transform: translate(-50%,-50%) rotate(-20deg) translateX(20%);
        }

        25% {
            transform: translate(-50%,-50%) skew(-15deg,-15deg) rotate(80deg) translateX(30%);
        }

        50% {
            transform: translate(-50%,-50%) rotate(180deg) translateX(25%);
        }

        75% {
            transform: translate(-50%,-50%) skew(15deg,15deg) rotate(240deg) translateX(15%);
        }

        100% {
            transform: translate(-50%,-50%) rotate(340deg) translateX(20%);
        }
    }

    @keyframes heroBlob2 {
        0% {
            transform: translate(-50%,-50%) rotate(40deg) translateX(-20%);
        }

        25% {
            transform: translate(-50%,-50%) skew(15deg,15deg) rotate(110deg) translateX(-5%);
        }

        50% {
            transform: translate(-50%,-50%) rotate(210deg) translateX(-35%);
        }

        75% {
            transform: translate(-50%,-50%) skew(-15deg,-15deg) rotate(300deg) translateX(-10%);
        }

        100% {
            transform: translate(-50%,-50%) rotate(400deg) translateX(-20%);
        }
    }

    @keyframes heroBlob3 {
        0% {
            transform: translate(-50%,-50%) translateX(-15%) translateY(10%);
        }

        20% {
            transform: translate(-50%,-50%) translateX(20%) translateY(-30%);
        }

        40% {
            transform: translate(-50%,-50%) translateX(-25%) translateY(-15%);
        }

        60% {
            transform: translate(-50%,-50%) translateX(30%) translateY(20%);
        }

        80% {
            transform: translate(-50%,-50%) translateX(5%) translateY(35%);
        }

        100% {
            transform: translate(-50%,-50%) translateX(-15%) translateY(10%);
        }
    }
    /* Reduce motion */
    @media (prefers-reduced-motion: reduce) {
        .hero-blob {
            animation: none;
        }
    }

    #lottieGraph {
        width: min(460px, 90vw);
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .hero-video {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    /* glass mockup */
    .hero-mockup {
        border-radius: 22px;
        padding: 14px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.12);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 22px 70px rgba(0,0,0,0.45);
    }
    /* GIF*/
    .mockup-gif {
        display: block;
        width: min(420px, 90vw);
        height: auto;
        border-radius: 16px;
    }

    /*
    ┌────────────────────────────────┐
    │        Planes   site.css       │
    └────────────────────────────────┘
    */
    .plans-page {
        padding: 70px 0;
    }

    .plans-wrap {
        max-width: 1150px;
        margin: 0 auto;
        padding: 0 18px;
    }

    .plans-hero {
        text-align: center;
        margin-bottom: 34px;
    }

    .plans-title {
        color: #fff;
        font-weight: 900;
        letter-spacing: -0.8px;
        font-size: 54px;
        line-height: 1.05;
        margin: 0 0 12px;
    }

    .plans-accent {
        color: #00d7ff;
    }

    .plans-subtitle {
        color: rgba(255,255,255,0.78);
        font-size: 18px;
        line-height: 1.6;
        max-width: 780px;
        margin: 0 auto;
    }

    .plans-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 16px;
        margin-top: 28px;
    }
    /* cards glass */
    .plan-card {
        position: relative;
        border-radius: 20px;
        padding: 18px 18px 16px;
        border: 1px solid rgba(255,255,255,0.12);
        background: linear-gradient( to bottom, rgba(15,19,26,0.55) 0%, rgba(22,27,34,0.72) 55%, rgba(31,38,48,0.82) 100% );
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 18px 60px rgba(0,0,0,0.40);
    }

    .plan-top {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 10px;
    }

    .plan-name {
        color: #fff;
        font-weight: 900;
        letter-spacing: -0.4px;
        font-size: 22px;
    }

    .plan-tag {
        color: rgba(255,255,255,0.70);
        font-weight: 650;
        font-size: 13px;
        padding: 6px 10px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.12);
        background: rgba(255,255,255,0.06);
    }

    .plan-price {
        display: flex;
        align-items: baseline;
        gap: 8px;
        margin: 12px 0 12px;
    }

    .plan-from {
        color: rgba(255,255,255,0.62);
        font-weight: 650;
        font-size: 13px;
    }

    .plan-value {
        color: #fff;
        font-weight: 900;
        font-size: 32px;
        letter-spacing: -0.6px;
    }

    .plan-per {
        color: rgba(255,255,255,0.62);
        font-weight: 650;
        font-size: 13px;
    }
    /* list */
    .plan-list {
        margin: 0;
        padding: 0 0 0 18px;
        color: rgba(255,255,255,0.82);
        line-height: 1.6;
        font-size: 14px;
    }

        .plan-list li {
            margin: 7px 0;
        }

    /* CTA */
    .plan-cta {
        display: block;
        text-align: center;
        text-decoration: none;
        margin-top: 14px;
        padding: 12px 14px;
        border-radius: 999px;
        font-weight: 850;
        color: #fff;
        border: 1px solid rgba(255,255,255,0.18);
        background: rgba(255,255,255,0.08);
        box-shadow: 0 16px 44px rgba(0,0,0,0.30);
        transition: transform .18s ease, filter .18s ease, background-color .18s ease, box-shadow .18s ease;
    }

        .plan-cta:hover {
            transform: translateY(-1px);
            filter: brightness(1.06);
            background: rgba(255,255,255,0.12);
            box-shadow: 0 22px 64px rgba(0,0,0,0.38);
        }
    /* featured */
    .plan-featured {
        border-color: rgba(0,215,255,0.22);
        box-shadow: 0 18px 60px rgba(0,0,0,0.45), 0 0 0 6px rgba(0,215,255,0.06);
    }

    .plan-badge {
        position: absolute;
        top: 14px;
        right: 14px;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
        padding: 8px 10px;
        border-radius: 999px;
        color: #0f131a;
        background: linear-gradient(90deg, #00d7ff 0%, #7b3dff 100%);
    }

    .plan-cta-strong {
        background: linear-gradient(90deg, #7b3dff 0%, #3f7bff 50%, #00d7ff 100%);
        border: 0;
    }

    .plans-foot {
        text-align: center;
        margin-top: 18px;
    }

    .plans-note {
        color: rgba(255,255,255,0.60);
        font-size: 13px;
        margin: 0;
    }

/* ===== FIX: Planes no se recorten y tengan espacio real abajo ===== */

/* 1) La sección debe crecer con su contenido */
#pricing, .plans-section, .plans {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important; /* NO es “overflow visible” para tapar: evita el recorte */
    padding-bottom: clamp(140px, 10vw, 220px) !important;
    padding-bottom: calc(clamp(140px, 10vw, 220px) + env(safe-area-inset-bottom)) !important;
}

    /* 2) Wrappers internos: si alguno tiene altura fija, lo rompe */
    #pricing .plans-wrap, #pricing .plans-grid, #pricing .container,
    .plans-section .plans-wrap, .plans-section .plans-grid,
    .plans .plans-wrap, .plans .plans-grid {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

/* 3) Dale aire al “foot” para que no quede pegado */
.plans-foot {
    margin-top: 28px !important;
    padding-bottom: 40px !important;
}

/* 4) Si la grilla de cards es la que corta, sumale margen abajo */
.plans-grid {
    margin-bottom: 24px !important;
}

/* === FIX: el último plan no debe quedar cortado === */
#pricing, .plans-section, .plans {
    position: relative;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding-bottom: 160px !important; /* espacio real debajo */
}

#pricing .plans-wrap,
#pricing .plans-grid,
#pricing .container {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

section.section-content.henrry-section.plans-page {
    min-height: 1060px;
}
.plans-grid {
    margin-bottom: 60px !important;
}
