/* ==========================================================================
   Base & Variables
   ========================================================================== */
:root {
    /* Color Palette - Premium Corporate */
    --bg-color: #fafcff;
    --bg-alt: #f1f5f9;
    --bg-dark: #0b1120;
    --text-main: #1e293b;
    --text-muted: #475569;
    --text-light: #94a3b8;

    /* Branding */
    --accent-primary: #1eb2b6;
    --accent-teal: #1eb2b6;
    --accent-dark: #0f172a;

    /* UI Elements */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows & Glows */
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.03);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.02);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.04), 0 8px 10px -6px rgb(0 0 0 / 0.02);
    --shadow-glass: 0 8px 32px 0 rgba(30, 178, 182, 0.08);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --max-width: 1180px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--accent-dark);
}

p {
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-fast);
}

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

ul {
    list-style: none;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-teal) 0%, #0d8a8d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-teal {
    color: var(--accent-teal);
}

.text-white {
    color: #ffffff;
}

.text-white .section-title {
    color: #ffffff;
}

.text-white .section-subtitle {
    color: #94a3b8;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-inline: auto;
}

.pre-title {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-teal);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--accent-teal);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.bg-light {
    background-color: var(--bg-alt);
}

.bg-dark {
    background-color: var(--bg-dark);
}

/* ==========================================================================
   Backgrounds & Decor
   ========================================================================== */
.noise-overlay {
    position: fixed;
    inset: 0;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.04"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 9999;
}

.site-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15, 23, 42, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
}

.blob {
    position: absolute;
    filter: blur(90px);
    opacity: 0.5;
    border-radius: 50%;
    animation: float-bg 15s infinite ease-in-out alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(30, 178, 182, 0.2);
}

.blob-2 {
    top: 40%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(59, 130, 246, 0.1);
    animation-delay: -5s;
}

@keyframes float-bg {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(20px, -20px);
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-family: var(--font-sans);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 1px solid transparent;
    font-size: 0.95rem;
    z-index: 1;
}

.btn.primary {
    background: var(--accent-teal);
    color: #fff;
    box-shadow: 0 4px 14px rgba(30, 178, 182, 0.25);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 178, 182, 0.4);
    background: #179ea1;
}

.btn.ghost {
    background: transparent;
    color: var(--accent-dark);
    border-color: rgba(15, 23, 42, 0.15);
}

.btn.ghost:hover {
    border-color: var(--accent-dark);
    background: transparent;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.site-header .logo img {
    width: 56px;
    height: auto;
}

.site-header .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* Espacio entre el logo y el texto */
    text-decoration: none;
}

.site-header.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent-dark);
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.4rem 0.4rem 0.4rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.site-header.scrolled .nav {
    background: transparent;
    border-color: transparent;
    backdrop-filter: none;
}

.nav a:not(.cta-nav) {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.nav a:not(.cta-nav):hover {
    color: var(--accent-teal);
}

.cta-nav {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    box-shadow: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 16px;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--accent-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 7px;
}

.hamburger span:nth-child(3) {
    top: 14px;
}

.mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 200px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: #fff;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.badge-pulse {
    width: 6px;
    height: 6px;
    background: var(--accent-teal);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(30, 178, 182, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 6px rgba(30, 178, 182, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(30, 178, 182, 0);
    }
}

.hero-copy h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.hero-copy .lead {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* ==========================================================================
   Hero Visual & Glass Card Premium (Actualizado)
   ========================================================================== */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.15), inset 0 1px 0 rgba(255, 255, 255, 1);
    padding: 2rem;
    width: 100%;
    max-width: 440px;
    animation: float-complex 8s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes float-complex {

    0%,
    100% {
        transform: translateY(0) rotateX(2deg) rotateY(-2deg);
    }

    50% {
        transform: translateY(-15px) rotateX(-2deg) rotateY(2deg);
    }
}

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

.glass-header .dots {
    display: flex;
    gap: 8px;
}

.dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
    box-shadow: 0 0 6px rgba(255, 95, 86, 0.4);
}

.dot.yellow {
    background: #ffbd2e;
    box-shadow: 0 0 6px rgba(255, 189, 46, 0.4);
}

.dot.green {
    background: #27c93f;
    box-shadow: 0 0 6px rgba(39, 201, 63, 0.4);
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--accent-teal);
    background: rgba(30, 178, 182, 0.08);
    padding: 6px 12px;
    border-radius: var(--radius-full);
}

.pulse-indicator {
    width: 6px;
    height: 6px;
    background: var(--accent-teal);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.glass-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.logo-container {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.02);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-large {
    width: 150px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}

.ui-mockup-content {
    width: 100%;
}

.skeleton-lines {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.line {
    height: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.line.w-100 {
    width: 100%;
}

.line.w-80 {
    width: 80%;
}

.line.w-60 {
    width: 60%;
}

/* Efecto de brillo/carga para el esqueleto */
.shimmer .line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

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

/* Elementos Flotantes (Badges) */
.floating-badge {
    position: absolute;
    background: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    z-index: 3;
    animation: float-badge 6s ease-in-out infinite reverse;
}

.floating-badge svg {
    color: var(--accent-teal);
}

.badge-1 {
    bottom: -20px;
    right: -30px;
    animation-delay: -1s;
}

.badge-2 {
    top: 30px;
    left: -40px;
    animation-delay: -2.5s;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(30, 178, 182, 0.1);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-alt);
    color: var(--accent-teal);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.95rem;
}

/* ==========================================================================
   Experiencia (Bento Grid Premium)
   ========================================================================== */
.premium-bento-section {
    margin: 4rem auto;
    max-width: 1200px;
    width: 95%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bento-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.bento-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(30, 178, 182, 0.3);
    transform: translateY(-3px);
}

.service-icon-wrap {
    width: 44px;
    height: 44px;
    background: var(--accent-teal);
    color: #fff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.bento-item h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.bento-item p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.bento-wide {
    grid-column: span 3;
    background: linear-gradient(135deg, rgba(30, 178, 182, 0.1) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(30, 178, 182, 0.2);
    padding: 3rem;
    border-radius: var(--radius-lg);
}

.bento-wide h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bento-wide p {
    color: #cbd5e1;
    max-width: 800px;
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-list li {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Proceso (Timeline)
   ========================================================================== */
.timeline-process {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 24px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-teal) 0%, transparent 100%);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding-left: 5rem;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: #fff;
    color: var(--accent-dark);
    border: 2px solid var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 0 0 6px var(--bg-color);
    z-index: 2;
    transition: var(--transition-fast);
}

.timeline-item:hover .timeline-dot {
    background: var(--accent-teal);
    color: #fff;
}

.timeline-content {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(30, 178, 182, 0.15);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================================================
   Solutions Cards (Light Mode Refined)
   ========================================================================== */
.solutions-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card-modern {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.solution-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 178, 182, 0.2);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.icon-box {
    width: 44px;
    height: 44px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
}

.icon-box.primary-box {
    background: var(--accent-teal);
    color: #fff;
}

.solution-header h4 {
    font-size: 1.2rem;
}

.solution-body {
    flex: 1;
    margin-bottom: 2rem;
}

.solution-body p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.solution-body ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.solution-body ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
}

.solution-body ul li::before {
    content: '✓';
    color: var(--accent-teal);
    font-weight: 800;
}

.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-dark);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
}

.solution-card-modern.highlight {
    border-color: var(--accent-dark);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    padding-top: 100px;
}

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info .section-title {
    text-align: left;
}

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

.icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(30, 178, 182, 0.1);
    color: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item span {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.contact-item strong {
    font-size: 1.1rem;
    color: var(--accent-dark);
    font-family: var(--font-heading);
}

.glass-form {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-main);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    border-radius: var(--radius-sm);
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(30, 178, 182, 0.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 5rem 0 2rem;
    margin-top: 2rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-light);
    margin: 1rem 0;
    max-width: 350px;
    font-size: 0.95rem;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-content: end;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

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

.footer-nav a:hover {
    color: var(--accent-teal);
    transform: translateX(3px);
}

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

/* ==========================================================================
   Animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ==========================================================================
   Responsiveness
   ========================================================================== */
@media (max-width: 992px) {

    .hero-grid,
    .contact,
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-actions,
    .trust,
    .contact-item {
        justify-content: center;
    }

    .contact-item div {
        text-align: left;
    }

    .contact-info .section-title {
        text-align: center;
    }

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

    .bento-wide {
        grid-column: span 2;
    }

    .footer-links-grid {
        justify-content: start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        border-radius: 0;
        border: none;
        padding: 2rem;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav.open {
        right: 0;
    }

    .nav a:not(.cta-nav) {
        font-size: 1.25rem;
        color: var(--accent-dark);
    }

    .cta-nav {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

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

    .bento-wide {
        grid-column: 1;
        padding: 2rem;
    }

    .timeline-item {
        padding-left: 4rem;
    }

    .timeline-dot {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .timeline-line {
        left: 20px;
    }

    /* Ocultar los badges flotantes en móvil para no saturar la pantalla */
    .floating-badge {
        display: none;
    }

    .glass-card {
        padding: 1.5rem;
    }
}