.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
}

h2 {
    font-family: "Roboto", sans-serif;
}

/* Justificar todos los párrafos */
p {
    text-align: justify;
}

/* Estilo para el navbar */
/* Estilo para el navbar transparente */
.navbar-transparent {
    background-color: transparent !important;
    backdrop-filter: blur(5px);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

/* Asegurar legibilidad del texto y logo */
.navbar-brand,
.nav-link,
.btn-language-toggle {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);

}

/* Estilo para los enlaces en hover y active */
.nav-link:hover,
.nav-link.active {
    font-weight: 700;
    color: #f8f9fa !important;
}

/* Botón hamburguesa */
.navbar-toggler {
    border: none;
    padding: 5px;
    background-color: rgba(82, 175, 164, 0.3);

}

/* Icono del toggler (líneas blancas) */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Estilos para el dropdown */
.dropdown-menu {
    background-color: #52AFA4;
    opacity: 80%;
    border: solid 1px white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.dropdown-item {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    /* Mantener sombra del texto */
}

.dropdown-item:hover,
.dropdown-item:focus {
    font-weight: 700;
    /* Igual que nav-link en hover */
    color: #f8f9fa !important;
    /* Igual que nav-link en hover */
    background-color: transparent;
    /* Evitar cambio de fondo */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    /* Mantener sombra del texto */
}

/* Ajustes para móvil */
@media (max-width: 768px) {
    .dropdown-menu {
        width: 100%;

    }
}

/* Botón de idioma */
.btn-language-toggle {
    background-color: rgba(82, 175, 164, 0.3);
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 0.9rem;
    padding: 5px 10px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-language-toggle:hover {
    background-color: rgba(82, 175, 164, 0.5);
    color: #f8f9fa;
}

/* Menú colapsado en móviles */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: rgba(82, 175, 164, 0.9);
        padding: 10px;
        border-radius: 5px;
    }

    .nav-link,
    .btn-language-toggle {
        text-align: center;
        width: 100%;
        margin: 5px 0;
    }
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .navbar-brand img {
        width: 70px;
        /* Reducir tamaño del logo (original: 90px) */
        height: 50px;
        /* Reducir altura (original: 70px) */
    }

    s .navbar-brand span {
        font-size: 0.8rem;
        /* Reducir tamaño del texto (original depende de h1) */
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        gap: 5px;
        /* Reducir espacio entre logo y texto */
        margin-right: 10px;
        /* Asegurar espacio para el toggler */
    }

    .navbar-toggler {
        margin-left: auto;
        /* Forzar el botón hamburguesa a la derecha */
    }

    .container {
        flex-wrap: nowrap;
        /* Evitar que los elementos se envuelvan */
    }
}

/* Aumentar opacidad del overlay del carrusel para legibilidad */
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.btn-custom {
    background-color: #52AFA4;
    border-radius: 25px;
    color: white;
    padding: 20px;
    margin-top: 20px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}

.btn-custom:hover {
    background-color: #274B61;
    color: white;

}

section.contenedor.bg-custom,
section.cards.bg-custom,
.team-section.bg-custom {
    background-color: #274b61;
}



.contenedor p {
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.contenedor i {
    font-size: 40px;
    background-color: #274B61;
    padding: 5px;
}

/* Contenedor del video para móviles */
.mobile-video-container {
    position: relative;
    width: 100%;
    padding-top: 177.78%;
    display: none;

}

/* Mostrar video solo en móviles */
@media (max-width: 991px) {
    .mobile-video-container {
        display: block !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 58%;
    transform: translateY(-50%);
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-size: 100% 100%;

}

.carousel-control-prev {
    left: 50px;

}

.carousel-control-next {
    right: 50px;

}

/* Video */
.carousel-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Carrusel solo para escritorio */
.carousel-desktop {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.carousel-proyecto1 {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
}


.carousel-proyecto1 .carousel-item {
    padding-top: 35%;

}


.carousel-proyecto1 .carousel-img {
    max-width: 100%;

    margin-left: auto;
    margin-right: auto;
}

/* Ajustes para móviles */
@media (max-width: 991px) {
    .carousel-proyecto1 .carousel-item {
        padding-top: 75%;

    }
}

/* Ocultar carrusel en móviles */
@media (max-width: 991px) {
    .carousel-desktop {
        display: none !important;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        display: none;
    }
}

.carousel-inner {
    position: relative;
    width: 100%;
}

.carousel-item {
    position: relative;
    width: 100%;
    padding-top: 56.25%;

}



.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.texto-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
    text-align: center;
    width: 90%;
}

.texto-overlay h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 50px;
    white-space: nowrap;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.texto-overlay-proyectos {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
    text-align: center;
    width: 90%;
}

.texto-overlay-proyectos h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 40px;
    white-space: nowrap;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


.contenido-proyecto1 {
    background-color: #f8f9fa;
}

.proyecto-1 img {
    border: 3px solid #52AFA4;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .proyecto-1 {
        flex-direction: column;
        align-items: center;

    }

    .proyecto-1 img {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .contenido-proyecto1 {
        padding-left: 15px;
        padding-right: 15px;

    }

    .contenido-proyecto1 h2 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 991px) {
    .texto-overlay h3 {
        font-size: 30px;
        white-space: normal;
    }

    .texto-overlay-proyectos h3 {
        font-size: 30px;
        white-space: normal;
    }
}

body {
    background-color: #000;
}

/* Contadores */
.counter-section {
    padding: 150px 0;
    text-align: center;
    background-color: #f8f9fa;
    min-height: 200px;
}

.counter {
    font-size: 3rem;
    font-weight: bold;
    color: #274B61;
}

.counter-label {
    font-size: 1.2rem;
    color: #274B61;
}

@media (max-width: 576px) {
    .carousel-logo {
        width: 80px;
        height: 80px;
    }

    .texto-overlay h3 {
        font-size: 24px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .carousel-logo {
        width: 120px;
        height: 120px;
    }

    .texto-overlay h3 {
        font-size: 36px;
    }
}

.carousel-logo {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
}

/* Team */

.team-section.bg-custom {
    background-color: #52AFA4;
}

.team-member {
    text-align: center;
    margin-bottom: 15px;
}

.team-img {
    margin-top: 15px;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 2px solid #ffffff;
    transition: transform 0.3s ease;
}

.team-img:hover {
    transform: scale(1.1);
}

.team-member h5 {
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1rem;
}

/* Ajustes para la sección de equipo en mobile */
@media (max-width: 768px) {
    .team-img {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .team-img:hover {
        transform: scale(1.1) translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .team-img {
        width: 130px;
        height: 130px;
    }
}



/* Estilos para las imágenes de proyectos en las tarjetas */
.proyecto-img {
    transition: transform 0.2s;

}

.proyecto-img:hover {
    transform: scale(1.05);
    cursor: pointer;

}

/* Ajustes para móvil */
@media (max-width: 768px) {
    .proyecto-img {
        max-height: 200px;
        object-fit: cover;

    }
}

.projects-section {
    background-color: #f8f9fa;
}

.projects-section h2 {
    color: #274B61;
    margin-bottom: 1rem;
}

.projects-section h5 {
    color: #274B61;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 1rem;
}

.projects-section p {
    color: #274B61;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.projects-section .btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-color: #274B61;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 80%;
}

.projects-section .btn:hover {
    background-color: #e0e0e0;
    color: #0d6d7d;
}

@media (max-width: 576px) {
    .projects-section h3 {
        font-size: 1.25rem;
    }

    .projects-section p {
        font-size: 0.9rem;
    }

    .projects-section .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .projects-section h3 {
        font-size: 1.35rem;
    }
}

/* Frase con imagen de fondo */
.quote-section {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.2);
}

.content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 20px 30px;
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.quote-text {
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
}

@media (max-width: 576px) {
    .quote-section {
        min-height: 300px;
    }

    .quote-text {
        font-size: 1.5rem;
    }

    .content-overlay {
        padding: 15px 20px;
        width: 95%;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .quote-section {
        min-height: 400px;
    }

    .quote-text {
        font-size: 1.75rem;
    }
}

/* Sección alianzas */
.ally-carousel {
    position: relative;
    width: 100%;
    overflow: visible;
    touch-action: pan-y pinch-zoom;
    padding-bottom: 50px;
}

#alianzas.bg-custom {
    background-color: #274B61;
}

.ally-carousel .carousel-inner {
    width: 100%;
}

.ally-carousel .carousel-item {
    padding-top: 0;
    position: relative;
}

.ally-carousel .carousel-item::before {
    content: none;
}

.ally-carousel .ally-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border: 3px solid #ffffff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.ally-carousel .ally-img:hover {
    transform: scale(1.1);
}

.ally-carousel .ally-member {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    margin: 0;
}

.ally-carousel .row {
    flex-wrap: nowrap;
    margin: 0;
    gap: 0;
}

.desktop-carousel .carousel-item:last-child .row {
    justify-content: center;
}

.ally-carousel .carousel-control-prev,
.ally-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 45%;
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: background-color 0.3s ease;
}

.ally-carousel .carousel-control-prev:hover,
.ally-carousel .carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.ally-carousel .carousel-control-prev {
    left: 20px;
}

.ally-carousel .carousel-control-next {
    right: 20px;
}

.ally-carousel .carousel-indicators {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.ally-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.ally-carousel .carousel-indicators .active {
    background-color: #ffffff;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .ally-carousel .ally-img {
        width: 120px;
        height: 120px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    }

    .ally-carousel .ally-img:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        filter: brightness(1.1);
    }

    .ally-carousel .ally-member {
        padding: 5px;
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }

    .ally-carousel .carousel-control-prev,
    .ally-carousel .carousel-control-next {
        display: none;
    }

    /* Ajuste para el cuarto slide en mobile (2 logos) */
    .mobile-carousel .carousel-item:last-child .ally-member {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 5px;
    }
}

.ally-carousel .carousel-indicators {
    bottom: -5px;
}

.ally-carousel .carousel-indicators button {
    width: 8px;
    height: 8px;
    margin: 0 4px;
}

.desktop-only {
    display: none;
}

@media (max-width: 576px) {
    .ally-carousel .ally-img {
        width: 100px;
        height: 100px;
    }

    .ally-carousel .ally-member {
        flex: 0 0 33.33%;
        max-width: 33.33%;
        padding-top: 15px;
        padding-bottom: 15px;
        margin: 0;
    }


    .mobile-carousel .carousel-item:last-child .ally-member {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 10px;
    }

    .ally-carousel .col-sm-6 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
        padding: 0;
    }
}


/* Sección Noticias */
.news {
    background-color: #52AFA4;
    color: #274B61;

}

.news h2 {
    color: #ffffff;
}

.news-card {
    background-color: #ffffff;
    border-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: #000;
    color: #274b61;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}



.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.news-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.news-card .card-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.news-card .btn-primary {
    background-color: #274B61;
    border: none;
    align-items: center;
    text-align: center;
}

.news-card .btn-primary:hover {
    background-color: #52AFA4;
}

.news-card .card-footer {
    background-color: transparent;
    border-top: none;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsividad */
@media (max-width: 768px) {
    .news-card .card-title {
        font-size: 1.1rem;
    }

    .news-card .card-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .news-card {
        margin-bottom: 1.5rem;
    }

    .news-card .btn-primary:hover {
        background-color: #274B61;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);

    }
}

.contact-section {
    min-height: 600px;
    position: relative;
}

.contact-bg-img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.contact-overlay {
    background: rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.contact-section h2 {
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.contact-logo {
    width: 400px;
    height: 400px;
    object-fit: contain;
    margin-bottom: 20px;
}

.contact-links {
    padding: 0;
}

.contact-links li {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
}

.contact-links a {
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.contact-links a:hover {
    font-weight: 700;
}

.contact-links i {
    color: #ffffff;
    font-size: 1.5rem;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #52AFA4;
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.contact-links a:hover i {
    color: #f8f9fa;
}

.contact-links a:hover .icon-circle {
    background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 576px) {
    .contact-logo {
        width: 120px;
        height: 120px;
    }

    .contact-links li {
        font-size: 1rem;
        justify-content: center;
    }

    .contact-links i {
        font-size: 1.2rem;
    }

    .icon-circle {
        width: 30px;
        height: 30px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .contact-logo {
        width: 200px;
        height: 200px;
    }

    .contact-links i {
        font-size: 1.3rem;
    }

    .icon-circle {
        width: 35px;
        height: 35px;
    }
}

/* Sección Footer */
.footer-section {
    background-color: #52AFA4;
    font-family: "Roboto", sans-serif;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-section .d-flex {
    text-align: center;
}

.footer-section p {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

@media (max-width: 576px) {
    .footer-section p {
        font-size: 0.9rem;
        text-align: center;
    }

    .footer-section {
        align-items: center;
    }
}

.contenido-proyecto1 {
    color: #274b61;
}

/* Contacto */

.contact-section {
    min-height: 600px;
    position: relative;
}

.contact-bg-img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1
}

.call-to-action h2 {
    color: #274b61;
    margin: 20px;
    font-size: 600;
}

.contact-links-1 {
    margin: 3%;
}

.contact-links-1 a {
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.contact-links-1 i {
    color: #ffffff;
    font-size: 2rem;
}

.icon-circle-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #274B61;
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.contact-links-1 a:hover i {
    color: #52AFA4;
}

@media (max-width: 576px) {


    .contact-links-1 li {
        font-size: 1rem;
        justify-content: center;
    }

    .contact-links-1 i {
        font-size: 1.2rem;
    }

    .icon-circle-1 {
        width: 30px;
        height: 30px;
    }
}

/* Botón Home flotante visible solo en mobile */
.floating-home-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #52AFA4;
    color: white;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s;
}

.floating-home-btn:hover {
    background-color: #274B61;

}

.floating-home-btn svg {
    width: 24px;
    height: 24px;
}

/* Se oculta el botón en pantallas grandes */
@media (min-width: 992px) {
    .floating-home-btn {
        display: none;
    }
}

.custom-container {
    max-width: 1232px;

    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;

}