/* 
  --------------------------------------------------
  FUENTES Y TIPOGRAFÍA 
  --------------------------------------------------
*/

/* 
   Tipografía principal para ítems de menú, botones, etc. 
   Usando la familia 'Lato' y peso 400 
*/
.navbar-nav .nav-link {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* 
   Aplicación opcional al botón principal con la misma fuente 
*/
.btn-primary {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

/* 
   Aplicación opcional a la marca (logo textual) 
*/
.navbar-brand {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}


/* 
  --------------------------------------------------
  FUENTES PERSONALIZADAS @font-face
  --------------------------------------------------
*/

/* 
   Fuente 'Myriad Pro' en sus dos formatos 
   para asegurar compatibilidad amplia 
*/
@font-face {
    font-family: 'Myriad Pro';
    src: url('/css/fuentes/myanriadpro/MYRIADPRO-REGULAR.woff2') format('woff2'),
        url('/css/fuentes/myanriadpro/MYRIADPRO-REGULAR.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* 
   Fuente 'Simple Michael' en sus dos formatos 
*/
@font-face {
    font-family: 'Michael';
    src: url('/css/fuentes/simpleMichael/SimpleMichael.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}




/* 
  --------------------------------------------------
  BOTÓN PERSONALIZADO (Custom-btn)
  --------------------------------------------------
*/

/* Botón con esquinas redondeadas y estilos base */
.custom-btn {
    border-radius: 50px !important;
    font-family: 'Myriad Pro', sans-serif !important;
    color: white !important;
    border: none;
    transition: all 0.3s ease;
    background-color: #585742 !important;
    padding: 4px;
}

.custom-btn:hover {
    background-color: #585742 !important;
    transform: scale(1.05);
}


/* 
  --------------------------------------------------
  DISTRIBUCIÓN DE NAVBAR Y LOGO 
  --------------------------------------------------
*/

/* Márgenes en versiones desktop (≥992px) */
@media (min-width: 992px) {

    /* 
       Aumenta espacio derecho del logo 
       y espacio izquierdo del botón 
       para versiones de escritorio 
    */
    .desktop-logo-spacer {
        margin-right: 80px !important;
        min-width: 80px;
    }

    .desktop-btn-spacer {
        min-width: 150px;
    }

    /* Ajusta ancho del contenedor de ítems */
    .navbar-nav {
        width: calc(100% - 200px) !important;
    }
}

/* 
   Ajustes generales de la lista de navegación 
   para distribuir ítems en un espacio flexible 
*/
.navbar-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

/* 
   Cada item de menú se comporta como un bloque 
   flexible y centrado, evitando saltos de línea 
*/
.nav-item {
    flex: 1 1 auto;
    text-align: center;
    white-space: nowrap;
}

/* 
  --------------------------------------------------
  AJUSTES DE SOMBRA EN NAV (Header flotante)
  --------------------------------------------------
*/

/* Navbar con sombra sutil y fondo blanco */
.shadow-nav {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1030;
    background: white;
}

/* Ajuste de padding vertical reducido */
.navbar {
    padding: 0.5rem 0;
}

/* Asegura que el contenedor no agregue márgenes extra */
.container-fluid>.row {
    margin-left: 0;
    margin-right: 0;
}

.containers {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    height: 700px;
    /* Ocupa el 100% de la altura del viewport */
    padding-top: 50px;
}



.logo-background {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.people-image {
    position: absolute;
    bottom: 0;
    /* Ubica la imagen en la parte inferior */
    left: 50%;
    transform: translateX(-50%);
    /* Solo centrado horizontal */
    width: 100%;
    max-width: 700px;
    z-index: 2;
}


.side-text {
    position: absolute;
    top: 43%;
    font-size: 30px;
    color: #3d3c29;
    letter-spacing: 13px;
}

.left-text {
    left: 12%;
}

.right-text {
    right: 12%;
}



@media (max-width: 768px) {
    .containers {
        height: auto;
        padding-bottom: 120px;
        /* Espacio para la imagen */
    }

    .logo-background {
        max-width: 80%;
    }

    .people-image {
        max-width: 100%;
        bottom: 0px;
    }

    .side-text {
        display: none;
    }

    .left-text,
    .right-text {
        text-align: center;
        margin: 10px 0;
    }
    .text-movil{
        margin-top:5% !important;
    }
}

/* ✅ Responsive extra para pantallas más pequeñas (ej: 480px o menos) */
@media (max-width: 480px) {
    .containers {
        height: 60vh;

    }

    .logo-background {
        max-width: 90%;
    }

    .people-image {
        max-width: 110%;
        bottom: 0px;
    }

}

/* ✅ Responsive ultra-pequeño (por ejemplo celulares antiguos o muy compactos) */
@media (max-width: 360px) {
    .containers {
        padding-top: 30px;
        padding-bottom: 100px;
    }

    .people-image {
        bottom: -25px;
    }
}


/* 
  --------------------------------------------------
  ESTILOS SLIDE PRINCIPAL / CARRUSEL 
  --------------------------------------------------
*/
.carousel-caption {
    position: static;
}

.slide-content {
    position: relative;
}

/* 
   Gradiente de fondo para la fila principal 
   (puede omitir .gradient si se define inline) 
*/
.row.gradient {
    background: linear-gradient(180deg,
            rgba(242, 230, 184, 1) 0%,
            rgba(233, 222, 177, 0.502) 58%,
            rgba(249, 249, 249, 1) 100%) !important;
    position: relative;
    overflow: hidden;
}

/* Contenedor para imágenes dentro de cada slide */
/* ==== CONTAINER GENERAL ==== */
.carousel-item .col-md-4 {
    padding: 0 10px;
}

.carousel-inner {
    padding-top: 2rem;
}

/* ==== CARD DEL TESTIMONIO ==== */
.testimonial-card {
    background-color: #6c6a51;
    /* Fondo igual al de la imagen */
    color: white;
    border-radius: 30px;
    padding: 2rem;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Lato', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Texto del testimonio */
.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.3rem;
    margin-bottom: 0rem;
}

/* Información del cliente */
.testimonial-card .customer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Avatar */
.testimonial-card .customer-info img {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    object-fit: cover;
}

/* Nombre del cliente */
.testimonial-card .customer-info div {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
}


/* ==== CONTROLES DEL CARRUSEL ==== */
.carousel-controls {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

/* Personalización de las flechas */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 25px;
    height: 25px;
    background-size: 100% 100%;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
        min-height: auto;
    }

    .testimonial-card p {
        font-size: 0.9rem;
    }

    .testimonial-card .customer-info {
        gap: 8px;
    }

    .testimonial-card .stars {
        font-size: 0.8rem;
    }
}


/* 
  --------------------------------------------------
  SECCIÓN INTERMEDIA
  --------------------------------------------------
*/

/* Fondo con imagen para la sección "custom-bg-uno-row" */
.custom-bg-uno-row {
    background-color: #fcf9f0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 40vh;
}

/* Título (h4) dentro de .seccion-uno */
.seccion-uno h4 {
    font-size: 2.0rem;
    margin-bottom: 0rem;
    font-family: 'Michael' !important;
    text-align: center;
}

h4 {
    font-size: 1.9rem;
    margin-bottom: 0rem;
    font-family: 'Michael';
    text-align: center;
}

/* Títulos h3 genéricos (servicios) */
h3 {
    margin-top: 40px !important;
    font-size: 1.8rem;
    margin-bottom: 0rem;
    font-family: 'Michael';
    text-align: center;
}

/* Párrafos dentro de .seccion-uno */
.seccion-uno p {
    font-size: 1.1vw;
    font-family: 'Lato';
    line-height: 1.3;
    text-align: center;
    padding: 0 15%;
}

.seccion-uno-about p {
    font-size: 1.1vw;
    font-family: 'Lato';
    line-height: 1.3;
    text-align: center;
    padding: 0 5%;
}

.margin-seccion-uno {
    margin-top: 5%;
    margin-bottom: 40px;
}

@media (min-width: 576px) {
    .seccion-uno-about p {
    font-size: 1.1vw;
    font-family: 'Lato';
    line-height: 1.3;
    text-align: center;
    padding: 0 5%;
}
.seccion-uno p {
    font-size: 1.1vw;
    font-family: 'Lato';
    line-height: 1.3;
    text-align: center;
    padding: 0 15%;
}
}
/* MOVIL */
@media (max-width: 576px) {
    .seccion-uno h4 {
        font-size: 1.5rem;
    }

    .seccion-uno p {
        font-size: 0.9rem;
    }
    .seccion-uno-about p {
        font-size: 0.9rem;
    }

    .margin-seccion-uno {
        margin-top: 13%;
    }
}


.countdown-container {
            display: flex !important;
            justify-content: center !important;
            gap: 20px !important;
            margin-top: 30px !important;
        }

        /* Cada item del countdown */
        .time-item {
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
        }

        /* Caja circular para los números */
        .time-box {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            width: 50px !important;
            height: 50px !important;
            padding: 10px !important;
            border: 2px solid #000 !important;
            border-radius: 50% !important;
            background-color: rgba(255,255,255,0.2) !important;
        }

        /* Número dentro de la caja */
        .time-number {
            font-size: 1.7rem !important;
            font-weight: 700 !important;
            color: #000 !important;
        }

        /* Etiqueta debajo del número */
        .time-label {
            margin-top: 5px !important;
            font-size: 0.9rem !important;
            text-transform: uppercase !important;
            letter-spacing: 1px !important;
            color: #000 !important;
        }


/* 
  --------------------------------------------------
  IMÁGENES DE SERVICIOS (redondeo y bordes)
  --------------------------------------------------
*/

.img-border {
    width: 70%;
    /* o por ejemplo 150px si quieres fijo */
    height: 310px;
    /* más alta que ancha */
    object-fit: cover;
    /* para recortar bien la imagen sin deformarla */
    border-radius: 20px;
}

/* Línea divisoria en columnas (vertical) */
.border-right-col::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 90%;
    width: 2px;
    background-color: #C09355;
}

/* Botón "Ver más" para servicios */
.custom-btn-vermas {
    display: inline-block;
    padding: 3px 35px;
    border: 1px solid #C09355;
    border-radius: 25px;
    background-color: #C09355;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 10%;
}

.custom-btn-vermas:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

/* MOVIL */
@media (max-width: 576px) {
    .img-border {
        margin-top: 0%;
    }
}

@media (max-width: 767.98px) {
    .pt-mobile-500 {
        padding-top: 50px !important;
    }
}


/* 
  --------------------------------------------------
  ESTILOS TESTIMONIOS
  --------------------------------------------------
*/
/* Contenedor principal del carrusel */
#testimonialCarousel {
    position: relative;
    overflow: visible;
}

/* Contenedor de controles */
.carousel-controls {
    position: absolute;
    bottom: -40px;
    /* Ajustar según diseño */
    left: 0;
    transform: none;
    display: flex;
    gap: 15px;
}

/* Botones de navegación */
.carousel-control-prev,
.carousel-control-next {
    position: relative !important;
    /* Forzar posición relativa */
    width: 40px !important;
    height: 40px !important;
    border-radius: 15px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease;
    opacity: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Hover de los botones */
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.4) !important;
}

/* Íconos de los botones */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    width: 1.8rem !important;
    height: 1.8rem !important;
    display: block !important;
    opacity: 1 !important;
}

/* SVG específicos para los iconos */
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") !important;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.carousel-inner {
    height: auto;
}

.custom-slide-btn {
    background-color: #C09355 !important;
    color: white !important;
    text-decoration: none;
    border: none;
    padding: 4px 30px;
    font-family: 'Myriad Pro', sans-serif;
    font-size: 1.1vw;
    border-radius: 20px 0 20px 0;
    transition: all 0.3s ease;
    margin-top: 3%;
    position: relative;
    z-index: 3;
}

.custom-slide-btn:hover {
    background-color: #b2854a !important;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}



/* Tarjeta de testimonio con fondo oscuro y texto blanco */
.testimonial-card {
    background: #757154;
    border-radius: 45px 0 45px 0;
    padding: 40px 20px;
    color: #fff;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* Texto del testimonio (espaciado inferior leve) */
.testimonial-text {
    margin-bottom: 0.5rem;
    font-family: 'Lato', sans-serif;
}


/* Imagen de avatar del usuario (circular) */
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}


/* Texto y estrellas en blanco */
.testimonial-card h6,
.testimonial-card {
    color: #fff;
    font-family: 'Simple Michael';
    font-size: 0.7rem;
}

.rating-stars {
    color: #fff200;
}


/* Ajuste de margen superior para acercar imagen/usuario al texto */
.d-flex.align-items-center.mt-2 {
    margin-top: 0.5rem;
}

/* 
  --------------------------------------------------
  RESERVA CITAS
  --------------------------------------------------
*/
/* Estilos para el formulario de reserva */
.reservation-form .form-group {
    margin-bottom: 0.5rem !important;
}

/* Inputs con solo línea inferior */
.custom-input {
    border: none !important;
    border-bottom: 2px solid #000 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.custom-input:focus {
    box-shadow: none !important;
    border-bottom: 2px solid #000 !important;
}

/* Estilos para el contenedor del ícono (input-group-text) */
.input-group-text {
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid #000 !important;
    padding: 0 5px !important;
}

.input-group-text i {
    color: #000 !important;
}

/* Botón "Reservar ahora" */
.btn-reserve {
    background-color: #000 !important;
    font-family: 'Lato' !important;
    color: #fff !important;
    border: none !important;
    border-radius: 25px 0px !important;
    font-size: 1.1vw !important;
    padding: 5px 20px !important;
    width: 40% !important;
}

.btn-reserve:hover {
    background-color: #333 !important;
}

.custom-input::placeholder {
    font-size: 1.1vw !important;
    font-family: 'Lato', sans-serif !important;
    color: #000 !important;
}

/* Compatibilidad con WebKit (Chrome, Safari) */
.custom-input::-webkit-input-placeholder {
    font-size: 1.1vw !important;
    font-family: 'Lato', sans-serif !important;
    color: #000 !important;
}

/* Compatibilidad con Firefox */
.custom-input:-moz-placeholder {
    font-size: 1.1vw !important;
    font-family: 'Lato', sans-serif !important;
    color: #000 !important;
}

/* Compatibilidad con Internet Explorer */
.custom-input:-ms-input-placeholder {
    font-size: 1.1vw !important;
    font-family: 'Lato', sans-serif !important;
    color: #000 !important;
}

.selector {
    font-size: 1.2vw !important;
    font-family: 'Lato', sans-serif !important;
    color: #000 !important;
}

/* MOVIL */
@media (max-width: 768px) {
    .custom-input::placeholder {
        font-size: 0.8rem !important;
        font-family: 'Lato', sans-serif !important;
        color: #000 !important;
    }

    /* Compatibilidad con WebKit (Chrome, Safari) */
    .custom-input::-webkit-input-placeholder {
        font-size: 0.8rem !important;
        font-family: 'Lato', sans-serif !important;
        color: #000 !important;
    }

    /* Compatibilidad con Firefox */
    .custom-input:-moz-placeholder {
        font-size: 0.8rem !important;
        font-family: 'Lato', sans-serif !important;
        color: #000 !important;
    }

    /* Compatibilidad con Internet Explorer */
    .custom-input:-ms-input-placeholder {
        font-size: 0.8rem !important;
        font-family: 'Lato', sans-serif !important;
        color: #000 !important;
    }

    .selector {
        font-size: 0.8rem !important;
        font-family: 'Lato', sans-serif !important;
        color: #000 !important;
    }

    .btn-reserve {
        font-size: 0.9rem !important;
    }
}



/* 
  --------------------------------------------------
  MEDIA QUERIES UNIFICADAS
  --------------------------------------------------
*/

/* --- Para pantallas de hasta 576px --- */
@media (max-width: 576px) {

    /* Ocultar bordes en móviles y ajustar tamaño imagen */
    .border-right-col::after {
        display: none;
    }

    .img-border {
        width: 150px;
        height: 150px;
        margin-bottom: 1.5rem;
    }

    .col-sm-4:last-child .img-border {
        margin-bottom: 0;
    }
}

/* --- Para pantallas de hasta 768px --- */
@media (max-width: 768px) {

    /* Ajustes en el caption del slide */
    .custom-caption h5 {
        font-size: 1.9rem;
    }

    .custom-caption p {
        font-size: 0.9rem;
        line-height: 1;
    }

    .carousel-indicators {
        top: 10px;
    }

    /* Botón del slide más compacto */
    .custom-slide-btn {
        padding: 6px 20px;
        font-size: 0.9rem;
        margin-top: 15px;
    }

    /* Ajuste del arrow-down */
    .arrow-down {
        width: 30px !important;
        bottom: 20px !important;
    }

    /* Ajustes en botones de testimonio */
    .carousel-controls {
        bottom: -40px;
        left: 20px;
    }

    .carousel-inner {
        padding-bottom: 0px;
        height: auto;
    }

    .testimonial-card {
        min-height: 250px;
        margin: 10px 20px;
    }

    /* Botón "Ver más" de servicios */
    .custom-btn-vermas {
        padding: 6px 25px;
        font-size: 0.9rem;
    }
}

/* --- Para pantallas de hasta 991px --- */
@media (max-width: 991px) {

    /* Ajustes de espaciado en desktop-logo-spacer y navbar-nav */
    .desktop-logo-spacer,
    .desktop-btn-spacer {
        margin: 0 !important;
        min-width: auto !important;
    }

    .navbar-nav {
        width: 100% !important;
        flex-direction: column;
        text-align: center;
    }

    .nav-item {
        padding: 10px 0;
        width: 150px;
        text-align: left;
    }

    .btn-primary {
        margin-top: 15px;
    }

    /* Navbar con sombra reducida en móvil */
    .shadow-nav {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .navbar {
        padding: 0.5rem 1rem;
    }

    /* Ajuste de botón personalizado en pantallas < 992px */
    .custom-btn {
        padding: 8px 20% !important;
        width: 100%;
        margin: 0 auto;
    }
}

/* --- Para pantallas de hasta 1199px --- */
@media (max-width: 1199px) {
    .custom-btn {
        padding: 2px 10% !important;
        font-size: 0.9rem;
        width: 120px;
    }

    .nav-link {
        padding: 0 8px !important;
        font-size: 0.9rem;
    }
}

/* --- Para pantallas de hasta 1399px --- */
@media (max-width: 1399px) {
    .custom-btn {
        padding: 2px 12% !important;
    }

    .nav-link {
        padding: 0 10px !important;
        font-size: 0.95rem;
    }
}

/* --- Para pantallas desde 1200px en adelante --- */
@media (min-width: 1200px) {
    .arrow-down {
        width: 50px !important;
        bottom: 40px !important;
    }
}
/* GENERALES */

/* ESCRITORIO */
@media (min-width: 570px) {
    .tex-headers{
    font-family: 'Michael';
    color: #000;
    font-size: 3rem;
    }
    .bg-containers {
        height: 44vh;
    }
    .bg-dermatologia {
        height: 44vh;
    }
    .text-doctoras{
        color:#C09355;text-align:left
    }
    .doc-container{
    position:relative;
    margin-top: 7%;
}
.container-ana{
    width: 86.4%;position: absolute;right: 0;bottom: 0;
}
.container-carolina{
    width: 86.4%;position: absolute;left: 0;bottom: 0;
}


}
/* MOVIL */

@media (max-width: 570px) {
    .tex-headers{
    font-family: 'Michael';
    color: #000;
    font-size: 2rem;
    }
    
    .bg-containers {
        height: 20vh;
    }
    .bg-dermatologia {
        height: 20vh;
    }
    .text-doctoras{
        color:#C09355;
        margin-top: 10%;
        text-align:center
    }
    .container-ana{
   position: absolute;
    right: 0;
    width: 90%;
            bottom: 0;
}
.container-carolina{
    position: absolute;
    right: 0;
    width: 90%;
            bottom: 0;
}
    .doc-container{
    position:relative;
    margin-top: 15%;
}
}
@media (max-width: 1296px){
  .custom-btnhead{           /* o añade otra clase si lo prefieres */
    display:none !important;
  }
}

/* SOBRE NOSOTROS */

.bg-containers {
    background-image: url('../img/about.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* DERMATOLOGÍA */
.bg-dermatologia {
    background-image: url('../img/dermatologia-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.name {
    color: #C09355;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: bold;
}

.description {
    color: #333;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
}

.education button {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #C09355;
    border-color: #C09355;
    border-radius: 30px;
}

.education button:hover {
    background-color: #C09355;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 5px;
}

.social-icon {
    background-color: #C09355;
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.social-icon:hover {
    background-color: #a3733c;
    transform: scale(1.1);
}

/* DERMATOLOGIA */

.bg-dermatologia {
    background-image: url('../img/dermatologia-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

