  /* ==========================================================================
           Sistema de Diseño (Variables)
           ========================================================================== */
        :root {
            /* Palette oklch */
            --background: oklch(0.974 0.002 167.01);
            --foreground: oklch(0.409 0.000 263.28);
            --primary: oklch(0.923 0.020 173.00);
            --primary-foreground: oklch(0.409 0.000 263.28);
            --secondary: oklch(0.732 0.034 229.53);
            --secondary-foreground: oklch(1 0 0);
            --muted-foreground: oklch(0.551 0.023 264.37);
            --border: oklch(0.732 0.034 229.53 / 25%);
            --input: oklch(0.732 0.034 229.53 / 20%);
            --whatsapp: #25D366;

            /* Typography */
            --font-display: 'Playfair Display', Georgia, serif;
            --font-body: 'Inter', system-ui, sans-serif;

            /* Animation */
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--background);
            color: var(--foreground);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        section {
            scroll-margin-top: 80px;
            /* Para que el header fijo no tape los títulos */
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* ==========================================================================
           Animaciones (Replica de componente FadeIn)
           ========================================================================== */
        .fade-in {
            opacity: 0;
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
            will-change: opacity, transform;
        }

        .fade-in.up {
            transform: translateY(1rem);
        }

        .fade-in.down {
            transform: translateY(-1rem);
        }

        .fade-in.left {
            transform: translateX(-1rem);
        }

        .fade-in.right {
            transform: translateX(1rem);
        }

        .fade-in.is-visible {
            opacity: 1;
            transform: translate(0, 0);
        }

        /* ==========================================================================
           Header & Navegación
           ========================================================================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            transition: all 0.3s ease;
            background-color: transparent;
        }

        .header.scrolled {
            background-color: oklch(0.974 0.002 167.01 / 90%);
            /* bg-background/90 */
            backdrop-filter: blur(12px);
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.5rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        .nav-brand img {
            height: 3rem;
            /* h-12 */
            width: auto;
            object-fit: contain;
        }

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

        .nav-menu a {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--muted-foreground);
            transition: color 0.2s ease;
        }

        .nav-menu a:hover {
            color: var(--foreground);
        }

        .nav-social {
            display: none;
            gap: 1rem;
            align-items: center;
        }

        .nav-social a {
            color: var(--muted-foreground);
            font-size: 1.25rem;
            transition: color 0.2s ease;
        }

        .nav-social a:hover {
            color: var(--foreground);
        }

        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--foreground);
            cursor: pointer;
        }

        @media (min-width: 768px) {

            .nav-menu,
            .nav-social {
                display: flex;
            }

            .mobile-menu-btn {
                display: none;
            }
        }

        /* Mobile Dropdown */
        .mobile-dropdown {
            overflow: hidden;
            max-height: 0;
            opacity: 0;
            transition: all 0.3s var(--ease-out-expo);
            background-color: oklch(0.974 0.002 167.01 / 95%);
            backdrop-filter: blur(12px);
            border-top: 1px solid var(--border);
        }

        .mobile-dropdown.open {
            max-height: 300px;
            opacity: 1;
        }

        .mobile-dropdown nav {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding: 1rem 1.5rem;
        }

        .mobile-dropdown nav a {
            font-size: 1rem;
            font-weight: 500;
            color: var(--muted-foreground);
        }

        .mobile-dropdown-social {
            display: flex;
            gap: 1rem;
            padding-top: 0.5rem;
            margin-top: 0.5rem;
            border-top: 1px solid var(--input);
        }

        /* ==========================================================================
           Hero Section
           ========================================================================== */
        .hero-wrapper {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-image: url('/images/hero-image.webp');
            background-size: cover;
            background-position: center top;
            background-repeat: no-repeat;
            background-color: var(--background);
            text-align: center;
            padding: 0 1.5rem;
        }

        .hero-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(248, 250, 248, 0.4) 0%, rgba(248, 250, 248, 0.95) 80%);
            pointer-events: none;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            margin-top: 4rem;
            /* offset para el header */
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: 3.5rem;
            line-height: 1.1;
            font-weight: 500;
            color: var(--foreground);
            margin-bottom: 1.5rem;
        }

        .italic-accent {
            font-style: italic;
            color: var(--secondary);
        }

        .hero-subtitle {
            font-size: 1.125rem;
            line-height: 1.6;
            color: var(--muted-foreground);
            margin-bottom: 2.5rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .btn {
            padding: 0.75rem 1.75rem;
            border-radius: 9999px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-primary {
            background-color: var(--secondary);
            color: var(--secondary-foreground);
            border: 1px solid var(--secondary);
        }

        .btn-primary:hover {
            background-color: oklch(0.732 0.034 229.53 / 90%);
        }

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

        .btn-outline:hover {
            border-color: var(--foreground);
            background-color: oklch(0.409 0.000 263.28 / 5%);
        }

        @media (min-width: 768px) {
            .hero-title {
                font-size: 4.5rem;
            }
        }

        @media (max-width: 639px) {
            .hero-buttons {
                flex-direction: column;
            }
        }

        /* ==========================================================================
           Componentes Reutilizables (Eyebrow & Títulos)
           ========================================================================== */
        .section-padding {
            padding: 6rem 0;
        }

        .eyebrow {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--secondary);
            margin-bottom: 0.75rem;
        }

        .section-heading {
            font-family: var(--font-display);
            font-size: 2.25rem;
            font-weight: 500;
            line-height: 1.25;
            color: var(--foreground);
            margin-bottom: 1.5rem;
        }

        @media (min-width: 1024px) {
            .section-heading {
                font-size: 3rem;
            }
        }

        /* ==========================================================================
           Sobre Mí
           ========================================================================== */
        .about-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .about-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        .about-image-col {
            position: relative;
            max-width: 28rem;
            margin: 0 auto;
            width: 100%;
        }

        @media (max-width: 1023px) {
            .about-image-col {
                order: 2;
            }

            .about-text-col {
                order: 1;
            }
        }

        .image-wrapper {
            position: relative;
            aspect-ratio: 4/5;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-paragraphs {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            font-size: 1.125rem;
            line-height: 1.625;
            color: var(--muted-foreground);
        }

        .about-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .stat-circle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            background-color: var(--primary);
            color: var(--primary-foreground);
            font-family: var(--font-display);
            font-size: 1.125rem;
            font-weight: 500;
        }

        .stat-title {
            font-weight: 500;
            color: var(--foreground);
        }

        .stat-desc {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        /* ==========================================================================
           Servicios
           ========================================================================== */
        .services-section {
            background-color: oklch(0.923 0.020 173.00 / 30%);
        }

        .section-header-center {
            text-align: center;
            max-width: 48rem;
            margin: 0 auto 4rem auto;
        }

        .services-grid {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: 1fr;
            justify-items: center
        }

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

        @media (min-width: 1024px) {
            .service-card {
                width: 80%;
            }

            .services-grid {
                grid-template-columns: repeat(1, 1fr);
            }
        }

        .service-card {
            background-color: var(--background);
            border: 1px solid var(--border);
            border-radius: 1.5rem;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;

            align-self: center;
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .featured-service {
            box-shadow: 0 0 0 2px oklch(0.732 0.034 229.53 / 30%);
        }

        @media (min-width: 1024px) {
            .featured-service {
                grid-column: span 2;
                flex-direction: row;
                align-items: center;
                gap: 2rem;
            }
        }

        .service-icon-box {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 1rem;
            background-color: var(--primary);
            color: var(--primary-foreground);
            font-size: 1.5rem;
            margin-bottom: 1.25rem;
            flex-shrink: 0;
        }

        .featured-icon {
            width: 4rem;
            height: 4rem;
            background-color: var(--secondary);
            color: var(--secondary-foreground);
            font-size: 1.75rem;
        }

        .service-title-wrapper {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.5rem;
        }

        .service-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--foreground);
        }

        .badge-destacado {
            background-color: oklch(0.732 0.034 229.53 / 10%);
            color: var(--secondary);
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .service-desc {
            color: var(--muted-foreground);
            line-height: 1.625;
            margin-bottom: 1.25rem;
            flex-grow: 1;
        }

        .saber-mas-link {
            display: inline-flex;
            align-items: center;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--secondary);
            margin-top: auto;
        }

        .saber-mas-link i {
            margin-left: 0.5rem;
            transition: transform 0.3s;
        }

        .saber-mas-link:hover i {
            transform: translateX(4px);
        }

/* ==========================================================================
   Testimonios (Scroll Snap Slider)
   ========================================================================== */
.testimonials-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory; 
    scrollbar-width: none;
    -ms-overflow-style: none; 
    padding-block: 1rem; 
    margin-inline: -1rem;
    padding-inline: 1rem;
   align-items: flex-start;
    &::-webkit-scrollbar {
        display: none; /* Oculta scrollbar en Chrome/Safari */
    }

    &:focus-visible {
        outline: 2px solid var(--primary);
        outline-offset: 4px;
        border-radius: 0.5rem;
    }

    @media (min-width: 768px) {
        margin-inline: 0;
        padding-inline: 0;
    }

    .review-card {
        scroll-snap-align: start; /* Punto de anclaje de cada tarjeta */
        flex: 0 0 100%; /* Mobile: 1 tarjeta por vista */
        
        position: relative;
        background-color: #ffffff;
        border: 1px solid var(--border);
        border-radius: 1.5rem;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;

        @media (min-width: 640px) {
            flex: 0 0 calc(50% - 0.75rem); /* Tablet: 2 tarjetas (restando el gap) */
        }

        @media (min-width: 1024px) {
            flex: 0 0 calc(33.333% - 1rem); /* Desktop: 3 tarjetas (restando el gap) */
        }

        &:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .quote-icon {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 1.75rem;
            color: oklch(0.732 0.034 229.53 / 20%);
        }

        .stars-container {
            display: flex;
            gap: 0.125rem;
            margin-bottom: 1.25rem;
        }

        .review-text {
            font-size: 1rem;
            line-height: 1.625;
            color: var(--foreground);
            margin-bottom: 1.5rem;
            flex: 1;
        }

        .reviewer-info-box {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: auto;
        }

        .reviewer-avatar {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.75rem;
            height: 2.75rem;
            border-radius: 50%;
            background-color: var(--primary);
            color: #fff;
            font-family: var(--font-display);
            font-size: 0.875rem;
            font-weight: 500;
        }

        .reviewer-name {
            font-family: var(--font-display);
            font-weight: 500;
            color: var(--foreground);
        }

        .reviewer-role {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }
    }
}

/* ==========================================================================
   Controles del Slider
   ========================================================================== */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem; /* Separación limpia del subtítulo */

    .slider-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        border: 1px solid var(--border);
        background-color: #ffffff;
        color: var(--secondary);
        cursor: pointer;
        transition: all 0.2s ease;

        &:hover, &:focus-visible {
            background-color: var(--primary);
            color: #ffffff;
            border-color: var(--primary);
        }

        &:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
    }
}

/* ==========================================================================
           Contacto
    ========================================================================== */
        .contact-grid {
            display: grid;
            gap: 3rem;
            grid-template-columns: 1fr;
        }

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

        .contact-form-card {
            background-color: oklch(0.923 0.020 173.00 / 40%);
            border-radius: 1.5rem;
            padding: 2.5rem;
        }

        .form-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 500;
        }

        .form-desc {
            color: var(--muted-foreground);
            margin: 0.5rem 0 2rem 0;
        }

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

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

        @media (min-width: 640px) {
            .form-row {
                grid-template-columns: 1fr 1fr;
                margin-bottom: 0;
            }
        }

        .form-group label {
            font-size: 0.875rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border-radius: 0.75rem;
            border: 1px solid var(--input);
            background-color: oklch(0.974 0.002 167.01 / 80%);
            font-family: var(--font-body);
            font-size: 1rem;
            outline: none;
            transition: box-shadow 0.2s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            box-shadow: 0 0 0 2px var(--secondary);
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background-color: var(--secondary);
            color: var(--secondary-foreground);
            border: none;
            border-radius: 0.75rem;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .submit-btn:hover {
            background-color: oklch(0.732 0.034 229.53 / 90%);
        }

        .contact-info-col {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 2rem;
        }

        @media (min-width: 1024px) {
            .contact-info-col {
                padding-left: 2rem;
            }
        }

        .info-list {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .info-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 3rem;
            height: 3rem;
            background-color: var(--primary);
            border-radius: 50%;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .info-label {
            font-weight: 500;
        }

        .info-value {
            color: var(--muted-foreground);
        }

        .info-value-sub {
            font-size: 0.875rem;
            color: oklch(0.551 0.023 264.37 / 80%);
        }

        .whatsapp-direct-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            background-color: var(--whatsapp);
            color: #ffffff;
            padding: 1rem 2rem;
            border-radius: 0.75rem;
            font-weight: 500;
            align-self: flex-start;
            transition: all 0.2s;
        }

        .whatsapp-direct-btn:hover {
            background-color: #1fae56;
        }

        @media (max-width: 639px) {
            .whatsapp-direct-btn {
                width: 100%;
            }
        }

        /* ==========================================================================
           FAB WhatsApp
           ========================================================================== */
        .fab-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--whatsapp);
            color: white;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
            z-index: 100;
            transition: transform 0.3s ease;
        }

        .fab-whatsapp:hover {
            transform: scale(1.08);
        }

        /* ==========================================================================
           Footer
           ========================================================================== */
        .footer {
            background-color: var(--background);
            border-top: 1px solid var(--border);
            padding: 3rem 0;
            /* py-12 */
        }

        .footer-top {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            /* gap-6 */
        }

        @media (min-width: 768px) {
            .footer-top {
                flex-direction: row;
            }
        }

        .footer-brand {
            text-align: center;
        }

        @media (min-width: 768px) {
            .footer-brand {
                text-align: left;
            }
        }

        .footer-brand h3 {
            font-family: var(--font-display);
            font-size: 1.25rem;
            /* text-xl */
            font-weight: 500;
            color: var(--foreground);
        }

        .footer-brand p {
            margin-top: 0.25rem;
            /* mt-1 */
            font-size: 0.875rem;
            /* text-sm */
            color: var(--muted-foreground);
        }

        .footer-social {
            display: flex;
            align-items: center;
            gap: 1rem;
            /* gap-4 */
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            /* w-10 */
            height: 2.5rem;
            /* h-10 */
            border-radius: 50%;
            background-color: var(--primary);
            color: var(--primary-foreground);
            font-size: 1.25rem;
            /* size={20} */
            transition: all 0.2s ease;
        }

        .social-link:hover {
            background-color: var(--secondary);
            color: var(--secondary-foreground);
        }

        .footer-bottom {
            margin-top: 2rem;
            /* mt-8 */
            padding-top: 2rem;
            /* pt-8 */
            border-top: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            /* gap-3 */
            font-size: 0.875rem;
            /* text-sm */
            color: var(--muted-foreground);
        }

        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
            }
        }

        .made-with-love {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            /* gap-1 */
        }

        .made-with-love i {
            font-size: 0.875rem;
            /* size={14} */
            color: var(--secondary);
        }