/* Reset y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'NostalgicWhispers';
    src: url('../fonts/NostalgicWhispers-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f1ebe1;
    font-family: 'NostalgicWhispers', sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #4c7d9e;
    color: #f1ebe1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(76, 125, 158, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #88b1bd;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(136, 177, 189, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 125, 158, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(76, 125, 158, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(76, 125, 158, 0);
    }
}

/* Hero section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #f1ebe1;
    text-align: center;
}

header.hero-section#inicio {
    background-image: url('../img/portada.jpeg');
}

header.hero-section#equipoClinico {
    background-image: url('https://images.unsplash.com/photo-1508672019048-805c876b67e2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

header.hero-section#servicios {
    background-image: url('https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

header.hero-section#servicios-asesoria {
    background-image: url('../img/servicios.jpg');
}

header.hero-section#metodologia {
    background-image: url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

header.hero-section#blog {
    background-image: url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Navegación */
.main-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.main-nav.fixed {
    position: fixed;
    background-color: rgba(76, 125, 158, 0.95);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    padding-left: 10px;
}

.logo-image {
    max-height: 100px;
    width: auto;
    vertical-align: middle;
    transition: all 0.3s ease;
    content: url('../img/logo.png');
}

.logo a {
    font-family: 'NostalgicWhispers', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #f1ebe1;
    text-decoration: none;
}

.dropdown {
    position: relative;
}

.dropdown-trigger i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #4c7d9e;
    min-width: 285px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin-top: 5px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #f1ebe1;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s;
    text-decoration: none;
    border-bottom: 1px solid rgba(241, 235, 225, 0.1);
}

.dropdown-menu a:hover {
    background-color: #88b1bd;
    color: #f1ebe1;
    padding-left: 25px;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #f1ebe1;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 5px 10px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f1ebe1;
    border-bottom: 2px solid #f1ebe1;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #f1ebe1;
    font-size: 1.3rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #8fb4aa;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #f1ebe1;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Contenedor para botón e iconos sociales */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Botón Reserva tu cita */
.btn-reserva {
    display: inline-block;
    background-color: #f1ebe1;
    color: #4c7d9e;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #f1ebe1;
    white-space: nowrap;
}

.btn-reserva:hover {
    background-color: transparent;
    color: #f1ebe1;
    border-color: #f1ebe1;
}

/* Ajuste para cuando el menú se vuelve fijo */
.main-nav.fixed .btn-reserva {
    background-color: #f1ebe1;
    color: #4c7d9e;
}

.main-nav.fixed .btn-reserva:hover {
    background-color: transparent;
    color: #f1ebe1;
}

/*Blog*/
.blog-contenido {
    min-height: 500px;
    padding: 100px 0;
    background-color: #f1ebe1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.blog-mensaje {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-mensaje i {
    font-size: 4rem;
    color: #4c7d9e;
    margin-bottom: 20px;
}

.blog-mensaje h3 {
    font-family: 'NostalgicWhispers', sans-serif;
    font-size: 2rem;
    color: #4c7d9e;
    margin-bottom: 15px;
}

.blog-mensaje p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Contenido hero */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'NostalgicWhispers', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    line-height: 1.4;
}

.cta-button {
    display: inline-block;
    background-color: #4c7d9e;
    color: #f1ebe1;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid #4c7d9e;
}

.cta-button:hover {
    background-color: transparent;
    border-color: #f1ebe1;
}

/* Sección de Áreas de Trabajo */
.areas-trabajo {
    padding: 80px 0;
    background-color: #f1ebe1;
    font-family: 'NostalgicWhispers', sans-serif;
}

.areas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
}

/* Lado izquierdo - Título grande */
.areas-left {
    flex: 1;
    padding-right: 50px;
    display: flex;
    align-items: center;
    min-height: 100%;
}

.areas-title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 600;
    color: #4c7d9e;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Lado derecho - Desplegables */
.areas-right {
    flex: 1;
}

/* Estilos del acordeón */
.accordion-item {
    margin-bottom: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.accordion-header {
    width: 100%;
    padding: 20px 24px;
    background-color: #ffffff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'NostalgicWhispers', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #4c7d9e;
    text-align: left;
    transition: background-color 0.3s ease;
    border: 1px solid #8fb4aa;
}

.accordion-header:hover {
    background-color: #f1ebe1;
}

.accordion-header i {
    font-size: 1rem;
    color: #c3aa9c;
    transition: transform 0.3s ease;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: #ffffff;
    border-left: 1px solid #8fb4aa;
    border-right: 1px solid #8fb4aa;
    border-bottom: 1px solid #8fb4aa;
    border-radius: 0 0 12px 12px;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    margin: 0;
    padding: 20px 24px;
    color: #4c7d9e;
    line-height: 1.6;
    font-size: 1rem;
}

.accordion-content.show {
    max-height: 200px;
}

/* Sección Valores */
.valores-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.valores-section .section-title {
    font-family: 'NostalgicWhispers', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #4c7d9e;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.valor-card {
    background-color: #f1ebe1;
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 125, 158, 0.1);
}

.valor-card.color-1 {
    background-color: #f1ebe1;
}

.valor-card.color-2 {
    background-color: #8fb4aa;
}

.valor-card.color-3 {
    background-color: #c3aa9c;
}

.valor-card.color-4 {
    background-color: #88b1bd;
}

.valor-card.color-2 .valor-titulo,
.valor-card.color-2 .valor-descripcion,
.valor-card.color-4 .valor-titulo,
.valor-card.color-4 .valor-descripcion {
    color: #2c3e50;
    /* Texto oscuro para fondos claros */
}

.valor-card.color-3 .valor-titulo,
.valor-card.color-3 .valor-descripcion {
    color: #2c3e50;
    /* También legible en este tono */
}

.valor-card:hover {
    transform: translateY(-10px);
    background-color: #ffffff;
    border-color: #4c7d9e;
    box-shadow: 0 15px 40px rgba(76, 125, 158, 0.15);
}

.valor-icono {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1;
    transition: transform 0.3s;
    color: #4c7d9e;
}

.valor-card:hover .valor-icono {
    transform: scale(1.1);
}

.valor-titulo {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4c7d9e;
    margin-bottom: 20px;
    font-family: 'NostalgicWhispers', sans-serif;
    position: relative;
    padding-bottom: 15px;
}

.valor-titulo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #8fb4aa;
    transition: width 0.3s;
}

.valor-card:hover .valor-titulo::after {
    width: 80px;
}

.valor-descripcion {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4c7d9e;
    margin: 0;
    text-align: center;
}

/* Sección Metodología */
.metodologia-section {
    padding: 100px 0;
    background-color: #fff;
    width: 100%;
    overflow-x: hidden;
}

.metodologia-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.metodologia-section .section-title {
    font-family: 'NostalgicWhispers', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #4c7d9e;
}

.metodologia-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    margin: 0;
}

.metodologia-card {
    background-color: #ffffff;
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 125, 158, 0.1);
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    height: 285px;
}

/* Colores de fondo personalizados */
.metodologia-card.color-meta-1 {
    background-color: #f1ebe1;
}

.metodologia-card.color-meta-2 {
    background-color: #4c7d9e;
}

.metodologia-card.color-meta-3 {
    background-color: #8fb4aa;
}

.metodologia-card.color-meta-4 {
    background-color: #c3aa9c;
}

.metodologia-card.color-meta-5 {
    background-color: #88b1bd;
}

/* Ajuste de color de texto e iconos para legibilidad */
.metodologia-card.color-meta-2 .metodologia-icono i,
.metodologia-card.color-meta-2 .metodologia-titulo,
.metodologia-card.color-meta-2 .metodologia-descripcion {
    color: #f1ebe1;
}

.metodologia-card.color-meta-3 .metodologia-icono i,
.metodologia-card.color-meta-3 .metodologia-titulo,
.metodologia-card.color-meta-3 .metodologia-descripcion,
.metodologia-card.color-meta-4 .metodologia-icono i,
.metodologia-card.color-meta-4 .metodologia-titulo,
.metodologia-card.color-meta-4 .metodologia-descripcion,
.metodologia-card.color-meta-5 .metodologia-icono i,
.metodologia-card.color-meta-5 .metodologia-titulo,
.metodologia-card.color-meta-5 .metodologia-descripcion {
    color: #2c3e50;
}

.metodologia-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(76, 125, 158, 0.15);
    border-color: #4c7d9e;
}

.metodologia-icono {
    font-size: 2.2rem;
    color: #4c7d9e;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.metodologia-card:hover .metodologia-icono {
    transform: scale(1.1);
}

.metodologia-titulo {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4c7d9e;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    line-height: 1.3;
    width: 100%;
}

.metodologia-descripcion {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #4c7d9e;
    margin: 0;
    width: 100%;
}

/* Sección Sobre mí */
.about-text-container {
    margin-bottom: 10px;
}

.about-header {
    margin-bottom: 25px;
}

.about-name {
    font-family: 'NostalgicWhispers', sans-serif;
    font-size: 2.5rem;
    color: #4c7d9e;
    margin-bottom: 5px;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #88b1bd !important;
    font-weight: 400;
    margin-bottom: 0;
}

.about-section {
    padding: 100px 0;
    background-color: #f1ebe1;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(76, 125, 158, 0.1);
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: #4c7d9e;
}

.about-text-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    position: relative;
}

.about-text-content.expanded {
    max-height: 800px;
}

.about-text-content.expanded::after {
    display: none;
}

.about-toggle-btn {
    background: none;
    border: none;
    color: #4c7d9e;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    transition: all 0.3s;
    font-family: 'NostalgicWhispers', sans-serif;
}

.about-toggle-btn:hover {
    color: #88b1bd;
    gap: 12px;
}

.about-toggle-btn i {
    transition: transform 0.3s ease;
}

.about-toggle-btn.expanded i {
    transform: rotate(180deg);
}

.reserve-button {
    display: inline-block;
    background-color: #4c7d9e;
    color: #f1ebe1;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s;
    border: 2px solid #4c7d9e;
}

.reserve-button:hover {
    background-color: #88b1bd;
    border-color: #88b1bd;
}

/* Sección Equipo */
.equipo-section {
    padding: 80px 0;
    background-color: #f1ebe1;
}

.equipo-intro-texto {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4c7d9e;
    font-weight: 400;
}

.equipo-section .section-title {
    font-family: 'NostalgicWhispers', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #4c7d9e;
    letter-spacing: 2px;
}

.equipo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.equipo-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(76, 125, 158, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    padding-bottom: 30px;
}

/* Ajuste de legibilidad para textos */
.equipo-card.color-equipo-1 .equipo-nombre,
.equipo-card.color-equipo-1 .equipo-descripcion {
    color: #8fb4aa;
}

.equipo-card.color-equipo-2 .equipo-nombre,
.equipo-card.color-equipo-2 .equipo-descripcion {
    color: #c3aa9c;
}

.equipo-card.color-equipo-3 .equipo-nombre,
.equipo-card.color-equipo-3 .equipo-descripcion {
    color: #88b1bd;
}

.equipo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(76, 125, 158, 0.15);
}

.equipo-foto {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
}

.equipo-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.equipo-card:hover .equipo-foto img {
    transform: scale(1.05);
}

.equipo-nombre {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4c7d9e;
    margin-bottom: 15px;
    font-family: 'NostalgicWhispers', sans-serif;
    padding: 0 20px;
}

.equipo-descripcion {
    font-size: 1rem;
    line-height: 1.6;
    color: #8fb4aa;
    padding: 0 25px;
    margin: 0;
}

/* Sección Servicios */
.terapia-psicologica-section {
    padding: 80px 0;
    background-color: #f1ebe1;
}

.terapia-block {
    margin-bottom: 100px;
}

.terapia-block:last-child {
    margin-bottom: 0;
}

.terapia-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.terapia-content.reverse {
    flex-direction: row-reverse;
}

.terapia-image {
    flex: 1;
}

.terapia-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(76, 125, 158, 0.1);
    transition: transform 0.3s ease;
}

.terapia-img:hover {
    transform: scale(1.02);
}

.terapia-text {
    flex: 1;
}

.terapia-title {
    font-family: 'NostalgicWhispers', sans-serif;
    font-size: 2.2rem;
    color: #4c7d9e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.terapia-subtitle {
    font-size: 1.2rem;
    color: #88b1bd;
    font-weight: 500;
    margin-bottom: 15px;
}

.terapia-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.terapia-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #4c7d9e;
    line-height: 1.6;
}

.terapia-list li::before {
    content: "•";
    color: #c3aa9c;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 5px;
    top: -2px;
}

.terapia-descripcion {
    color: #4c7d9e;
    line-height: 1.6;
    margin-bottom: 15px;
}

.terapia-btn-container {
    margin-top: 25px;
}

.terapia-btn {
    display: inline-block;
    background-color: #4c7d9e;
    color: #f1ebe1;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid #4c7d9e;
}

.terapia-btn:hover {
    background-color: #88b1bd;
    border-color: #88b1bd;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(136, 177, 189, 0.3);
}

/* ===== TALLERES GRUPALES PAGE ===== */
.talleres-section {
    padding: 80px 0;
    background-color: #f1ebe1;
}

.taller-block {
    margin-bottom: 60px;
}

.taller-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.taller-image {
    flex: 1;
}

.taller-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(76, 125, 158, 0.1);
    transition: transform 0.3s ease;
}

.taller-img:hover {
    transform: scale(1.02);
}

.taller-text {
    flex: 1;
}

.taller-title {
    font-family: 'NostalgicWhispers', sans-serif;
    font-size: 2.2rem;
    color: #4c7d9e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.taller-descripcion {
    font-size: 1.1rem;
    color: #88b1bd;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.5;
}

.taller-subtitle {
    font-size: 1.1rem;
    color: #4c7d9e;
    font-weight: 600;
    margin: 20px 0 10px 0;
}

.taller-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.taller-list li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color: #4c7d9e;
    line-height: 1.6;
}

.taller-list li::before {
    content: "•";
    color: #c3aa9c;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 5px;
    top: -2px;
}

.taller-nota {
    color: #4c7d9e;
    line-height: 1.6;
    margin: 25px 0 15px 0;
    font-style: italic;
    border-left: 3px solid #8fb4aa;
    padding-left: 15px;
}

.taller-btn-container {
    margin-top: 30px;
}

.taller-btn {
    display: inline-block;
    background-color: #4c7d9e;
    color: #f1ebe1;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid #4c7d9e;
}

.taller-btn:hover {
    background-color: #88b1bd;
    border-color: #88b1bd;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(136, 177, 189, 0.3);
}

/* ===== ASESORÍA CLÍNICA PAGE ===== */
.asesoria-section {
    padding: 80px 0;
    background-color: #f1ebe1;
}

/* Bloque 1: Imagen izquierda + texto derecho */
.asesoria-bloque {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.asesoria-imagen-wrapper {
    flex: 1;
    position: relative;
}

.asesoria-imagen {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(76, 125, 158, 0.1);
}

.asesoria-imagen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 98%;
    background: rgba(76, 125, 158, 0.4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asesoria-imagen-titulo {
    font-family: 'NostalgicWhispers', sans-serif;
    font-size: 2.5rem;
    color: #f1ebe1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.asesoria-texto-derecha {
    flex: 1;
}

.asesoria-intro {
    font-size: 1.2rem;
    color: #4c7d9e;
    margin-bottom: 20px;
    font-weight: 500;
}

.asesoria-lista-preguntas {
    list-style: none;
    padding: 0;
    margin: 0;
}

.asesoria-lista-preguntas li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #4c7d9e;
    font-size: 1.1rem;
    line-height: 1.6;
}

.asesoria-lista-preguntas li::before {
    content: "•";
    color: #c3aa9c;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Bloque 2: 4 tarjetas con fondo #f1ebe1 */
.asesoria-trabajamos {
    margin-bottom: 80px;
}

.asesoria-titulo {
    font-family: 'NostalgicWhispers', sans-serif;
    font-size: 2.2rem;
    color: #4c7d9e;
    margin-bottom: 40px;
    text-align: left;
}

.asesoria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Colores de fondo personalizados */
.asesoria-card.color-asesoria-1 {
    background-color: #4c7d9e;
}

.asesoria-card.color-asesoria-2 {
    background-color: #8fb4aa;
}

.asesoria-card.color-asesoria-3 {
    background-color: #c3aa9c;
}

.asesoria-card.color-asesoria-4 {
    background-color: #88b1bd;
}

/* Ajuste de legibilidad para textos */
.asesoria-card.color-asesoria-1 .asesoria-card-titulo,
.asesoria-card.color-asesoria-1 .asesoria-card-texto,
.asesoria-card.color-asesoria-2 .asesoria-card-titulo,
.asesoria-card.color-asesoria-2 .asesoria-card-texto,
.asesoria-card.color-asesoria-3 .asesoria-card-titulo,
.asesoria-card.color-asesoria-3 .asesoria-card-texto,
.asesoria-card.color-asesoria-4 .asesoria-card-titulo,
.asesoria-card.color-asesoria-4 .asesoria-card-texto {
    color: #f1ebe1;
}

.asesoria-card {
    padding: 30px 25px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    background-color: #f1ebe1;
}

.asesoria-card:hover {
    transform: translateY(-5px);
}

.asesoria-card-titulo {
    font-size: 1.3rem;
    color: #4c7d9e;
    margin-bottom: 15px;
    font-weight: 600;
}

.asesoria-card-texto {
    color: #4c7d9e;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Bloque 3: Resultado esperado */
.asesoria-resultado {
    text-align: left;
    max-width: 800px;
}

.asesoria-resultado-lista {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.asesoria-resultado-lista li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #4c7d9e;
    font-size: 1.1rem;
}

.asesoria-resultado-lista li::before {
    content: "✓";
    color: #8fb4aa;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.asesoria-resultado-texto {
    color: #4c7d9e;
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 30px 0;
}

.asesoria-boton-contenedor {
    margin-top: 40px;
}

.asesoria-boton {
    display: inline-block;
    background-color: #4c7d9e;
    color: #f1ebe1;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid #4c7d9e;
}

.asesoria-boton:hover {
    background-color: #88b1bd;
    border-color: #88b1bd;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(136, 177, 189, 0.3);
}

/* Blog Coming Soon */
.blog-coming-soon {
    padding: 100px 0 0 0;
    background-color: #f1ebe1;
    text-align: center;
}

.coming-soon-content {
    max-width: 700px;
    margin: 0 auto;
    color: #4c7d9e;
}

.coming-soon-content i {
    font-size: 4rem;    
    margin-bottom: 30px;
}

.coming-soon-content h2 {
    font-family: 'NostalgicWhispers', sans-serif;
    font-size: 2.5rem;
    color: #4c7d9e;
    margin-bottom: 20px;
}

.coming-soon-content p {
    font-size: 1.2rem;    
    margin-bottom: 10px;
}

/* Sección Categorías Blog */
.blog-categorias {
    padding: 60px 0 100px;
    background-color: #f1ebe1;
}

.blog-categorias .section-title {
    font-family: 'NostalgicWhispers', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #4c7d9e;
}

.categorias-botones {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.categoria-btn {
    background-color: transparent;
    border: 2px solid #4c7d9e;
    color: #4c7d9e;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1 1 auto;
    min-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.categoria-btn:hover {
    background-color: #4c7d9e;
    color: #f1ebe1;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(76, 125, 158, 0.3);
}

/* Sección Comentarios Carrusel */
.comentarios-carrusel-section {
    padding: 80px 0;
    background-color: #f1ebe1;
    overflow: hidden;
}

.comentarios-carrusel-section .section-title {
    font-family: 'NostalgicWhispers', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #4c7d9e;
}

.comentarios-carrusel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 10px 50px;
}

.comentarios-carrusel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.comentario-carrusel-slide {
    flex: 0 0 calc(50% - 15px);
    min-width: 0;
}

.comentario-carrusel-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(76, 125, 158, 0.08);
    height: 100%;
}

.comentario-carrusel-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comentario-carrusel-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #4c7d9e;
    flex-shrink: 0;
}

.comentario-carrusel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comentario-carrusel-info {
    flex: 1;
}

.comentario-carrusel-nombre {
    font-size: 1.1rem;
    color: #4c7d9e;
    margin-bottom: 5px;
    font-weight: 600;
}

.comentario-carrusel-estrellas {
    color: #ffc107;
    font-size: 0.9rem;
}

.comentario-carrusel-cuerpo {
    position: relative;
}

.comentario-carrusel-texto {
    font-size: 1rem;
    line-height: 1.6;
    color: #4c7d9e;
    font-style: italic;
    margin: 0;
    position: relative;
    padding-left: 20px;
}

.comentario-carrusel-texto::before {
    content: "“";
    font-size: 2.5rem;
    color: #8fb4aa;
    position: absolute;
    left: -5px;
    top: -10px;
    font-family: Georgia, serif;
    opacity: 0.5;
}

/* Controles */
.comentarios-prev-btn,
.comentarios-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #4c7d9e;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    z-index: 10;
}

.comentarios-prev-btn:hover,
.comentarios-next-btn:hover {
    background-color: #4c7d9e;
    color: #f1ebe1;
}

.comentarios-prev-btn {
    left: 0;
}

.comentarios-next-btn {
    right: 0;
}

/* Dots */
.comentarios-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.comentarios-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(76, 125, 158, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.comentarios-dot.active {
    background-color: #4c7d9e;
    transform: scale(1.2);
}

/* Estilos para Leer más */
.leer-mas-btn {
    background: none;
    border: none;
    color: #4c7d9e;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 5px 0;
    margin-top: 5px;
    transition: color 0.3s;
}

.leer-mas-btn:hover {
    color: #88b1bd;
    text-decoration: underline;
}

.texto-corto,
.texto-completo {
    display: inline;
}

/* Sección Videos */
.videos-section {
    padding: 100px 0;
    background-color: #f1ebe1;
}

.videos-section .section-title {
    font-family: 'NostalgicWhispers', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #4c7d9e;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(76, 125, 158, 0.1);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(76, 125, 158, 0.15);
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background-color: #000;
    overflow: hidden;
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.video-player.show-video {
    display: block;
}

.video-player.show-video+.video-poster {
    display: none;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(241, 235, 225, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4c7d9e;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-play-btn:hover {
    background-color: #4c7d9e;
    color: #f1ebe1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Footer */
.footer {
    background-color: #4c7d9e;
    color: #f1ebe1;
    padding: 70px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #f1ebe1;
}

.footer-section p {
    margin-bottom: 15px;
    color: #f1ebe1;
}

.footer-section a {
    color: #f1ebe1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #8fb4aa;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(241, 235, 225, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(241, 235, 225, 0.1);
    color: #f1ebe1;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }

    .nav-actions {
        gap: 15px;
    }

    .btn-reserva {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 100%;
        max-width: 500px;
    }

    .services-container {
        gap: 30px;
    }

    .service-card {
        min-width: 280px;
    }

    .service-image {
        height: 350px;
    }

    /* Metodología - 5 tarjetas se vuelven 3 */
    .metodologia-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .metodologia-card {
        height: auto;
        aspect-ratio: 1/1;
    }

    /* Equipo - 3 tarjetas se vuelven 2 */
    .equipo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
}

@media (max-width: 992px) {

    /* Comentarios carrusel */
    .comentario-carrusel-slide {
        flex: 0 0 calc(100% - 15px);
    }

    .comentarios-carrusel-container {
        padding: 10px 40px;
    }
}

@media (max-width: 768px) {
    .dropdown .dropdown-menu {
        position: static !important;
        background: rgba(255, 255, 255, 0.1) !important;
        box-shadow: none !important;
        margin-top: 5px !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        width: 100% !important;
        min-width: 100% !important;
        display: none !important;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
    }

    .dropdown.active .dropdown-trigger i {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        color: #f1ebe1;
        padding: 10px 15px;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(241, 235, 225, 0.1);
    }

    .terapia-content,
    .terapia-content.reverse,
    .taller-content,
    .asesoria-bloque {
        flex-direction: column;
        gap: 30px;
    }

    .terapia-image,
    .taller-image,
    .asesoria-imagen-wrapper {
        width: 100%;
    }

    .asesoria-imagen-wrapper::after {
        display: none;
    }

    .asesoria-bloque .asesoria-imagen-wrapper+.asesoria-texto-derecha::before {
        content: "Asesoría clínica";
        font-family: 'NostalgicWhispers', sans-serif;
        font-size: 2rem;
        color: #4c7d9e;
        display: block;
        margin-bottom: 15px;
    }

    .asesoria-bloque .asesoria-imagen-wrapper+.asesoria-texto-derecha {
        margin-top: 10px;
    }

    .asesoria-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .asesoria-card {
        padding: 25px 20px;
    }

    .asesoria-resultado {
        text-align: center;
        max-width: 100%;
    }

    .asesoria-resultado-lista {
        text-align: left;
        display: inline-block;
        margin: 20px auto;
    }

    .asesoria-boton-contenedor {
        text-align: center;
    }

    .asesoria-titulo {
        font-size: 1.8rem;
        text-align: center;
    }

    .asesoria-imagen {
        width: 100%;
        height: auto;
    }

    .asesoria-lista-preguntas {
        margin-top: 20px;
    }

    .asesoria-imagen-overlay {
        display: none;
    }

    .terapia-title,
    .taller-title {
        font-size: 1.8rem;
    }

    .asesoria-imagen-titulo {
        display: block;
        font-family: 'NostalgicWhispers', sans-serif;
        font-size: 2rem;
        color: #4c7d9e;
        text-shadow: none;
        margin: 15px 0 10px 0;
        text-align: left;
        position: static;
        background: none;
    }

    .terapia-block,
    .taller-block {
        margin-bottom: 60px;
    }

    .about-text-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: justify;
    }

    .logo-image {
        content: url('../img/logo2.png');
        max-height: 85px;
    }

    .areas-container {
        flex-direction: column;
    }

    .areas-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .areas-title {
        font-size: 2.5rem;
    }

    .categorias-botones {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 20px;
    }

    .categoria-btn {
        width: 100%;
        max-width: 350px;
        padding: 12px 25px;
        font-size: 1rem;
    }

    .videos-section {
        padding: 70px 0;
    }

    .videos-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .video-play-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .nav-actions {
        display: none;
    }

    .logo {
        padding: 0;
    }

    .logo-image {
        max-height: 85px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100vh;
        background-color: #4c7d9e;
        flex-direction: column;
        padding-top: 80px;
        transition: left 0.3s;
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .valores-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .service-card {
        width: 100%;
        max-width: 500px;
    }

    .service-image {
        height: 300px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .equipo-section {
        padding: 50px 0;
    }

    .about-section {
        padding: 50px 0;
    }

    .metodologia-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .metodologia-card {
        padding: 15px 10px;
    }

    .metodologia-icono {
        font-size: 2rem;
    }

    .metodologia-titulo {
        font-size: 0.9rem;
    }

    .metodologia-descripcion {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .equipo-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .equipo-foto {
        height: 250px;
    }

    .equipo-nombre {
        font-size: 1.3rem;
    }

    .popup-title {
        font-size: 1.6rem;
        padding: 25px 25px 10px;
    }

    .popup-body {
        padding: 20px;
        max-height: 350px;
    }

    .popup-body p {
        font-size: 1rem;
    }

    .popup-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .popup-close {
        font-size: 2rem;
        top: 10px;
        right: 15px;
    }

    .comentario-carrusel-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .comentario-carrusel-avatar {
        width: 60px;
        height: 60px;
    }

    .comentario-carrusel-nombre {
        font-size: 1rem;
    }

    .comentario-carrusel-texto {
        font-size: 0.95rem;
        padding-left: 15px;
        text-align: center;
    }

    .comentario-carrusel-texto::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .comentarios-prev-btn,
    .comentarios-next-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .metodologia-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .metodologia-card {
        aspect-ratio: auto;
        height: auto;
        min-height: 200px;
        padding: 25px 20px;
    }

    .metodologia-icono {
        font-size: 2.5rem;
    }

    .metodologia-titulo {
        font-size: 1.1rem;
    }

    .metodologia-descripcion {
        font-size: 0.9rem;
    }

    .comentarios-prev-btn {
        left: -5px;
    }

    .comentarios-next-btn {
        right: -5px;
    }
}

@media (max-width: 480px) {
    .videos-section {
        padding: 50px 0;
    }

    .videos-section .section-title {
        font-size: 1.8rem;
    }

    .video-play-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .valor-card {
        padding: 30px 20px;
    }

    .service-image {
        height: 250px;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .coming-soon-content h2 {
        font-size: 2rem;
    }

    .coming-soon-content p {
        font-size: 1rem;
    }

    .comentarios-carrusel-container {
        padding: 10px 30px;
    }

    .comentario-carrusel-card {
        padding: 20px 15px;
    }

    .comentario-carrusel-avatar {
        width: 50px;
        height: 50px;
    }

    .popup-title {
        font-size: 1.4rem;
        padding: 20px 20px 10px;
    }

    .popup-body {
        padding: 15px;
    }

    .popup-body p {
        font-size: 0.95rem;
    }

    .popup-footer {
        padding: 15px 20px 20px;
    }

    .popup-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}