/* ===== SANADEN - ESTILOS GLOBALES ===== */
        :root {
            --pink-50: #fff0f5;
            --pink-100: #ffe0ec;
            --pink-200: #ffc2d9;
            --pink-400: #f472a8;
            --pink-500: #e84393;
            --pink-600: #d63384;
            --pink-700: #b8276e;
            --dark: #1a1a2e;
            --dark-light: #2d2d44;
            --gray-100: #f8f8fa;
            --gray-200: #ededf0;
            --gray-400: #9e9eab;
            --gray-600: #5a5a6e;
            --white: #ffffff;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
            --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
            --radius: 16px;
            --radius-sm: 10px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--dark);
            background: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            line-height: 1.2;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 16px 0;
            transition: all 0.4s ease;
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.06);
            padding: 10px 0;
        }

        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo img {
            height: 48px;
            transition: height 0.3s ease;
        }

        .navbar.scrolled .nav-logo img {
            height: 40px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--white);
            transition: color 0.3s ease;
            position: relative;
        }

        .navbar.scrolled .nav-links a {
            color: var(--dark);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--pink-500);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links .dropdown {
            position: relative;
        }

        .nav-links .dropdown-menu {
            position: absolute;
            top: calc(100% + 12px);
            left: 50%;
            transform: translateX(-50%);
            background: var(--white);
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-lg);
            min-width: 220px;
            padding: 8px 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .nav-links .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            top: calc(100% + 6px);
        }

        .dropdown-menu a {
            display: block;
            padding: 10px 20px;
            font-size: 0.9rem;
            color: var(--dark) !important;
            transition: background 0.2s ease;
        }

        .dropdown-menu a:hover {
            background: var(--pink-50);
            color: var(--pink-600) !important;
        }

        .dropdown-menu a::after {
            display: none;
        }

        .nav-cta {
            background: var(--pink-500);
            color: var(--white) !important;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            background: var(--pink-600);
            transform: translateY(-1px);
        }

        .nav-cta::after {
            display: none !important;
        }

        /* Hamburger */
        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 8px;
        }

        .nav-hamburger span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: var(--white);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .nav-hamburger span {
            background: var(--dark);
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: -1;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(26,26,46,0.82) 0%, rgba(232,67,147,0.45) 100%);
        }

        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 120px 24px 80px;
            width: 100%;
        }

        .hero-content {
            max-width: 640px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(8px);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--white);
            margin-bottom: 24px;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .hero-badge span {
            width: 8px;
            height: 8px;
            background: #4ade80;
            border-radius: 50%;
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5.5vw, 4rem);
            color: var(--white);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero h1 em {
            font-style: normal;
            color: var(--pink-400);
        }

        .hero p {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.85);
            margin-bottom: 36px;
            max-width: 500px;
            line-height: 1.7;
        }

        .hero-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 50px;
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: var(--pink-500);
            color: var(--white);
            box-shadow: 0 8px 25px rgba(232,67,147,0.35);
        }

        .btn-primary:hover {
            background: var(--pink-600);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(232,67,147,0.45);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.4);
        }

        .btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.7);
        }

        .btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        /* ===== STATS BAR ===== */
        .stats-bar {
            background: var(--white);
            margin-top: -50px;
            position: relative;
            z-index: 10;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            padding: 0;
        }

        .stat-item {
            padding: 36px 24px;
            text-align: center;
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 25%;
            height: 50%;
            width: 1px;
            background: var(--gray-200);
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--pink-500);
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gray-600);
            margin-top: 4px;
        }

        /* ===== SECTIONS GENERAL ===== */
        .section {
            padding: 100px 24px;
        }

        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--pink-500);
            margin-bottom: 12px;
        }

        .section-header h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            color: var(--dark);
            margin-bottom: 16px;
        }

        .section-header p {
            font-size: 1.05rem;
            color: var(--gray-600);
            max-width: 550px;
            margin: 0 auto;
        }

        /* ===== SERVICIOS ===== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .service-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--gray-200);
            transition: all 0.4s ease;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .service-card-img {
            height: 200px;
            overflow: hidden;
        }

        .service-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-card-img img {
            transform: scale(1.08);
        }

        .service-card-body {
            padding: 28px;
        }

        .service-card-body h3 {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .service-card-body p {
            font-size: 0.92rem;
            color: var(--gray-600);
            line-height: 1.6;
        }

        .service-card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 16px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--pink-500);
            transition: gap 0.3s ease;
        }

        .service-card:hover .service-card-link {
            gap: 10px;
        }

        /* ===== NOSOTROS ===== */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-img-wrapper {
            position: relative;
        }

        .about-img-wrapper img {
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            width: 100%;
            height: 450px;
            object-fit: cover;
        }

        .about-img-accent {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 180px;
            height: 180px;
            background: var(--pink-100);
            border-radius: var(--radius);
            z-index: -1;
        }

        .about-content .section-tag {
            text-align: left;
        }

        .about-content h2 {
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            margin-bottom: 20px;
        }

        .about-content p {
            color: var(--gray-600);
            font-size: 1rem;
            margin-bottom: 16px;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 28px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .about-feature-icon {
            width: 44px;
            height: 44px;
            background: var(--pink-50);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .about-feature-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--pink-500);
            fill: none;
            stroke-width: 2;
        }

        .about-feature span {
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--dark);
        }

        /* ===== CARRUSEL ===== */
        .gallery-section {
            background: var(--gray-100);
        }

        .carousel-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .carousel-track.no-transition {
            transition: none !important;
        }

        .carousel-item {
            min-width: 33.33%;
            padding: 10px;
            box-sizing: border-box;
            overflow: hidden;
            flex-shrink: 0;
        }

        .carousel-item img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            border-radius: var(--radius);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            box-shadow: var(--shadow-md);
        }

        .carousel-item:hover img {
            transform: scale(1.03);
            box-shadow: var(--shadow-lg);
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(8px);
            border: 1px solid var(--gray-200);
            padding: 14px;
            cursor: pointer;
            border-radius: 50%;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-btn:hover {
            background: var(--white);
            transform: translateY(-50%) scale(1.1);
            box-shadow: var(--shadow-md);
        }

        .carousel-btn-prev { left: 16px; }
        .carousel-btn-next { right: 16px; }

        .carousel-btn svg {
            width: 22px;
            height: 22px;
            stroke: var(--dark);
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .carousel-dots {
            text-align: center;
            margin-top: 20px;
        }

        .carousel-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            background: var(--gray-400);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            padding: 0;
        }

        .carousel-dot.active {
            background: var(--pink-500);
            transform: scale(1.4);
        }

        /* ===== TESTIMONIOS ===== */
        .testimonials-section {
            background: var(--dark);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(232,67,147,0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .testimonials-section .section-header h2 {
            color: var(--white);
        }

        .testimonials-section .section-header p {
            color: rgba(255,255,255,0.6);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius);
            padding: 32px;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-4px);
        }

        .testimonial-stars {
            color: #fbbf24;
            font-size: 1.1rem;
            margin-bottom: 16px;
        }

        .testimonial-text {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--pink-500);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            color: var(--white);
            flex-shrink: 0;
        }

        .testimonial-name {
            font-weight: 600;
            font-size: 0.95rem;
        }

        .testimonial-source {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.4);
        }

        /* Elfsight widget placeholder */
        .reviews-widget {
            margin-top: 50px;
            text-align: center;
        }

        /* ===== FAQ ===== */
        .faq-list {
            max-width: 720px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--gray-200);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 24px 0;
            font-family: 'DM Sans', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--dark);
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s ease;
        }

        .faq-question:hover {
            color: var(--pink-500);
        }

        .faq-question svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2.5;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.open .faq-question svg {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
        }

        .faq-answer p {
            padding-bottom: 24px;
            font-size: 0.95rem;
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* ===== CONTACTO ===== */
        .contact-section {
            background: var(--gray-100);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .contact-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--pink-50);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--pink-500);
            fill: none;
            stroke-width: 2;
        }

        .contact-item h4 {
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .contact-item p, .contact-item a {
            font-size: 0.92rem;
            color: var(--gray-600);
            line-height: 1.5;
        }

        .contact-item a:hover {
            color: var(--pink-500);
        }

        .contact-map {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            min-height: 360px;
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            min-height: 360px;
            border: none;
        }

        /* ===== CTA WHATSAPP FLOATING ===== */
        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(37,211,102,0.4);
            z-index: 999;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(37,211,102,0.5);
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            color: rgba(255,255,255,0.7);
            padding: 60px 24px 30px;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-brand p {
            font-size: 0.9rem;
            margin-top: 16px;
            line-height: 1.7;
        }

        .footer h4 {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--pink-400);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.82rem;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 24px;
                z-index: 999;
            }

            .nav-links.open {
                display: flex;
            }

            .nav-links a {
                color: var(--dark) !important;
                font-size: 1.2rem;
            }

            .nav-links .dropdown-menu {
                position: static;
                transform: none;
                box-shadow: none;
                padding: 0;
                opacity: 1;
                visibility: visible;
                text-align: center;
            }

            .nav-hamburger {
                display: flex;
                z-index: 1000;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .stats-bar {
                grid-template-columns: 1fr;
                margin-top: -30px;
                margin-left: 16px;
                margin-right: 16px;
            }

            .stat-item:not(:last-child)::after {
                right: 25%;
                top: auto;
                bottom: 0;
                height: 1px;
                width: 50%;
            }

            .stat-item {
                padding: 20px;
            }

            .carousel-item {
                min-width: 100%;
            }

            .carousel-item img {
                height: 260px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .section {
                padding: 60px 20px;
            }
        }

        /* ===== ANIMATIONS ===== */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }


/* ===== SERVICE PAGE HERO ===== */
.service-hero {
    padding: 160px 24px 80px;
    background: var(--gray-100);
    text-align: center;
}

.service-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.service-hero .breadcrumb {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.service-hero .breadcrumb a {
    color: var(--pink-500);
}

.service-hero .breadcrumb a:hover {
    text-decoration: underline;
}

.service-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--dark);
    margin-bottom: 20px;
}

.service-hero h1 em {
    font-style: normal;
    color: var(--pink-500);
}

.service-hero p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* ===== SERVICE CONTENT GRID ===== */
.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-content-grid.reversed {
    direction: rtl;
}

.service-content-grid.reversed > * {
    direction: ltr;
}

.service-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 20px;
}

.service-text p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== BENEFITS ===== */
.benefits-section {
    background: var(--gray-100);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--pink-50);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--pink-500);
    fill: none;
    stroke-width: 2;
}

.benefit-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,67,147,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
}

/* ===== NAVBAR VARIANTS FOR SERVICE PAGES ===== */
.navbar.dark-start {
    background: transparent;
}

.navbar.dark-start .nav-links a {
    color: var(--white);
}

.navbar.light-start {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 10px 0;
}

.navbar.light-start .nav-links a {
    color: var(--dark);
}

.navbar.light-start .nav-hamburger span {
    background: var(--dark);
}

/* ===== BUTTON VARIANT ===== */
.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray-200);
}

.btn-outline-dark:hover {
    border-color: var(--pink-500);
    color: var(--pink-500);
}

/* ===== SERVICE PAGES RESPONSIVE ===== */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-content-grid.reversed {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-hero {
        padding: 100px 20px 50px;
    }

    .service-hero p {
        font-size: 0.95rem;
    }

    .service-img img {
        height: 240px;
    }

    .benefit-card {
        padding: 24px 18px;
    }

    .cta-section {
        padding: 60px 20px;
    }
}

/* ===== MEJORAS RESPONSIVE GLOBALES MOVIL ===== */
@media (max-width: 768px) {

    /* Hero */
    .hero-inner {
        padding: 90px 20px 50px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    /* Nosotros - imagen más compacta */
    .about-img-wrapper img {
        height: 280px;
    }

    .about-img-accent {
        display: none;
    }

    /* Section headers más compactos */
    .section-header {
        margin-bottom: 36px;
    }

    /* Service cards */
    .service-card-body {
        padding: 20px;
    }

    /* Contacto - mapa menos alto */
    .contact-map,
    .contact-map iframe {
        min-height: 260px;
    }

    /* Stats bar bien encuadrado */
    .stats-bar {
        margin-top: -20px;
        border-radius: var(--radius-sm);
    }
}

/* ===== PANTALLAS MUY PEQUEÑAS (< 400px) ===== */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .service-hero h1 {
        font-size: 1.7rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}