/* ===== ESTILOS GENERALES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e6f3fa 100%);
    min-height: 100vh;
}


/* ===== SECCIONES GENERALES ===== */
section {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: #00b4d8;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00b4d8, #48cae4);
}

.section-title p {
    font-size: 20px;
    color: #64748b;
    max-width: 800px;
    margin: 20px auto 0;
}

/* ===== NUESTRAS CLÍNICAS ===== */
.clinicas-content {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.clinicas-text {
    margin-bottom: 40px;
}

.clinicas-text p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
}

#beneficios-resumen {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

#beneficios-resumen h3 {
    color: #00b4d8;
    margin-bottom: 25px;
    font-size: 26px;
}

.beneficios-list {
    list-style: none;
}

.beneficios-list li {
    margin-bottom: 15px;
    font-size: 18px;
    padding-left: 35px;
    position: relative;
    color: #475569;
}

.beneficios-list li:before {
    content: "✓";
    color: white;
    font-weight: bold;
    position: absolute;
    left: 0;
    background-color: #00b4d8;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* ===== GALERÍA DE CLÍNICAS ===== */
.galeria-clinicas {
    margin: 80px 0;
}

.galeria-clinicas h3 {
    color: #00b4d8;
    text-align: center;
    margin: 40px 0 30px;
    font-size: 32px;
    font-weight: 600;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.galeria-item {
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.2);
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.galeria-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 180, 216, 0.3);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.galeria-item:hover img {
    transform: scale(1.05);
}

/* ===== MISIÓN, VISIÓN ===== */
.mvv-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.mvv-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(0, 180, 216, 0.25);
    border-color: #00b4d8;
    background: rgba(255, 255, 255, 0.95);
}

.mvv-card h3 {
    color: #00b4d8;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.mvv-card p {
    color: #475569;
    line-height: 1.8;
    text-align: center;
    font-size: 16px;
}

/* ===== CARRUSEL ===== */
.carrusel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.carrusel-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.carrusel-item {
    flex: 0 0 100%;
    aspect-ratio: 16/9;
}

.carrusel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.carrusel-item:hover img {
    transform: scale(1.05);
}

.carrusel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #00b4d8;
    box-shadow: 0 5px 20px rgba(0, 180, 216, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.carrusel-control:hover {
    background: #00b4d8;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carrusel-control.prev {
    left: 20px;
}

.carrusel-control.next {
    right: 20px;
}

.carrusel-indicadores {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicador {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicador.active {
    background: #00b4d8;
    transform: scale(1.2);
    border-color: white;
}

/* ===== VALORES DETALLADOS ===== */
.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.valor-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    text-align: center;
}

.valor-item:hover {
    transform: translateY(-5px);
    border-color: #00b4d8;
    box-shadow: 0 30px 50px rgba(0, 180, 216, 0.25);
    background: rgba(255, 255, 255, 1);
}

.valor-item h4 {
    color: #00b4d8;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.valor-item h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
   
}

.valor-item p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 15px;
}

/* ===== ICONOS EN TARJETAS ===== */
.card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px 0 14px;
}

.card-icon i {
    font-size: 28px;
    color: #00b4d8;
    transition: transform 0.3s ease, color 0.3s ease;
}

.card-icon-sm {
    margin: 6px 0 12px;
}

.card-icon-sm i {
    font-size: 24px;
}

.valor-item:hover .card-icon i,
.mvv-card:hover .card-icon i,
.contacto-card:hover .card-icon i,
.beneficios-incluye:hover .card-icon i,
.beneficios-descuentos:hover .card-icon i {
    transform: translateY(-2px) scale(1.08);
    color: #0096c7;
}

/* ===== MISIÓN, VISIÓN CON IMAGEN ===== */
.mvv-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    align-items: center;
}

.mvv-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 100%;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(0, 180, 216, 0.25);
    border-color: #00b4d8;
    background: rgba(255, 255, 255, 0.95);
}

.mvv-card h3 {
    color: #00b4d8;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    position: relative;
}

.mvv-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #00b4d8, #48cae4);
}

.mvv-card p {
    color: #475569;
    line-height: 1.8;
    text-align: center;
    font-size: 16px;
    margin-top: 15px;
}

/* Contenedor de la imagen */
.mvv-imagen {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: transparent;
    transition: all 0.3s ease;
}

.mvv-imagen:hover {
    transform: translateY(-5px);
}

.doctora-imagen {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.mvv-imagen:hover .doctora-imagen {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 1024px) {
    .mvv-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .mvv-imagen {
        max-width: 300px;
        margin: 0 auto;
        order: 2;
        padding: 10px;
    }
    
    .mvv-card:first-child {
        order: 1;
    }
    
    .mvv-card:last-child {
        order: 3;
    }
}

@media (max-width: 768px) {
    .mvv-card {
        padding: 30px 20px;
    }
    
    .mvv-card h3 {
        font-size: 24px;
    }
    
    .mvv-card p {
        font-size: 15px;
    }
    
    .doctora-imagen {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .mvv-card {
        padding: 25px 15px;
    }
    
    .mvv-card h3 {
        font-size: 22px;
    }
    
    .mvv-card p {
        font-size: 14px;
    }
    
    .doctora-imagen {
        max-width: 180px;
    }
}


