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

        :root {
            --primary-color: #0a0a0a;
            --secondary-color: #2a2a2a;
            --accent-color: #ffffff;
            --text-dark: #0a0a0a;
            --text-light: #666666;
            --bg-light: #fafafa;
            --white: #ffffff;
            --border: #e5e5e5;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.8;
            color: var(--text-dark);
            overflow-x: hidden;
            background: var(--white);
            font-weight: 300;
            letter-spacing: -0.01em;
        }

        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loading-content {
            text-align: center;
            position: relative;
        }

        .koi-container {
            position: relative;
            width: 320px;
            height: 220px;
            margin: 0 auto 3rem;
        }

        .koi {
            position: absolute;
            filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
        }

        .koi-blue {
            top: 35px;
            left: 35px;
            animation: swimBlue 5s ease-in-out infinite;
        }

        .koi-orange {
            bottom: 35px;
            right: 35px;
            animation: swimOrange 5s ease-in-out infinite;
            animation-delay: -2.5s;
        }

        /* Pez Azul Mejorado */
        .koi-blue .koi-body {
            position: relative;
            width: 100px;
            height: 55px;
        }

        /* Cuerpo principal - forma más suave y orgánica */
        .koi-blue .koi-body::before {
            content: '';
            position: absolute;
            width: 65px;
            height: 48px;
            background: linear-gradient(145deg, #3b82f6 0%, #2563eb 50%, #1e40af 100%);
            border-radius: 48% 52% 48% 52% / 58% 45% 55% 42%;
            left: 0;
            top: 3px;
            box-shadow: 
                inset -8px -8px 15px rgba(30, 64, 175, 0.4),
                inset 5px 5px 10px rgba(59, 130, 246, 0.3);
        }

        /* Cabeza redondeada y atractiva */
        .koi-blue .koi-body::after {
            content: '';
            position: absolute;
            width: 28px;
            height: 32px;
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            border-radius: 60% 40% 45% 55% / 50% 50% 50% 50%;
            left: -18px;
            top: 11px;
            box-shadow: inset -3px -3px 8px rgba(30, 64, 175, 0.5);
        }

        /* Ojo brillante del pez azul */
        .koi-blue .koi-spots span:nth-child(1) {
            position: absolute;
            width: 13px;
            height: 13px;
            background: radial-gradient(circle at 35% 35%, #ffffff, #e0e7ff 70%);
            border-radius: 50%;
            left: 2px;
            top: 16px;
            z-index: 10;
            border: 2px solid rgba(30, 64, 175, 0.3);
        }

        .koi-blue .koi-spots span:nth-child(1)::after {
            content: '';
            position: absolute;
            width: 5px;
            height: 5px;
            background: #0a0a0a;
            border-radius: 50%;
            top: 3px;
            left: 4px;
            box-shadow: -1px -1px 2px rgba(255, 255, 255, 0.5);
        }

        .koi-blue .koi-spots span:nth-child(1)::before {
            content: '';
            position: absolute;
            width: 3px;
            height: 3px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            top: 2px;
            left: 2px;
        }

        /* Manchas decorativas elegantes */
        .koi-blue .koi-spots span:nth-child(2) {
            position: absolute;
            width: 18px;
            height: 18px;
            background: radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.75));
            border-radius: 65% 35% 60% 40% / 50% 55% 45% 50%;
            left: 28px;
            top: 10px;
            box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
        }

        .koi-blue .koi-spots span:nth-child(3) {
            position: absolute;
            width: 15px;
            height: 15px;
            background: radial-gradient(ellipse at 35% 35%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.65));
            border-radius: 50% 60% 40% 50% / 55% 45% 55% 45%;
            left: 18px;
            bottom: 10px;
            box-shadow: 0 2px 5px rgba(37, 99, 235, 0.25);
        }

        /* Cola elegante y dinámica */
        .koi-blue .koi-tail {
            position: absolute;
            right: -35px;
            top: 10px;
        }

        .koi-blue .koi-tail::before {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border-left: 40px solid #1e40af;
            border-top: 20px solid transparent;
            border-bottom: 8px solid transparent;
            border-radius: 0 12px 4px 0;
            opacity: 0.85;
        }

        .koi-blue .koi-tail::after {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border-left: 40px solid #2563eb;
            border-top: 8px solid transparent;
            border-bottom: 20px solid transparent;
            top: 13px;
            border-radius: 0 4px 12px 0;
            animation: tailSwim 1.2s ease-in-out infinite;
        }

        /* Pez Naranja Mejorado */
        .koi-orange .koi-body {
            position: relative;
            width: 105px;
            height: 58px;
        }

        /* Cuerpo principal naranja */
        .koi-orange .koi-body::before {
            content: '';
            position: absolute;
            width: 68px;
            height: 50px;
            background: linear-gradient(215deg, #fb923c 0%, #f97316 50%, #ea580c 100%);
            border-radius: 52% 48% 52% 48% / 45% 58% 42% 55%;
            right: 0;
            top: 4px;
            box-shadow: 
                inset 8px -8px 15px rgba(234, 88, 12, 0.4),
                inset -5px 5px 10px rgba(251, 146, 60, 0.3);
        }

        /* Cabeza naranja */
        .koi-orange .koi-body::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 34px;
            background: linear-gradient(225deg, #fb923c 0%, #f97316 100%);
            border-radius: 40% 60% 55% 45% / 50% 50% 50% 50%;
            right: -19px;
            top: 12px;
            box-shadow: inset 3px -3px 8px rgba(234, 88, 12, 0.5);
        }

        /* Ojo brillante del pez naranja */
        .koi-orange .koi-spots span:nth-child(1) {
            position: absolute;
            width: 14px;
            height: 14px;
            background: radial-gradient(circle at 35% 35%, #ffffff, #fed7aa 70%);
            border-radius: 50%;
            right: 3px;
            top: 18px;
            z-index: 10;
            border: 2px solid rgba(234, 88, 12, 0.3);
        }

        .koi-orange .koi-spots span:nth-child(1)::after {
            content: '';
            position: absolute;
            width: 6px;
            height: 6px;
            background: #0a0a0a;
            border-radius: 50%;
            top: 3px;
            left: 4px;
            box-shadow: -1px -1px 2px rgba(255, 255, 255, 0.5);
        }

        .koi-orange .koi-spots span:nth-child(1)::before {
            content: '';
            position: absolute;
            width: 3px;
            height: 3px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            top: 2px;
            left: 2px;
        }

        /* Mancha decorativa naranja */
        .koi-orange .koi-spots span:nth-child(2) {
            position: absolute;
            width: 20px;
            height: 20px;
            background: radial-gradient(ellipse at 35% 30%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
            border-radius: 55% 45% 60% 40% / 48% 52% 48% 52%;
            right: 30px;
            top: 12px;
            box-shadow: 0 2px 6px rgba(249, 115, 22, 0.3);
        }

        /* Cola naranja elegante */
        .koi-orange .koi-tail {
            position: absolute;
            left: -35px;
            top: 12px;
        }

        .koi-orange .koi-tail::before {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border-right: 42px solid #ea580c;
            border-top: 21px solid transparent;
            border-bottom: 8px solid transparent;
            border-radius: 12px 0 4px 0;
            opacity: 0.85;
        }

        .koi-orange .koi-tail::after {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border-right: 42px solid #f97316;
            border-top: 8px solid transparent;
            border-bottom: 21px solid transparent;
            top: 14px;
            border-radius: 4px 0 12px 0;
            animation: tailSwim 1.2s ease-in-out infinite;
            animation-delay: 0.6s;
        }

        /* Aleta elegante */
        .koi-orange .koi-fin {
            position: absolute;
            top: 38%;
            right: 24px;
            width: 18px;
            height: 24px;
            background: linear-gradient(90deg, rgba(251, 146, 60, 0.7), rgba(251, 146, 60, 0.3));
            border-radius: 0 70% 70% 0;
            animation: finWave 1s ease-in-out infinite;
            transform-origin: left center;
            clip-path: polygon(0 25%, 100% 0, 100% 100%, 0 75%);
            box-shadow: 2px 0 4px rgba(234, 88, 12, 0.2);
        }

        @keyframes swimBlue {
            0%, 100% {
                transform: translate(0, 0) rotate(-3deg);
            }
            25% {
                transform: translate(20px, -15px) rotate(-6deg);
            }
            50% {
                transform: translate(35px, -5px) rotate(-2deg);
            }
            75% {
                transform: translate(20px, 12px) rotate(1deg);
            }
        }

        @keyframes swimOrange {
            0%, 100% {
                transform: translate(0, 0) rotate(3deg) scaleX(-1);
            }
            25% {
                transform: translate(-20px, 12px) rotate(6deg) scaleX(-1);
            }
            50% {
                transform: translate(-35px, 5px) rotate(2deg) scaleX(-1);
            }
            75% {
                transform: translate(-20px, -15px) rotate(-1deg) scaleX(-1);
            }
        }

        @keyframes tailSwim {
            0%, 100% {
                transform: translateY(0) scaleY(1);
            }
            50% {
                transform: translateY(-2px) scaleY(1.1);
            }
        }

        @keyframes finWave {
            0%, 100% {
                transform: rotate(0deg) scaleY(1);
            }
            50% {
                transform: rotate(-12deg) scaleY(0.95);
            }
        }

        .loading-logo {
            margin-bottom: 1.5rem;
            animation: fadeInOut 2s ease-in-out infinite;
            background: rgba(255, 255, 255, 0.7);
            padding: 1rem 2rem;
            border-radius: 4px;
            backdrop-filter: blur(10px);
            display: inline-block;
        }

        .loading-logo img {
            height: 50px;
            width: auto;
        }

        .loading-text {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 400;
        }

        .loading-bar {
            width: 250px;
            height: 2px;
            background: #e5e5e5;
            margin: 0 auto;
            border-radius: 2px;
            overflow: hidden;
        }

        .loading-progress {
            height: 100%;
            background: linear-gradient(90deg, #2563eb, #f97316);
            width: 0;
            animation: loadProgress 2s ease-in-out infinite;
        }

        @keyframes loadProgress {
            0% {
                width: 0%;
            }
            50% {
                width: 70%;
            }
            100% {
                width: 100%;
            }
        }

        @keyframes fadeInOut {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }

        /* Header & Navigation */
        header {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .header-scrolled {
            background: rgba(255, 255, 255, 0.95);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 8%;
            max-width: 1600px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            letter-spacing: -0.03em;
        }

        .logo-image {
            height: 45px;
            width: auto;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        .logo:hover .logo-image {
            opacity: 0.8;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: var(--primary-color);
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .logo:hover .logo-icon {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 3rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-light);
            font-weight: 400;
            font-size: 0.9rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            letter-spacing: 0.02em;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--primary-color);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary-color);
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle::after {
            content: '▾';
            margin-left: 0.3rem;
            font-size: 0.8rem;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 1rem;
            background: white;
            border: 1px solid var(--border);
            min-width: 720px;
            padding: 2rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            margin-top: 0.5rem;
        }

        .dropdown-section {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .dropdown-section h4 {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .dropdown-section a {
            padding: 0.5rem 0;
            color: var(--text-light);
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.2s;
            border-left: 2px solid transparent;
            padding-left: 0.5rem;
        }

        .dropdown-section a:hover {
            color: var(--primary-color);
            border-left-color: var(--primary-color);
            padding-left: 0.8rem;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary-color);
            transition: all 0.3s;
        }

        /* Hero Section */
        .hero {
            margin-top: 70px;
            background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('img/banner.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: var(--primary-color);
            padding: 200px 8% 180px;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: transparent;
            pointer-events: none;
        }

        .hero-content {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-logo {
            height: 120px;
            width: auto;
            object-fit: contain;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease;
            opacity: 0.9;
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease;
            font-weight: 600;
            line-height: 1.1;
            letter-spacing: -0.04em;
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 3rem;
            color: var(--text-light);
            animation: fadeInUp 1s ease 0.2s backwards;
            font-weight: 300;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-subtitle {
            font-size: 0.85rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
            color: var(--text-light);
            animation: fadeInUp 1s ease 0.1s backwards;
            text-transform: uppercase;
            letter-spacing: 0.2em;
        }

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

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 0;
            font-size: 0.9rem;
            font-weight: 400;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-block;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .btn-primary {
            background: var(--primary-color);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--secondary-color);
            transform: translateY(-1px);
        }

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

        .btn-secondary:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        /* Section Styles */
        section {
            padding: 120px 8%;
            max-width: 1600px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
            font-weight: 600;
            letter-spacing: -0.03em;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 1px;
            background: var(--primary-color);
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            font-size: 1rem;
            margin-bottom: 5rem;
            font-weight: 300;
        }

        /* Tradición Section */
        .tradicion {
            background: var(--white);
            border-top: 1px solid var(--border);
        }

        .tradicion-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            margin-top: 3rem;
        }

        .tradicion-text h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 2rem;
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        .tradicion-text p {
            margin-bottom: 1.5rem;
            color: var(--text-light);
            text-align: left;
            line-height: 1.9;
            font-weight: 300;
        }

        .tradicion-image {
            position: relative;
            border-radius: 0;
            overflow: hidden;
            height: 600px;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 4rem;
            border: 1px solid var(--border);
        }

        /* Tratamientos Section */
        .tratamientos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1px;
            margin-top: 3rem;
            background: var(--border);
            border: 1px solid var(--border);
        }

        .tratamiento-card {
            background: var(--white);
            padding: 3rem 2.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: left;
            border: none;
        }

        .tratamiento-card:hover {
            background: var(--bg-light);
        }

        .tratamiento-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 2rem;
            background: var(--primary-color);
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .tratamiento-card h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        .tratamiento-card p {
            color: var(--text-light);
            line-height: 1.8;
            font-weight: 300;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .card-link {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            display: inline-block;
            transition: all 0.3s;
        }

        .card-link:hover {
            transform: translateX(5px);
        }

        /* Especialistas Section */
        .especialistas {
            background: var(--bg-light);
            border-top: 1px solid var(--border);
        }

        .especialistas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
            padding: 0 1rem;
        }

        .especialista-card {
            background: var(--white);
            border-radius: 16px;
            overflow: visible;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 3rem 2rem 2.5rem;
            text-align: center;
            position: relative;
        }

        .especialista-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 32px rgba(0,0,0,0.12);
        }

        .especialista-image {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 1.5rem;
            border: 4px solid var(--white);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            position: relative;
            flex-shrink: 0;
            background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
        }

        .especialista-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
            transition: transform 0.4s ease;
        }

        .especialista-card:hover .especialista-image {
            box-shadow: 0 12px 32px rgba(0,0,0,0.2);
        }

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

        .especialista-info {
            padding: 0;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .especialista-info h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        .especialista-info .especialidad {
            color: #2563eb;
            font-weight: 500;
            margin-bottom: 1.5rem;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.4rem 1.2rem;
            background: rgba(37, 99, 235, 0.08);
            border-radius: 20px;
            display: inline-block;
        }

        .especialista-info p {
            color: var(--text-light);
            line-height: 1.7;
            font-weight: 300;
            font-size: 0.95rem;
        }

        /* Razón de Ser / Filosofía Section */
        .filosofia {
            background: var(--white);
            border-top: 1px solid var(--border);
        }

        .filosofia-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1px;
            margin-top: 3rem;
            background: var(--border);
            border: 1px solid var(--border);
        }

        .filosofia-item {
            text-align: center;
            padding: 3rem 2rem;
            background: var(--white);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .filosofia-item:hover {
            background: var(--bg-light);
        }

        .filosofia-item .icon {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            opacity: 0.3;
        }

        .filosofia-item h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        .filosofia-item p {
            color: var(--text-light);
            line-height: 1.8;
            font-weight: 300;
        }

        /* Distinción Section */
        .distincion {
            background: var(--primary-color);
            color: var(--white);
            text-align: center;
            border-top: 1px solid var(--border);
        }

        .distincion .section-title {
            color: var(--white);
        }

        .distincion .section-title::after {
            background: var(--white);
        }

        .distincion .section-subtitle {
            color: rgba(255, 255, 255, 0.6);
        }

        .distincion-content {
            max-width: 900px;
            margin: 3rem auto 0;
        }

        .distincion-content p {
            font-size: 1.1rem;
            line-height: 2;
            margin-bottom: 2rem;
            font-weight: 300;
            opacity: 0.9;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1px;
            margin-top: 5rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-item {
            background: var(--primary-color);
            padding: 3rem 2rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stat-item:hover {
            background: var(--secondary-color);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 300;
            color: var(--white);
            margin-bottom: 0.5rem;
            letter-spacing: -0.03em;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.7;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 300;
        }

        /* Contacto Section */
        .contacto {
            background: var(--white);
            border-top: 1px solid var(--border);
        }

        .contacto-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            margin-top: 3rem;
        }

        .contacto-info {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .info-box {
            background: var(--white);
            padding: 0;
            border: none;
        }

        .info-box h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        .info-box h3::before {
            content: '';
        }

        .info-box.horarios h3::before {
            content: '';
        }

        .info-box.telefono h3::before {
            content: '';
        }

        .info-box p {
            color: var(--text-light);
            margin: 0.8rem 0;
            line-height: 1.9;
            font-weight: 300;
        }

        .sucursales-list {
            list-style: none;
        }

        .sucursales-list li {
            padding: 1rem 0;
            color: var(--text-light);
            border-bottom: 1px solid var(--border);
            font-weight: 300;
        }

        .sucursales-list li:last-child {
            border-bottom: none;
        }

        .contact-form {
            background: var(--bg-light);
            padding: 3rem;
            border: 1px solid var(--border);
        }

        .contact-form h3 {
            color: var(--primary-color);
            margin-bottom: 2rem;
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            color: var(--text-dark);
            font-weight: 400;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--border);
            border-radius: 0;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: var(--white);
            font-weight: 300;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            background: var(--white);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        /* Footer */
        footer {
            background: var(--primary-color);
            color: rgba(255, 255, 255, 0.8);
            padding: 5rem 8%;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 4rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: var(--white);
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: -0.01em;
        }

        .footer-section p,
        .footer-section li {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 0.8rem;
            font-weight: 300;
            line-height: 1.8;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer-section a:hover {
            color: var(--white);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .social-links a:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.4);
            font-weight: 300;
            font-size: 0.9rem;
        }

        /* Empleo Section */
        .empleo {
            background: var(--bg-light);
            padding: 5rem 8%;
            text-align: center;
            border-top: 1px solid var(--border);
        }

        .empleo h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        .empleo p {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            font-weight: 300;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: var(--white);
                width: 100%;
                text-align: center;
                transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                border-bottom: 1px solid var(--border);
                padding: 3rem 0;
                gap: 2rem;
                max-height: calc(100vh - 70px);
                overflow-y: auto;
            }

            .dropdown-menu {
                position: static;
                transform: none;
                grid-template-columns: 1fr;
                min-width: auto;
                width: 90%;
                margin: 1rem auto 0;
                padding: 1rem;
                opacity: 1;
                visibility: visible;
                display: none;
            }

            .dropdown.active .dropdown-menu {
                display: grid;
            }

            .nav-links.active {
                left: 0;
            }

            .hero {
                padding: 120px 8% 100px;
                background-attachment: scroll;
            }

            .hero-logo {
                height: 80px;
            }

            .logo-image {
                height: 35px;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .tradicion-content,
            .contacto-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            section {
                padding: 80px 6%;
            }

            nav {
                padding: 1.5rem 6%;
            }

            .tratamientos-grid,
            .especialistas-grid,
            .filosofia-grid {
                grid-template-columns: 1fr;
            }

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

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Accessibility */
        .btn:focus,
        input:focus,
        textarea:focus {
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }

        ::selection {
            background: var(--primary-color);
            color: var(--white);
        }
        /* ===== PÁGINAS DE ESPECIALIDADES ===== */

        /* Hero Section de Especialidad */
        .especialidad-hero {
            margin-top: 70px;
            padding: 120px 8%;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            text-align: center;
        }

        .especialidad-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            font-weight: 600;
            letter-spacing: -0.03em;
        }

        .especialidad-hero p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            font-weight: 300;
        }

        /* Contenedor Principal */
        .especialidad-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 8%;
        }

        /* Introducción */
        .content-intro {
            padding: 80px 0;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .content-intro h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--primary-color);
            font-weight: 600;
        }

        .content-intro p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-light);
            font-weight: 300;
        }

        /* Grid de Servicios */
        .servicios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-bottom: 80px;
        }

        .servicio-item {
            background: var(--white);
            padding: 3rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .servicio-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .servicio-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .servicio-item h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
            font-weight: 600;
        }

        .servicio-item p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        .servicio-item ul {
            list-style: none;
            padding: 0;
        }

        .servicio-item li {
            padding: 0.6rem 0;
            color: var(--text-light);
            font-size: 0.95rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .servicio-item li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: 600;
        }

        /* Sección de Proceso */
        .proceso-section {
            padding: 80px 0;
            background: var(--bg-light);
            margin: 0 -8%;
            padding-left: 8%;
            padding-right: 8%;
        }

        .proceso-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 4rem;
            color: var(--primary-color);
            font-weight: 600;
        }

        .proceso-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .step {
            text-align: center;
            padding: 2rem;
        }

        .step-number {
            display: inline-block;
            width: 60px;
            height: 60px;
            line-height: 60px;
            border-radius: 50%;
            background: var(--primary-color);
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .step h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
            font-weight: 600;
        }

        .step p {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Sección de Beneficios */
        .beneficios-section {
            padding: 80px 0;
        }

        .beneficios-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 4rem;
            color: var(--primary-color);
            font-weight: 600;
        }

        .beneficios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .beneficio {
            text-align: center;
            padding: 2rem 1rem;
        }

        .beneficio-icon {
            font-size: 3rem;
            display: block;
            margin-bottom: 1rem;
        }

        .beneficio h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
            font-weight: 600;
        }

        .beneficio p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 80px 0;
            background: var(--bg-light);
            margin: 0 -8%;
            padding-left: 8%;
            padding-right: 8%;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            font-weight: 600;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            color: var(--text-light);
        }

        .cta-btn {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--primary-color);
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .cta-btn:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        /* Responsive para Especialidades */
        @media (max-width: 768px) {
            .especialidad-hero {
                padding: 80px 6%;
            }

            .especialidad-hero h1 {
                font-size: 2.5rem;
            }

            .especialidad-hero p {
                font-size: 1rem;
            }

            .especialidad-content {
                padding: 0 6%;
            }

            .content-intro {
                padding: 60px 0;
            }

            .content-intro h2 {
                font-size: 2rem;
            }

            .servicios-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .servicio-item {
                padding: 2rem;
            }

            .proceso-section,
            .cta-section {
                padding: 60px 6%;
                margin: 0 -6%;
                padding-left: 6%;
                padding-right: 6%;
            }

            .proceso-steps {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .beneficios-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }
