body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #0f0f0f;
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden; /* Prevenir scroll horizontal */
    width: 100%;
}

/* Contenedor principal para prevenir overflow */
* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

/* Prevenir overflow en todas las secciones principales */
section {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Contenedores responsivos */
.diferencial, .servicios, .tendencias, .turnos, .contacto, .equipo, .testimonios {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Prevenir que las imágenes causen overflow */
img {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    background: rgba(16, 16, 16, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    box-sizing: border-box;
    max-width: 100vw;
    overflow-x: hidden;
}
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo .g {
    font-size: 42px;
    font-weight: bold;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    color: #181818;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    box-shadow: 0 4px 15px rgba(245, 245, 245, 0.2);
}
.logo hr {
    width: 35px;
    border: 1.5px solid #f5f5f5;
    border-radius: 2px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}
nav a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
    position: relative;
}
nav a:hover {
    color: #b6aaff;
    background: rgba(182, 170, 255, 0.1);
}
.hero {
    text-align: center;
    padding: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 24px 40px 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    justify-content: center;
    gap: 20px;
}
.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #b6aaff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 6px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}
.hero-subtitle {
    font-size: 1.4rem !important;
    font-weight: 600;
    color: #b6aaff !important;
}
.direccion {
    color: #b6aaff;
    font-weight: 500;
}
.hero-historia {
    display: flex;
    gap: 32px;
    align-items: center;
    max-width: 1000px;
    margin: 20px 0 10px 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(182, 170, 255, 0.2);
}
.hero-historia-content {
    flex: 1;
    text-align: left;
}
.hero-historia-content h3 {
    color: #b6aaff;
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
}
.hero-historia-content p {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}
.hero-historia-image {
    flex: 0 0 220px;
}
.hero-historia-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.btn-turnos {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #b6aaff 0%, #9b8dff 100%);
    color: #181818;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(182,170,255,0.4);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    margin-top: 10px;
}
.btn-turnos:hover {
    background: linear-gradient(135deg, #d1c6ff 0%, #b6aaff 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(182,170,255,0.5);
}
.nosotros {
    padding: 80px 24px;
    background: #131313;
}
.nosotros h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 48px;
    color: #b6aaff;
    font-weight: 600;
}
.nosotros-content {
    display: flex;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.nosotros-text {
    flex: 1;
}
.nosotros-text h3 {
    color: #b6aaff;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}
.nosotros-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.1rem;
    opacity: 0.9;
}
.nosotros-image {
    flex: 1;
    max-width: 500px;
}
.nosotros-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.diferencial {
    padding: 50px 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    text-align: center;
}
.diferencial h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #b6aaff;
    font-weight: 600;
}
.diferencial-content {
    max-width: 900px;
    margin: 0 auto;
}
.diferencial-content p {
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 1.1rem;
    opacity: 0.9;
}
.servicios {
    padding: 50px 24px;
    background: #0f0f0f;
}
.servicios h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #b6aaff;
    font-weight: 600;
}
.servicios-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: #b6aaff;
    opacity: 0.9;
}
.servicios-lista {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.servicio {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
    text-align: center;
    border: 1px solid #2c2c2c;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 220px;
    max-width: 250px;
}
.servicio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #b6aaff 0%, #9b8dff 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.servicio img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    transition: transform 0.3s ease;
    border: 3px solid #2c2c2c;
    display: block;
}
.servicio h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #b6aaff;
}
.servicio p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 0;
}
.servicio:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(182,170,255,0.2);
}
.servicio:hover::before {
    opacity: 1;
}
.servicio:hover img {
    transform: scale(1.1);
    border-color: #b6aaff;
}
.tendencias {
    padding: 50px 24px;
    background: #131313;
}
.tendencias h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 32px;
    color: #b6aaff;
    font-weight: 600;
}
.tendencia-destacada {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.tendencia-image {
    flex: 1;
    max-width: 500px;
}
.tendencia-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 35px rgba(0,0,0,0.4);
}
.tendencia-content {
    flex: 1;
}
.tendencia-content h3 {
    color: #ff6b6b;
    margin-bottom: 16px;
    font-size: 1.6rem;
    font-weight: 600;
}
.tendencia-content p {
    margin-bottom: 14px;
    line-height: 1.6;
    font-size: 1rem;
    opacity: 0.9;
}
.turnos {
    padding: 50px 24px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}
.turnos h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 32px;
    color: #b6aaff;
    font-weight: 600;
}
.turnos-content {
    display: flex;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}
.turnos-info {
    flex: 1;
    text-align: center;
}
.turnos-info p {
    font-size: 1.2rem;
    margin-bottom: 24px;
    line-height: 1.5;
    opacity: 0.9;
}
.turnos-image {
    flex: 1;
    max-width: 350px;
}
.turnos-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 35px rgba(0,0,0,0.4);
}
.whatsapp {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3);
}
.whatsapp span {
    margin-right: 8px;
}
.whatsapp:hover {
    background: linear-gradient(135deg, #43e88e 0%, #25d366 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}
.whatsapp:hover {
    background: #43e88e;
}
.contacto {
    padding: 50px 24px;
    background: #131313;
}
.contacto h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 32px;
    color: #b6aaff;
    font-weight: 600;
}
.contacto-content {
    display: flex;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-start;
}
.contacto-info {
    flex: 1;
}
.contacto-item {
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 12px;
    border: 1px solid #2c2c2c;
}
.contacto-item h3 {
    color: #b6aaff;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}
.contacto-item p {
    font-size: 1rem;
    margin-bottom: 0;
    opacity: 0.9;
}
.contacto-image {
    flex: 1;
    max-width: 350px;
}
.contacto-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 35px rgba(0,0,0,0.4);
}
.redes {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.redes a {
    color: #b6aaff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(182, 170, 255, 0.1);
}
.redes a:hover {
    color: #ffffff;
    background: rgba(182, 170, 255, 0.2);
    transform: translateY(-1px);
}
.redes a:hover {
    color: #ffffff;
    background: rgba(182, 170, 255, 0.2);
    transform: translateY(-1px);
}
footer {
    background: #0a0a0a;
    text-align: center;
    padding: 32px 0;
    color: #b6aaff;
    font-size: 1rem;
    letter-spacing: 1px;
    border-top: 1px solid #1a1a1a;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: #128c7e;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    color: #ffffff;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}
@media (max-width: 700px) {
    /* Reset general para móvil */
    * {
        max-width: 100vw;
    }
    
    header {
        flex-direction: column;
        padding: 8px 12px;
        gap: 8px;
        min-height: auto;
    }
    
    header .logo img {
        width: 12vw;
        max-width: 50px;
        min-width: 40px;
    }
    
    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav a {
        font-size: 0.8rem;
        padding: 4px 8px;
        white-space: nowrap;
    }
    
    /* Hero section móvil */
    .hero {
        min-height: 90vh;
        padding: 0;
        margin: 0;
    }
    
    .hero-content {
        padding: 20px 12px;
        gap: 8px;
        max-width: 100%;
        margin: 0;
    }
    
    .hero h1 {
        font-size: 1.6rem;
        margin-bottom: 6px;
        line-height: 1.1;
        text-align: center;
        padding: 0 8px;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 4px;
        text-align: center;
        padding: 0 8px;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .direccion {
        font-size: 0.8rem !important;
    }
    
    .hero-historia {
        flex-direction: column;
        gap: 12px;
        padding: 15px 8px;
        margin: 12px 8px;
        border-radius: 8px;
        max-width: calc(100% - 16px);
    }
    
    .hero-historia-content {
        text-align: center;
        padding: 0;
    }
    
    .hero-historia-content h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .hero-historia-content p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 6px;
        padding: 0 4px;
    }
    
    .hero-historia-image {
        flex: none;
        max-width: 150px;
        margin: 0 auto;
    }
    
    .hero-historia-image img {
        width: 100%;
        height: auto;
        max-width: 150px;
    }
    
    .btn-turnos {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin: 8px auto;
        display: block;
        width: fit-content;
    }
    
    /* Secciones generales móvil */
    .diferencial, .servicios, .tendencias, .turnos, .contacto {
        padding: 30px 12px;
        margin: 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .diferencial h2, .servicios h2, .tendencias h2, .turnos h2, .contacto h2 {
        font-size: 1.4rem;
        margin-bottom: 16px;
        line-height: 1.2;
        text-align: center;
        padding: 0 8px;
    }
    
    .diferencial-content p, .tendencia-content p, .turnos-info p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 12px;
        padding: 0 4px;
    }
    
    /* Servicios móvil */
    .servicios-intro {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.3;
        text-align: center;
        padding: 0 8px;
    }
    
    .servicios-lista {
        flex-direction: column;
        gap: 16px;
        padding: 0 8px;
        align-items: center;
    }
    
    .servicio {
        max-width: none;
        min-width: auto;
        width: 100%;
        max-width: 280px;
        padding: 20px 16px;
        margin: 0 auto;
    }
    
    .servicio img {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
        border-width: 2px;
    }
    
    .servicio h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .servicio p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    /* Tendencias móvil */
    .tendencia-destacada, .turnos-content, .contacto-content {
        flex-direction: column;
        gap: 16px;
        padding: 0 8px;
    }
    
    .tendencia-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .tendencia-image, .turnos-image, .contacto-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .tendencia-image img, .turnos-image img, .contacto-image img {
        width: 100%;
        height: auto;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    /* Contacto móvil */
    .contacto-item {
        padding: 12px;
        margin-bottom: 12px;
        border-radius: 8px;
    }
    
    .contacto-item h3 {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .contacto-item p {
        font-size: 0.8rem;
    }
    
    .redes {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .redes a {
        padding: 4px 8px;
        font-size: 0.8rem;
        border-radius: 4px;
    }
    
    .whatsapp {
        padding: 8px 16px;
        font-size: 0.9rem;
        border-radius: 16px;
    }
    
    /* WhatsApp flotante móvil */
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 12px;
        right: 12px;
    }
    
    .whatsapp-icon {
        width: 22px;
        height: 22px;
    }
    
    /* Footer móvil */
    footer {
        padding: 20px 12px;
        font-size: 0.8rem;
        text-align: center;
    }
}

/* Media query para pantallas medianas */
@media (max-width: 1200px) and (min-width: 701px) {
    .servicios-lista {
        gap: 15px;
    }
    .servicio {
        min-width: 200px;
        max-width: 220px;
    }
    .servicio img {
        width: 130px;
        height: 130px;
    }
}

/* Estilos para la sección Equipo */
.equipo {
    padding: 80px 48px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    text-align: center;
}

.equipo h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.equipo-intro {
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #b0b0b0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.miembro {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.miembro:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.miembro-foto {
    margin-bottom: 20px;
}

.miembro-foto img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.miembro:hover .miembro-foto img {
    border-color: #f5f5f5;
    box-shadow: 0 10px 20px rgba(245, 245, 245, 0.2);
}

.miembro-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #f5f5f5;
}

.miembro-especialidad {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.miembro-info p {
    color: #d0d0d0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.miembro-red-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f5f5f5 0%, #c0c0c0 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.miembro-red-social:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(245, 245, 245, 0.3);
}

.miembro-red-social .social-icon {
    width: 20px;
    height: 20px;
    fill: #181818;
}

/* Estilos para la sección Testimonios */
.testimonios {
    padding: 80px 48px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    text-align: center;
}

.testimonios h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #f5f5f5 0%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.testimonio {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.testimonio:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonio-foto {
    text-align: center;
    margin-bottom: 20px;
}

.testimonio-foto img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonio-texto {
    font-size: 1.1rem;
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonio-texto::before {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonio-autor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.testimonio-autor h4 {
    margin: 0;
    color: #f5f5f5;
    font-size: 1.1rem;
}

.testimonio-red-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #f5f5f5 0%, #c0c0c0 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.testimonio-red-social:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(245, 245, 245, 0.3);
}

.testimonio-red-social .social-icon {
    width: 18px;
    height: 18px;
    fill: #181818;
}

/* Media queries para las nuevas secciones */
@media (max-width: 700px) {
    /* Equipo y Testimonios móvil */
    .equipo, .testimonios {
        padding: 40px 12px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .equipo h2, .testimonios h2 {
        font-size: 1.6rem;
        margin-bottom: 16px;
        text-align: center;
        padding: 0 8px;
    }
    
    .equipo-intro {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 8px;
        text-align: center;
        line-height: 1.4;
    }
    
    .equipo-miembros, .testimonios-lista {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 4px;
        max-width: 100%;
    }
    
    .miembro, .testimonio {
        padding: 20px 16px;
        margin: 0 auto;
        width: 100%;
        max-width: 320px;
        overflow: hidden;
    }
    
    .miembro-foto {
        margin-bottom: 16px;
    }
    
    .miembro-foto img {
        width: 80px;
        height: 80px;
        border-width: 2px;
    }
    
    .miembro-info h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .miembro-especialidad {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .miembro-info p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 16px;
        padding: 0 4px;
    }
    
    .miembro-red-social {
        width: 35px;
        height: 35px;
    }
    
    .miembro-red-social .social-icon {
        width: 16px;
        height: 16px;
    }
    
    /* Testimonios móvil */
    .testimonio-foto {
        margin-bottom: 16px;
    }
    
    .testimonio-foto img {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }
    
    .testimonio-texto {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 16px;
        padding: 0 4px;
    }
    
    .testimonio-texto::before {
        font-size: 2rem;
        top: -8px;
        left: -8px;
    }
    
    .testimonio-autor {
        padding-top: 12px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .testimonio-autor h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .testimonio-red-social {
        width: 30px;
        height: 30px;
        margin: 0 auto;
    }
    
    .testimonio-red-social .social-icon {
        width: 14px;
        height: 14px;
    }
}

/* Media query adicional para pantallas muy pequeñas */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.4rem;
        padding: 0 4px;
    }
    
    .hero-content {
        padding: 16px 8px;
    }
    
    .diferencial, .servicios, .tendencias, .turnos, .contacto, .equipo, .testimonios {
        padding: 25px 8px;
    }
    
    .equipo h2, .testimonios h2 {
        font-size: 1.4rem;
    }
    
    .miembro, .testimonio {
        padding: 16px 12px;
        max-width: 300px;
    }
    
    .miembro-foto img {
        width: 70px;
        height: 70px;
    }
    
    .testimonio-foto img {
        width: 50px;
        height: 50px;
    }
}
