/* Variables del sistema */
        :root {
            --primary: #A66DD4;
            --secondary: #364F6B;
            --white: #ffffff;
            --black: #333333;
            --gray: #f5f5f5;
            --light-purple: #d4b3e8;
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        /* Reset y estilos base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #FFFFFF;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Container principal */
        .nosotros-container {
            padding-top: 40px;
            min-height: 200vh;
        }

        /* Sección Hero */
        .hero-section {
            position: relative;
            height: 70vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(145deg, var(--primary), var(--secondary));
            margin-top: 30px;
        }


        /* Nueva clase para la imagen de fondo */
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transform: scale(1.0); /* Zoom 120% */
            filter: brightness(0.5); /* Opcional: ajustar brillo */

        }




        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
            padding: 40px 20px;
            max-width: 800px;
            animation: fadeInUp 1s ease-out;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            animation: slideInLeft 0.8s ease-out;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            opacity: 0.95;
            animation: slideInRight 0.8s ease-out;
        }

        /* Floating particles effect */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
        }

        .particle {
            position: absolute;
            width: 10px;
            height: 10px;
            background: rgb(95, 241, 53);
            border-radius: 50%;
            animation: float 15s infinite ease-in-out;
        }

        .particle:nth-child(1) {
            left: 10%;
            animation-delay: 0s;
        }

        .particle:nth-child(2) {
            left: 30%;
            animation-delay: 2s;
        }

        .particle:nth-child(3) {
            left: 50%;
            animation-delay: 4s;
        }

        .particle:nth-child(4) {
            left: 70%;
            animation-delay: 6s;
        }

        .particle:nth-child(5) {
            left: 90%;
            animation-delay: 8s;
        }

   /* ============================================
   SECCIÓN DE CONTENIDO - REDISEÑO MODERNO
   ============================================ */

        .content-section {
            padding: 100px 5%;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        /* Línea decorativa lateral */
        .content-section::before {
            content: "";
            position: absolute;
            left: 2%;
            top: 10%;
            bottom: 10%;
            width: 2px;
            background: linear-gradient(
                    to bottom,
                    transparent,
                    rgba(166, 109, 212, 0.4),
                    rgba(54, 79, 107, 0.4),
                    transparent
            );
            border-radius: 2px;
        }

        /* ============================================
           GRID PRINCIPAL
           ============================================ */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
            margin-bottom: 100px;
            position: relative;
        }

        .content-grid:last-child {
            margin-bottom: 0;
        }

        .content-grid.reverse {
            direction: rtl;
        }

        .content-grid.reverse > * {
            direction: ltr;
        }

        /* ============================================
           IMAGE CARD — DISEÑO EDITORIAL
           ============================================ */
        .image-card {
            position: relative;
            border-radius: 24px;
            width: 100%;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04),
            0 12px 40px rgba(166, 109, 212, 0.18),
            0 40px 80px rgba(54, 79, 107, 0.12);
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
            box-shadow 0.5s ease;
            animation: riseUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
            isolation: isolate;
        }

        @keyframes riseUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .image-card:hover {
            transform: translateY(-12px) scale(1.01);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06),
            0 20px 60px rgba(166, 109, 212, 0.3),
            0 60px 100px rgba(54, 79, 107, 0.2);
        }

        /* Imagen */
        .image-card img {
            width: 100%;
            height: 440px;
            object-fit: cover;
            display: block;
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }

        .image-card:hover img {
            transform: scale(1.07);
        }

        /* Overlay oscuro base */
        .image-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                    160deg,
                    rgba(54, 79, 107, 0.15) 0%,
                    rgba(0, 0, 0, 0.1) 50%,
                    rgba(166, 109, 212, 0.2) 100%
            );
            z-index: 1;
            transition: opacity 0.5s ease;
        }

        .image-card:hover::before {
            opacity: 0.4;
        }

        /* Gradiente inferior */
        .image-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                    to top,
                    rgba(10, 10, 30, 0.75) 0%,
                    rgba(10, 10, 30, 0.2) 40%,
                    transparent 70%
            );
            z-index: 1;
            pointer-events: none;
        }

        /* Badge decorativo */
        .image-card .image-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 7px 14px;
            border-radius: 50px;
            z-index: 3;
            transition: all 0.3s ease;
        }

        .image-card:hover .image-badge {
            background: rgba(166, 109, 212, 0.5);
            border-color: rgba(166, 109, 212, 0.6);
        }

        /* Overlay con info */
        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 32px 28px;
            transform: translateY(8px);
            opacity: 0;
            transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 2;
        }

        .image-card:hover .image-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        .image-overlay h3 {
            color: #ffffff;
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }

        .image-overlay p {
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.88rem;
            line-height: 1.6;
        }

        /* Línea decorativa en el borde */
        .image-card .image-border-line {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(
                    90deg,
                    #a66dd4,
                    #364f6b,
                    #a66dd4
            );
            background-size: 200% 100%;
            z-index: 4;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .image-card:hover .image-border-line {
            transform: scaleX(1);
        }

        /* ============================================
           TEXT CARD — TIPOGRAFÍA EDITORIAL
           ============================================ */
        .text-card {
            padding: 48px 44px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 24px;
            border: 1px solid rgba(166, 109, 212, 0.12);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04),
            0 16px 48px rgba(166, 109, 212, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
            box-shadow 0.4s ease;
            animation: fadeSlideIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
            position: relative;
            overflow: hidden;
        }

        @keyframes fadeSlideIn {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Brillo decorativo en esquina */
        .text-card::before {
            content: "";
            position: absolute;
            top: -60px;
            right: -60px;
            width: 180px;
            height: 180px;
            background: radial-gradient(
                    circle,
                    rgba(166, 109, 212, 0.15) 0%,
                    transparent 70%
            );
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .text-card:hover::before {
            opacity: 1.5;
        }

        .text-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06),
            0 28px 60px rgba(166, 109, 212, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        /* Número decorativo de sección */
        .text-card .section-number {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(166, 109, 212, 0.7);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .text-card .section-number::before {
            content: "";
            display: inline-block;
            width: 28px;
            height: 2px;
            background: linear-gradient(90deg, #a66dd4, #364f6b);
            border-radius: 2px;
        }

        /* Título */
        .text-card h2 {
            font-size: 2.6rem;
            color: #1a1a2e;
            margin-bottom: 20px;
            line-height: 1.15;
            letter-spacing: -1.5px;
            font-weight: 800;
            position: relative;
        }

        /* Subrayado animado */
        .text-card h2 span {
            position: relative;
            display: inline;
        }

        .text-card h2 span::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, rgba(166, 109, 212, 0.35), rgba(54, 79, 107, 0.25));
            border-radius: 3px;
            z-index: -1;
            transition: height 0.3s ease;
        }

        .text-card:hover h2 span::after {
            height: 10px;
        }

        /* Separador */
        .text-card .divider {
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #a66dd4, #364f6b);
            border-radius: 3px;
            margin-bottom: 24px;
            transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .text-card:hover .divider {
            width: 90px;
        }

        /* Párrafo */
        .text-card p {
            font-size: 1.05rem;
            line-height: 1.9;
            color: #4a4a6a;
            margin-bottom: 20px;
            text-align: left;
        }

        .text-card p:last-of-type {
            margin-bottom: 0;
        }

        /* CTA link opcional */
        .text-card .text-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 28px;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: #a66dd4;
            text-decoration: none;
            transition: gap 0.3s ease, color 0.3s ease;
        }

        .text-card .text-cta::after {
            content: "→";
            transition: transform 0.3s ease;
        }

        .text-card .text-cta:hover {
            gap: 14px;
            color: #364f6b;
        }

        .text-card .text-cta:hover::after {
            transform: translateX(4px);
        }


        /* Features cards */
        .features-section {
            padding: 80px 5%;
            background: var(--fa-width);
            position: relative;
            overflow: hidden;
        }

        .features-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(166, 109, 212, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveGrid 20s linear infinite;
        }

        @keyframes moveGrid {
            0% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(50px, 50px);
            }
        }

        .features-title {
            text-align: center;
            font-size: 2.8rem;
            color: var(--shadow);
            margin-bottom: 70px;
            position: relative;
            animation: fadeInUp 1s ease-out;
        }

        .features-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Sección de estadísticas */
        .stats-section {
            background: linear-gradient(145deg, var(--primary), var(--secondary));
            padding: 80px 5%;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            position: relative;
            z-index: 1;
        }

        .stat-card {
            text-align: center;
            color: var(--white);
            padding: 30px 20px;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
            animation: fadeInUp 1s ease-out;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: block;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
        }

        .stat-label {
            font-size: 1.2rem;
            font-weight: 300;
            opacity: 0.95;
        }

        /* Sección de valores */
        .values-section {
            padding: 80px 5%;
            background: var(--white);
            max-width: 1400px;
            margin: 0 auto;
        }

        .values-title {
            text-align: center;
            font-size: 2.8rem;
            color: var(--shadow);
            margin-bottom: 70px;
            position: relative;
        }

        .values-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .value-card {
            background: linear-gradient(145deg, #ffffff, #f5f5f5);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transition: var(--transition);
        }

        .value-card:hover::before {
            transform: scaleX(1);
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(166, 109, 212, 0.2);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(145deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            box-shadow: 0 10px 30px rgba(166, 109, 212, 0.3);
        }

        .value-card h3 {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .value-card p {
            font-size: 1rem;
            color: #666;
            line-height: 1.7;
        }


        /* ===== WRAPPER GENERAL ===== */
        .location-comments-wrapper {
            padding: 30px 20px;
            background: linear-gradient(to bottom, #ffffff, #f6f7fb);
            text-align: center;
        }

        /* ===== HEADER ===== */
        .section-header {
            margin-bottom: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .section-header h2 {
            font-size: 2.3rem;
            color: var(--shadow);
            margin-bottom: 10px;
        }

        .section-header p {
            color: #666;
            font-size: 1.1rem;
        }

        /* ===== INFO CARDS ===== */
        .info-cards {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 50px;
            padding: 0 50px 0 50px;
            justify-content: space-around;
            align-items: center;
        }

        .info-item {
            width: 100%;
            max-width: 300px;
            background: #fff;
            padding: 24px 18px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
            min-width: 180px;
            transition: 0.3s;
        }

        .info-item:hover {
            transform: translateY(-5px);
        }

        .info-item h4 {
            color: var(--primary);
            margin-bottom: 8px;
        }

        .info-item p {
            color: #555;
            font-size: 0.95rem;
        }

        /* ===== GRID UBICACIÓN + COMENTARIOS ===== */
        .location-comments-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto 40px auto;
        }

        /* Contenedores internos */
        .location-box,
        .comments-box {
            background: #fff;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        /* ===== BOTÓN ===== */
        .btn-contact {
            display: inline-block;
            padding: 14px 28px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-contact:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(166, 109, 212, 0.3);
        }


        .feature-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            animation: fadeInUp 1s ease-out;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(166, 109, 212, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: var(--primary);
            box-shadow: 0 25px 60px rgba(166, 109, 212, 0.25);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(145deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            transform: rotate(360deg);
        }

        .feature-card h3 {
            font-size: 1.4rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .feature-card p {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }

        /* Decorative elements */
        .decorative-shape {
            position: absolute;
            opacity: 0.1;
            z-index: -1;
        }

        .shape-1 {
            top: 10%;
            left: 5%;
            width: 200px;
            height: 200px;
            background: var(--primary);
            border-radius: 50%;
            filter: blur(60px);
        }

        .shape-2 {
            bottom: 10%;
            right: 5%;
            width: 300px;
            height: 300px;
            background: var(--secondary);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            filter: blur(60px);
        }

        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
            }
            25% {
                transform: translateY(-20px) translateX(10px);
            }
            50% {
                transform: translateY(-40px) translateX(-10px);
            }
            75% {
                transform: translateY(-20px) translateX(10px);
            }
        }

        /* ============================================
   HERO — NUEVOS ELEMENTOS
   ============================================ */
        .hero-eyebrow {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.75);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            padding: 7px 16px;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        .hero-stats {
            display: flex;
            align-items: center;
            gap: 32px;
            margin-top: 40px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .hero-stat strong {
            font-size: 2rem;
            font-weight: 800;
            color: #ffffff;
            line-height: 1;
            letter-spacing: -1px;
        }

        .hero-stat span {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.65);
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .hero-stat-divider {
            width: 1px;
            height: 36px;
            background: rgba(255, 255, 255, 0.2);
        }

        /* ============================================
           VALUES — NUEVOS ELEMENTOS
           ============================================ */
        .values-header,
        .features-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .values-eyebrow,
        .features-eyebrow {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #a66dd4;
            margin-bottom: 14px;
            position: relative;
        }

        .values-eyebrow::before,
        .values-eyebrow::after,
        .features-eyebrow::before,
        .features-eyebrow::after {
            content: "—";
            margin: 0 10px;
            opacity: 0.4;
        }

        .values-subtitle,
        .features-subtitle {
            font-size: 1.05rem;
            color: #6b6b8a;
            max-width: 520px;
            margin: 14px auto 0;
            line-height: 1.7;
        }

        /* ============================================
   RESPONSIVE COMPLETO — EUPHORIA NOSOTROS
   Breakpoints: 1200 | 992 | 768 | 576 | 480 | 360
   ============================================ */

/* ============================================
   BASE — CORRECCIONES GLOBALES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

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

/* ============================================
   HERO
   ============================================ */
@media (max-width: 992px) {
  .hero-section {
    height: 60vh;
    min-height: 360px;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }

  .content-grid {
     grid-template-columns: 1fr;
    gap: 16px;
  }
  .image-card {
      padding: 16px;
  }

}

@media (max-width: 768px) {
  .nosotros-container {
    padding-top: 60px;
  }
  .hero-section {
    height: auto;
    min-height: 320px;
    padding: 80px 20px 60px;
    margin-top: 20px;
  }
  .hero-content {
    padding: 20px 16px;
  }
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
      padding: 0 35px;
  }
  .hero-stats {
    gap: 16px;
    margin-top: 28px;
  }
  .hero-stat strong {
    font-size: 1.6rem;
  }
  .hero-stat span {
    font-size: 0.72rem;
  }
  .hero-stat-divider {
    height: 28px;
  }
    .content-grid {
    align-items: center;
    .content-grid {
       flex-direction: column;/* una sola columna */
        gap: 20px; /* menos espacio */
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 0.92rem;
  }
  .hero-stat-divider {
    display: none;
  }
  .hero-stats {
    gap: 20px 28px;
  }
  .hero-eyebrow {
    font-size: 0.68rem;
    padding: 6px 12px;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-subtitle {
    font-size: 0.85rem;
  }
  .hero-stat strong {
    font-size: 1.4rem;
  }
}

/* ============================================
   CONTENT SECTION
   ============================================ */
/* ============================================
   TABLETS GRANDES (iPad Pro / pantallas grandes)
   1200px – 1400px
   ============================================ */
@media (max-width: 1400px) and (min-width: 1200px) {

  /* HERO */
  .hero-section {
    height: 65vh;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
  }

  /* CONTENT */
  .content-section {
    padding: 80px 6%;
  }

  .content-grid {
    gap: 60px;
    align-items: center;
  }

  .image-card img {
    height: 420px;
  }

  .text-card h2 {
    font-size: 2.4rem;
  }

  .text-card p {
    font-size: 1.05rem;
  }

  /* VALUES */
  .values-section {
    padding: 70px 6%;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  /* FEATURES */
  .features-section {
    padding: 70px 6%;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* LOCATION + COMMENTS */
  .location-comments-wrapper {
    padding: 70px 6%;
  }

  .location-comments-grid {
    gap: 40px;
  }
}

/* ============================================
   TABLET GRANDE (1200px – 993px)
   Ajuste antes del breakpoint de 992px
   ============================================ */
@media (max-width: 1200px) and (min-width: 993px) {

  .content-section {
    padding: 70px 5%;
  }

  .text-card {
    padding: 40px 34px;
      background: #0a53be;
  }

  .text-card h2 {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
  }

  .image-card img {
    height: 420px;
  }
}


@media (max-width: 768px) {
  .content-section {
    padding: 50px 5%;
  }

  /* Columna única */
  .content-grid {
      padding: 10px;
    grid-template-columns: 1fr;
    gap: 4px;
    margin-bottom: 60px;
  }
  .hero-section {
  margin-top: 0;
  }

  /* Imagen siempre arriba en móvil — incluso en .reverse */
  .content-grid.reverse {
    direction: ltr;
  }
  .content-grid.reverse .image-card {
    order: -1;
  }

  .image-card img {
    height: 260px;
  }

  .text-card {
    padding: 28px 22px;
  }
  .text-card h2 {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
  }
  .text-card .section-number {
    font-size: 0.68rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }
  .text-card p {
    font-size: 0.97rem;
    line-height: 1.75;
  }
  .text-card .divider {
    margin-bottom: 18px;
  }
  .text-card .text-cta {
    margin-top: 20px;
    font-size: 0.88rem;
  }

  .image-overlay h3 {
    font-size: 1.15rem;
  }
  .image-overlay p {
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .content-section {
    padding: 40px 4%;
  }
  .content-grid {
    gap: 18px;
    margin-bottom: 40px;
  }
  .image-card {
    border-radius: 16px;
  }
  .image-card img {
    height: 220px;
  }
  .text-card {
    padding: 22px 16px;
    border-radius: 16px;
  }
  .text-card h2 {
    font-size: 1.5rem;
  }
  .text-card p {
    font-size: 0.92rem;
    margin-bottom: 14px;
  }
  .image-badge {
    font-size: 0.65rem;
    padding: 5px 10px;
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 360px) {
  .image-card img {
    height: 190px;
  }
  .text-card h2 {
    font-size: 1.35rem;
  }
  .text-card p {
    font-size: 0.88rem;
  }
}

/* ============================================
   VALUES SECTION
   ============================================ */
@media (max-width: 992px) {
  .values-section {
    padding: 60px 4%;
  }
  .values-title {
    font-size: 2.2rem;
  }
  .values-header {
    margin-bottom: 48px;
  }
}

@media (max-width: 768px) {
  .values-section {
    padding: 0 30px;
  }
  .values-header {
    margin-bottom: 36px;
  }
  .values-title {
    font-size: 1.9rem;
    margin-bottom: 10px;
  }
  .values-subtitle {
    font-size: 0.97rem;
      padding: 20px 30px 0 30px;
  }

  /* 2 columnas en tablet pequeña */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
      padding: 10px;

  }
  .value-card {
        display: flex;
    flex-direction: column;
    justify-content: space-between; /* clave */
    align-items: center;
    padding: 28px 10px;
    text-align: center;
    height: 100%;

  }

  .value-icon {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;


  }
  .value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }
  .value-card p {
    font-size: 0.9rem;
    line-height: 1.6;
      text-align: center;
  }
}

@media (max-width: 540px) {
  /* 1 columna en móvil pequeño */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .value-card {
    padding: 24px 18px;
    text-align: left;
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .value-icon {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin: 0;
  }
  .value-card-body {
    flex: 1;
  }
}

@media (max-width: 360px) {
  .values-title {
    font-size: 1.6rem;
  }
  .value-card h3 {
    font-size: 1rem;
  }
  .value-card p {
    font-size: 0.85rem;
  }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
@media (max-width: 992px) {
  .features-section {
    padding: 60px 4%;
  }
  .features-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
  }
  .features-header {
    margin-bottom: 48px;
      background: #0a53be;
      padding: 0 30px 0 30px;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 50px 5%;
  }
  .features-header {

        background: transparent !important;
        padding: 0 35px 0 35px;
  }
  .features-title {
    font-size: 1.9rem;
    margin-bottom: 40px;
  }
  .features-subtitle {
    font-size: 0.97rem;
      padding: 0 30px 0 30px;
  }

  /* 2 columnas */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .feature-card {
    padding: 28px 18px;
    border-radius: 16px;
      justify-content: space-between;
  }
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 14px;
  }
  .feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }
  .feature-card p {
    font-size: 0.88rem;
    line-height: 1.55;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 40px 4%;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
      align-items: center;
      padding: 10px;
  }
  .feature-card {
        display: flex;
    flex-direction: column;
    justify-content: space-between; /* clave */
    align-items: center;
    padding: 24px 18px;
    text-align: center;
    height: 100%;
  }
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-bottom: 15px;
  }
  /* Evitar la animación rotatoria en móvil (muy costosa) */
  .feature-card:hover .feature-icon {
    transform: none;
  }
  .feature-card h3 {
    font-size: 1rem;
  }
  .feature-card p {
    font-size: 0.86rem;
  }
}

@media (max-width: 360px) {
  .features-title {
    font-size: 1.6rem;
  }
  .feature-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}

/* ============================================
   LOCATION + COMMENTS WRAPPER
   ============================================ */
@media (max-width: 992px) {
  .location-comments-wrapper {
    padding: 60px 4%;
  }
  .section-header h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  .location-comments-wrapper {
    padding: 50px 5%;
  }

  .section-header {
    margin-bottom: 28px;
      padding: 20px 30px 20px 30px;
  }
  .section-header h2 {
    font-size: 1.65rem;
    line-height: 1.3;
  }
  .section-header p {
    font-size: 0.97rem;
  }

  /* Info cards en columna */
  .info-cards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 36px;
      padding: 0 10px 0 10px;
  }
.info-item.atencion {
    order:-1; /* Siempre primero */
}
  .info-item {
    flex: 1 1 40px;
    min-width: 130px;
    max-width: 200px;
    padding: 16px 14px;
  }
  .info-item h4 {
    font-size: 0.9rem;
  }
  .info-item p {
    font-size: 0.88rem;
  }

  /* Grid columna única */
  .location-comments-grid {
    grid-template-columns: 1fr;
    gap: 20px;
      padding: 0;
  }
  .location-box,
  .comments-box {
    padding:  0 26px 0 26px;
    border-radius: 12px;
      background: transparent;
        box-shadow: none;
  }
  .comments-box {
    padding: 0 16px 0 16px;
  }

  .btn-contact {
    padding: 12px 24px;
    font-size: 0.95rem;
    margin-top: 28px;
  }
}

@media (max-width: 480px) {
  .location-comments-wrapper {
    padding: 40px 4%;
  }
  .section-header h2 {
    font-size: 1.4rem;
  }
  .info-cards {
    gap: 10px;
  }
  .info-item {
    max-width: 100%;
    padding: 24px 16px;
    align-items: center;
      text-align: center;
    gap: 12px;

  }
  .info-item h4 {
    margin-bottom: 2px;
    min-width: 80px;
  }
  .info-item p {
    margin: 0;
  }
  .btn-contact {
    width: 100%;
    text-align: center;
    padding: 14px;
  }
}

@media (max-width: 360px) {
  .section-header h2 {
    font-size: 1.25rem;
  }
  .section-header p {
    font-size: 0.88rem;
  }
}

/* ============================================
   DECORATIVE — ocultar en móvil
   ============================================ */
@media (max-width: 576px) {
  .decorative-shape {
    display: none;
  }
  .features-section::before {
    display: none;
  }
}

/* ============================================
   PARTICLES — reducir en móvil
   ============================================ */
@media (max-width: 768px) {
  .particle:nth-child(n+4) {
    display: none;
  }
  .particle {
    width: 6px;
    height: 6px;
  }
}

/* ============================================
   HOVER — desactivar en touch
   ============================================ */
@media (hover: none) {
  .image-card:hover {
    transform: none;
  }
  .image-card:hover img {
    transform: none;
  }
  .feature-card:hover {
    transform: none;
  }
  .feature-card:hover .feature-icon {
    transform: none;
  }
  .text-card:hover {
    transform: none;
  }
  .value-card:hover {
    transform: none;
  }
  /* Mostrar overlay siempre en touch */
  .image-overlay {
    opacity: 1;
    transform: translateY(0);
  }
  .image-border-line {
    transform: scaleX(1);
  }
}
}