        :root {
            --primary-color: #0d9488;
            --primary-dark: #0f766e;
            --primary-light: #14b8a6;
            --secondary-color: #37a0da;
            --accent-color: #2EFE9A;
            --dark-color: #1e293b;
            --light-color: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-600: #475569;
            --gray-800: #1e293b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Open Sans', Arial, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--gray-800);
            background-color: #fff;
        }

        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--primary-dark);
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            color: var(--gray-600);
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: #fff;
            padding: 0.25rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        /* Header */
        .top-bar {
            background: var(--dark-color);
            color: #fff;
            padding: 0.5rem 0;
            font-size: 0.875rem;
        }

        .top-bar a {
            color: #fff;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-left: 0.5rem;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
        }

        .navbar {
            background: #fff;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }

        .navbar-brand img {
            height: 60px;
        }

        .nav-link {
            font-weight: 500;
            color: var(--gray-800) !important;
            padding: 0.5rem 1rem !important;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .btn-cita {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: #fff !important;
            padding: 0.75rem 1.5rem !important;
            border-radius: 50px;
            font-weight: 600;
        }

        .btn-cita:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/slide1.jpg') center/cover;
            opacity: 0.2;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            color: #fff;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .btn-hero {
            background: #fff;
            color: var(--primary-color);
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            color: var(--primary-dark);
        }

        /* Especialidades Carousel */
        .especialidades-section {
            padding: 5rem 0;
            background: var(--gray-100);
        }

        .carousel-especialidades {
            position: relative;
            padding: 0 50px;
        }

        .carousel-track {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 1rem 0;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .carousel-track::-webkit-scrollbar {
            display: none;
        }

        .especialidad-card {
            flex: 0 0 280px;
            background: #fff;
            border-radius: 16px;
            padding: 2rem 1.5rem;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .especialidad-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            border-color: var(--primary-color);
        }

        .especialidad-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: #fff;
            font-size: 1.75rem;
        }

        .especialidad-card h4 {
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
            color: var(--dark-color);
        }

        .especialidad-card p {
            font-size: 0.875rem;
            color: var(--gray-600);
            margin-bottom: 1rem;
        }

        .btn-ver-detalle {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.875rem;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background: #fff;
            border: none;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.25rem;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-btn:hover {
            background: var(--primary-color);
            color: #fff;
        }

        .carousel-btn.prev {
            left: 0;
        }

        .carousel-btn.next {
            right: 0;
        }

        /* Nosotros Section */
        .nosotros-section {
            padding: 5rem 0;
        }

        .nosotros-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .nosotros-content p {
            color: var(--gray-600);
            margin-bottom: 1.5rem;
        }

        .feature-box {
            background: #fff;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--primary-color);
        }

        .feature-box h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .feature-box ul {
            list-style: none;
            padding: 0;
        }

        .feature-box ul li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--gray-600);
        }

        .feature-box ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

        /* Servicios Section */
        .servicios-section {
            padding: 5rem 0;
            background: var(--gray-100);
        }

        .servicio-card {
            background: #fff;
            border-radius: 16px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .servicio-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }

        .servicio-card h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .servicio-card ul {
            list-style: none;
            padding: 0;
        }

        .servicio-card ul li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--gray-600);
            font-size: 0.9rem;
        }

        .servicio-card ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-size: 1.25rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            padding: 4rem 0;
            text-align: center;
            color: #fff;
        }

        .cta-section h2 {
            color: #fff;
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .btn-cta {
            background: #fff;
            color: var(--primary-color);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .btn-cta-outline {
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }

        .btn-cta-outline:hover {
            background: #fff;
            color: var(--primary-color);
        }

        /* Agenda Section */
        .agenda-section {
            padding: 5rem 0;
        }

        .form-card {
            background: #fff;
            border-radius: 16px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .form-control {
            border-radius: 10px;
            padding: 0.75rem 1rem;
            border: 2px solid var(--gray-200);
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
        }

        .btn-submit {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: #fff;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            width: 100%;
            transition: all 0.3s ease;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
        }

        /* Contacto Section */
        .contacto-section {
            padding: 5rem 0;
            background: var(--gray-100);
        }

        .contact-info-card {
            background: #fff;
            border-radius: 16px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            flex-shrink: 0;
        }

        .google-map iframe {
            width: 100%;
            height: 300px;
            border-radius: 16px;
            border: none;
        }

        /* Instalaciones Carousel */
        .instalaciones-carousel {
            border-radius: 16px;
            overflow: hidden;
        }

        .instalaciones-carousel img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        /* Promociones Section */
        .promociones-section {
            padding: 5rem 0;
        }

        .promo-carousel img {
            border-radius: 16px;
            max-width: 100%;
        }

        /* Footer */
        footer {
            background: var(--dark-color);
            color: #fff;
            padding: 2rem 0;
            text-align: center;
        }

        footer a {
            color: var(--primary-light);
        }

        /* Modal Styles */
        .modal-especialidad .modal-content {
            border-radius: 20px;
            border: none;
        }

        .modal-especialidad .modal-header {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: #fff;
            border-radius: 20px 20px 0 0;
            padding: 1.5rem 2rem;
        }

        .modal-especialidad .modal-title {
            font-weight: 600;
        }

        .modal-especialidad .btn-close {
            filter: brightness(0) invert(1);
        }

        .modal-especialidad .modal-body {
            padding: 2rem;
        }

        .modal-especialidad .modal-body ul {
            list-style: none;
            padding: 0;
        }

        .modal-especialidad .modal-body ul li {
            padding: 0.75rem 0;
            padding-left: 1.5rem;
            position: relative;
            border-bottom: 1px solid var(--gray-200);
        }

        .modal-especialidad .modal-body ul li:last-child {
            border-bottom: none;
        }

        .modal-especialidad .modal-body ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

        .modal-images {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .modal-images img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .modal-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color);
            color: #fff;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .modal-nav-btn:hover {
            background: var(--primary-dark);
        }

        .modal-nav-btn.prev {
            left: -20px;
        }

        .modal-nav-btn.next {
            right: -20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .carousel-especialidades {
                padding: 0 30px;
            }

            .especialidad-card {
                flex: 0 0 250px;
            }

            .btn-cta, .btn-cta-outline {
                display: block;
                margin: 0.5rem auto;
            }
        }