/* ================= HERO ================= */

.hero-section {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 60, 80, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 20px auto;
    text-shadow: 0 1px 6px rgba(0,0,0,0.25);
    opacity: 0.95;
}

.hero-section .btn {
    background-color: #C6DA29;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(198,218,41,0.4);
}

.hero-section .btn:hover {
    background-color: #EA7D78;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(234,125,120,0.4);
}

.btn-outline-dark {
    border: 2px solid rgba(255,255,255,0.8) !important;
    color: white !important;
    background: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(4px);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline-dark:hover {
    background: rgba(255,255,255,0.25) !important;
    transform: translateY(-4px);
}


/* ================= SOBRE NOSOTROS ================= */

.about-section {
    background: white;
    text-align: center;
}

.about-section h2 {
    color: #23A0B4;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.about-section p {
    max-width: 800px;
    margin: auto;
    line-height: 1.7;
    color: #555;
}

/* ================= NOSOTROS CARRUSEL ================= */

.about-section .carousel-indicators [data-bs-target] {
    background-color: #23A0B4;
}

#carruselNosotros {
    padding-bottom: 50px;
}

#carruselNosotros .carousel-indicators {
    bottom: -35px;
}

.nosotros-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nosotros-carousel-wrapper .carousel-inner {
    height: 480px;
}

.nosotros-carousel-wrapper .carousel-item {
    height: 100%;
    transition: transform 1s ease-in-out !important;
}

.nosotros-prev,
.nosotros-next {
    position: static !important;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background-color: rgba(35, 160, 180, 0.15);
    color: #23A0B4;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.nosotros-prev:hover,
.nosotros-next:hover {
    background-color: rgba(35, 160, 180, 0.35);
}

.nosotros-card {
    background: white;
    border-radius: 20px;
    padding: 60px 80px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.07);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    height: 100%;
    box-sizing: border-box;
    overflow-y: auto;
}

.nosotros-icon {
    font-size: 3rem;
    color: #23A0B4;
    margin-bottom: 20px;
}

.nosotros-card h3 {
    color: #23A0B4;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.nosotros-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.valores-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.valores-list li {
    display: flex;
    flex-direction: column;
    padding: 0.55rem 0;
    border-bottom: 0.5px solid rgba(0,0,0,0.08);
}

.valores-list li:last-child {
    border-bottom: none;
}

.v-nombre {
    font-size: 0.95rem;
    font-weight: 600;
    color: #23A0B4;
}

.v-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* ================= SERVICIOS ================= */

.services-section {
    background: linear-gradient(to bottom, #ffffff, #F2FBFC);
    padding: 70px 0 50px 0;
}

.services-section h2 {
    text-align: center;
    color: #23A0B4;
    font-weight: 700;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.servicios-carrusel .carousel-inner {
    height: 300px; /* ajusta según tu tarjeta más alta */
}



.servicios-carrusel .carousel-item {
    height: 100%;
    transition: transform 1s ease-in-out !important;
}

.servicios-carrusel .carousel-item .row {
    height: 100%;
}

.team-carousel-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-sizing: border-box;
    overflow-y: auto;
    justify-content: space-between;
}

.team-carousel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(35,160,180,0.15);
}

.team-carousel-card .card-title {
    color: #23A0B4;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.team-carousel-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    flex-grow: 1;
}

.servicios-carrusel .carousel-indicators [data-bs-target] {
    background-color: #23A0B4;
}

.servicios-carrusel {
    position: relative;
    padding: 0 55px;
}

#carruselServiciosPC.carousel .custom-arrow,
#carruselServiciosMovil.carousel .custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px !important;
    height: 42px !important;
    background-color: rgba(35, 160, 180, 0.15) !important;
    border-radius: 50% !important;
    border: none;
    color: #23A0B4 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    z-index: 10;
    /* Elimina el ícono por defecto de Bootstrap */
    background-image: none !important;
}

#carruselServiciosPC.carousel .custom-arrow:hover,
#carruselServiciosMovil.carousel .custom-arrow:hover {
    background-color: rgba(35, 160, 180, 0.35) !important;
}

#carruselServiciosPC.carousel .custom-arrow i,
#carruselServiciosMovil.carousel .custom-arrow i {
    color: #23A0B4 !important;
    font-size: 0.9rem;
}

#carruselServiciosPC.carousel .carousel-control-prev.custom-arrow,
#carruselServiciosMovil.carousel .carousel-control-prev.custom-arrow {
    left: 0;
    right: auto;
}

#carruselServiciosPC.carousel .carousel-control-next.custom-arrow,
#carruselServiciosMovil.carousel .carousel-control-next.custom-arrow {
    right: 0;
    left: auto;
}

#carruselServiciosPC,
#carruselServiciosMovil {
    padding-bottom: 50px;
}

#carruselServiciosPC .carousel-indicators,
#carruselServiciosMovil .carousel-indicators {
    bottom: -35px;
}

/* ================= EQUIPO ================= */
.team-section {
    background: #F2FBFC;
    padding: 80px 0 60px 0;
}

.team-section h2 {
    text-align: center;
    color: #23A0B4;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.team-carousel-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-carousel-card:hover {
    transform: translateY(-8px);
}

.team-carousel-card img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-carousel-card h4 {
    color: #23A0B4;
    font-weight: 700;
    margin-bottom: 6px;
}

.team-role {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: block;
}

.team-carousel-card p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    flex-grow: 1;
}

.btn-doctoralia {
    margin-top: 16px;
    background: linear-gradient(135deg, #23A0B4, #9DCFD1);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s ease;
    display: inline-block;
}

.btn-doctoralia:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 8px 20px rgba(35,160,180,0.35);
}

#carruselEquipoPC .carousel-inner,
#carruselEquipoMovil .carousel-inner {
    height: 480px;
}

#carruselEquipoPC .carousel-item,
#carruselEquipoMovil .carousel-item {
    height: 100%;
    transition: transform 1s ease-in-out !important;
}

#carruselEquipoPC .carousel-item .row,
#carruselEquipoMovil .carousel-item .row {
    height: 100%;
}

#carruselEquipoPC .carousel-indicators [data-bs-target],
#carruselEquipoMovil .carousel-indicators [data-bs-target] {
    background-color: #23A0B4;
}

#carruselEquipoPC .carousel-indicators,
#carruselEquipoMovil .carousel-indicators {
    bottom: -35px;
}

#carruselEquipoPC,
#carruselEquipoMovil {
    padding-bottom: 50px;
}

/* ================= EQUIPO CARRUSEL ================= */

.team-section .carousel-indicators [data-bs-target] {
    background-color: #23A0B4;
}

.team-section .carousel-control-prev-icon,
.team-section .carousel-control-next-icon {
    filter: brightness(0); /* Negro para modo claro */
}

/* Modo oscuro */
.dark-mode .team-section .carousel-control-prev-icon,
.dark-mode .team-section .carousel-control-next-icon {
    filter: brightness(10); /* Blanco para modo oscuro */
}

.team-section .carousel-control-prev,
.team-section .carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(35, 160, 180, 0.15);
    border-radius: 50%;
    border: 2px solid rgba(35,160,180,0.3);
    transition: 0.3s ease;
}

.team-section .carousel-control-prev:hover,
.team-section .carousel-control-next:hover {
    background: rgba(35, 160, 180, 0.35);
}

.team-section .carousel-control-prev {
    left: 0px;
}

.team-section .carousel-control-next {
    right: 0px;
}

.team-carousel-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px 35px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    text-align: center;
    width: 100%;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s ease;
}

.team-carousel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(35,160,180,0.15);
}

.team-carousel-card .btn-doctoralia {
    margin-top: auto;
}

.team-photo-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #23A0B4, #9DCFD1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    overflow: hidden;
    border: 4px solid rgba(35,160,180,0.2);
}

.team-photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-carousel-card h4 {
    color: #222;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.team-role {
    color: #23A0B4;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.team-carousel-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.btn-doctoralia {
    background: linear-gradient(135deg, #23A0B4, #9DCFD1);
    color: white;
    padding: 11px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.btn-doctoralia:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 8px 20px rgba(35,160,180,0.35);
}

/* ================= CONTACTO ================= */

.contact-section {
    background: linear-gradient(135deg, #E8F6F8, #ffffff);
}

.contact-section h3 {
    color: #23A0B4;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-section .card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.contact-section .form-control {
    border-radius: 12px;
    border: 1.5px solid #dde;
    padding: 12px 16px;
    transition: 0.3s ease;
}

.contact-section .form-control:focus {
    border-color: #23A0B4;
    box-shadow: 0 0 0 3px rgba(35,160,180,0.15);
}

.contact-section button {
    background: linear-gradient(135deg, #23A0B4, #1b7e8d);
    border: none;
    border-radius: 25px;
    padding: 12px;
    font-weight: 600;
    transition: 0.3s ease;
    color: white;
}

.contact-section button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(35,160,180,0.35);
}

/* ================= RESEÑAS ================= */

.reviews-section {
    background: white;
    text-align: center;
    padding: 80px 0 60px 0;
}

.reviews-section h2 {
    color: #23A0B4;
    font-weight: 700;
    font-size: 2.2rem;
}

.reviews-subtitle {
    color: #888;
    font-size: 0.95rem;
    margin-top: 8px;
}

#carruselResenas .carousel-inner {
    height: 320px;
}

#carruselResenas .carousel-item {
    height: 100%;
    transition: transform 1s ease-in-out !important;
}

.review-card {
    background: #F8FCFD;
    border-radius: 20px;
    padding: 50px 60px;
    max-width: 750px;
    box-shadow: 0 10px 30px rgba(35,160,180,0.08);
    border: 1px solid rgba(35,160,180,0.1);
    margin: 0 auto;
    height: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-stars {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #23A0B4, #9DCFD1);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    color: #333;
    font-size: 1rem;
}

.review-author span {
    color: #999;
    font-size: 0.85rem;
}

#carruselResenas .carousel-indicators [data-bs-target] {
    background-color: #23A0B4;
}

.btn-ver-resenas {
    background: linear-gradient(135deg, #23A0B4, #9DCFD1);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-block;
}

.btn-ver-resenas:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 8px 20px rgba(35,160,180,0.35);
}

/* ================= FLECHAS COMPARTIDAS ================= */
.equipo-prev, .equipo-next,
.resenas-prev, .resenas-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px !important;
    height: 42px !important;
    background-color: rgba(35, 160, 180, 0.15) !important;
    border-radius: 50%;
    border: none;
    color: #23A0B4 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    background-image: none !important;
    z-index: 10;
    cursor: pointer;
}

/* Flechas equipo — separadas */
#carruselEquipoPC {
    padding: 0 60px;
}


.equipo-prev:hover, .equipo-next:hover,
.resenas-prev:hover, .resenas-next:hover {
    background-color: rgba(35, 160, 180, 0.35) !important;
}

.equipo-prev i, .equipo-next i,
.resenas-prev i, .resenas-next i {
    color: #23A0B4 !important;
    font-size: 0.9rem;
}

.equipo-prev, .resenas-prev { left: 0; }
.equipo-next, .resenas-next { right: 0; }

#carruselEquipoPC, #carruselEquipoMovil, #carruselResenas {
    position: relative;
    padding: 0 55px;
}


/* ================= DARK MODE LANDING ================= */

body.dark-mode .hero-overlay {
    background: rgba(0, 0, 0, 0.75);
}

/* SOBRE NOSOTROS */
body.dark-mode .about-section {
    background: #1e1e1e;
}

body.dark-mode .about-section h2 {
    color: #9DCFD1;
}

body.dark-mode .about-section p {
    color: #aaa;
}

/* NOSOTROS CARDS */
body.dark-mode .nosotros-card {
    background: #2a2a2a;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

body.dark-mode .nosotros-card h3 {
    color: #9DCFD1;
}

body.dark-mode .nosotros-card p {
    color: #bbb;
}

body.dark-mode .valores-list li {
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
}

body.dark-mode .v-desc {
    color: #bbb;
}

/* SERVICIOS */
body.dark-mode .services-section {
    background: linear-gradient(to bottom, #1a1a1a, #222);
}

body.dark-mode .services-section h2 {
    color: #9DCFD1;
}

body.dark-mode .team-carousel-card {
    background: #2a2a2a;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    color: #e0e0e0;
}

body.dark-mode .team-carousel-card p {
    color: #bbb;
}

/* EQUIPO */
body.dark-mode .team-section {
    background: #1a1a1a;
}

body.dark-mode .team-section h2 {
    color: #9DCFD1;
}

body.dark-mode .team-carousel-card h4 {
    color: #e0e0e0;
}

body.dark-mode .team-role {
    color: #9DCFD1;
}

body.dark-mode .team-carousel-card p {
    color: #bbb;
}

/* CONTACTO */
body.dark-mode .contact-section {
    background: linear-gradient(135deg, #1a1a1a, #222);
}

body.dark-mode .contact-section .card {
    background: #2a2a2a;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    color: #e0e0e0;
}

body.dark-mode .contact-section h3 {
    color: #9DCFD1;
}

body.dark-mode .contact-section .form-control {
    background: #333;
    border-color: #444;
    color: #e0e0e0;
}

body.dark-mode .contact-section .form-control::placeholder {
    color: #888;
}

/* RESEÑAS */
body.dark-mode .reviews-section {
    background: #1e1e1e;
}

body.dark-mode .reviews-section h2 {
    color: #9DCFD1;
}

body.dark-mode .reviews-subtitle {
    color: #aaa;
}

body.dark-mode .review-card {
    background: #2a2a2a;
    border-color: rgba(157,207,209,0.15);
}

body.dark-mode .review-text {
    color: #bbb;
}

body.dark-mode .review-author strong {
    color: #e0e0e0;
}

body.dark-mode .review-author span {
    color: #999;
}

/* FLECHAS / CONTROLES */
body.dark-mode .equipo-prev,
body.dark-mode .equipo-next,
body.dark-mode .resenas-prev,
body.dark-mode .resenas-next {
    background-color: rgba(157, 207, 209, 0.15) !important;
    border-color: rgba(157,207,209,0.3);
}

body.dark-mode .equipo-prev:hover,
body.dark-mode .equipo-next:hover,
body.dark-mode .resenas-prev:hover,
body.dark-mode .resenas-next:hover {
    background-color: rgba(157, 207, 209, 0.35) !important;
}

/* ================= RESPONSIVE ================= */

/* 📱 TABLETS */
@media (max-width: 992px) {

    /* HERO */
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1rem;
        max-width: 90%;
    }

    /* NOSOTROS */
    .nosotros-carousel-wrapper {
        flex-direction: column;
        position: relative;
    }

    .nosotros-carousel-wrapper .carousel-inner {
        min-height: 420px; /* 🔥 evita brincos */
    }

    .nosotros-card {
        padding: 40px 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* SERVICIOS */
    .servicios-carrusel {
        padding: 0 30px;
        position: relative;
    }

    .servicios-carrusel .carousel-inner {
        height: auto;
        min-height: 380px; /* 🔥 estabilidad */
    }

    /* EQUIPO */
    #carruselEquipoPC .carousel-inner {
        height: auto;
        min-height: 420px;
    }

    .team-carousel-card {
        padding: 25px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* CONTACTO */
    .contact-section .card {
        padding: 20px;
    }

    /* 🔥 FLECHAS SIEMPRE CENTRADAS */
    .nosotros-prev,
    .nosotros-next,
    .custom-arrow {
        top: 50% !important;
        transform: translateY(-50%);
    }
}

/* 📱 MÓVIL */
@media (max-width: 576px) {

    /* HERO */
    .hero-section {
        min-height: 80vh;
        padding: 0 15px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-section p {
        font-size: 0.95rem;
    }

    .hero-section .btn,
    .btn-outline-dark {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }

    /* NOSOTROS */
    .nosotros-carousel-wrapper .carousel-inner {
        height: auto;
        min-height: 360px; /* 🔥 clave */
    }

    .nosotros-card {
        padding: 25px 20px;
        height: 100%;
    }

    .nosotros-card h3 {
        font-size: 1.4rem;
    }

    .nosotros-card p {
        font-size: 0.95rem;
        max-height: 140px; /* 🔥 evita que crezca infinito */
        overflow-y: auto;
    }

    /* SERVICIOS */
    #carruselServiciosPC {
        display: none !important;
    }

    #carruselServiciosMovil {
        display: block !important;
    }

    .servicios-carrusel .carousel-inner {
        min-height: 340px;
    }

    /* EQUIPO */
    #carruselEquipoPC {
        display: none !important;
    }

    #carruselEquipoMovil {
        display: block !important;
    }

    #carruselEquipoMovil .carousel-inner {
        min-height: 360px;
    }

    /* TARJETAS */
    .team-carousel-card {
        padding: 20px;
        height: 100%;
    }

    .team-carousel-card img {
        width: 100px;
        height: 100px;
    }

    /* RESEÑAS */
    .review-card {
        padding: 25px 20px;
        min-height: 260px;
    }

    .review-text {
        font-size: 0.95rem;
        max-height: 120px;
        overflow-y: auto;
    }

    /* 🔥 FLECHAS FIJAS (NO SE MUEVEN) */
    .equipo-prev, .equipo-next,
    .resenas-prev, .resenas-next,
    .nosotros-prev, .nosotros-next,
    .custom-arrow {

        width: 36px !important;
        height: 36px !important;

        top: 50% !important;
        transform: translateY(-50%);
        z-index: 20;
    }

    .nosotros-prev,
    .equipo-prev,
    .resenas-prev {
        left: 5px;
    }

    .nosotros-next,
    .equipo-next,
    .resenas-next {
        right: 5px;
    }
}