:root {
    --colorNeutro: #f5e7d6;
    --colorPrincipal1: #F49C6C;
    --colorPrincipal2: #59B5D4;
    --colorPrincipal3: #FED56C;
    --colorPrincipal4: #67BD9D;
    --colorPrincipal5: #EF787B;
    --colorOscuro: #181818;
    --colorGris: #4E4E4E;
}

body {
    background-color: var(--colorNeutro);
    color: var(--colorNegro);
}

nav {
    z-index: 1000;
}

.bg-blanco {
    background-color: var(--colorNeutro);
}

.navbar-brand {
    color: var(--colorPrincipal1);
    width: 120px;
}

.nav-link {
    color: var(--colorPrincipal2);
}

.navbar-nav .nav-link.active {
    color: var(--colorPrincipal2);
}

.nav-link:hover {
    color: var(--colorPrincipal4);
}

.navbar-toggler {
    background-color: var(--colorNeutro);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
}

.heroText h6 {
    color: var(--colorGris);
    font-size: 26px;
}

/* Clases de utilidad para textos */
.texto-azul {
    color: var(--colorPrincipal2) !important;
}

.texto-verde {
    color: var(--colorPrincipal4) !important;
}

.texto-rojo {
    color: var(--colorPrincipal5) !important;
}

.texto-naranja {
    color: var(--colorPrincipal1) !important;
}

.texto-amarillo {
    color: var(--colorPrincipal3) !important;
}

.texto-gris {
    color: var(--colorGris) !important;
}

/*/* Clases de utilidad para textos */

.ms-10 {
    margin-left: 10vw;
}

.btn-principal {
    background-color: var(--colorPrincipal5);
    padding: 5px 40px;
    text-decoration: none;
    border-radius: 50px;
    text-align: center;
    color: var(--colorOscuro);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all .3s ease-out;
}

.btn-principal:hover {
    background-color: var(--colorPrincipal3);
    color: var(--colorBlanco);
}

.btn-outline-principal {
    border: 1px solid var(--colorPrincipal3);
    padding: 5px 40px;
    text-decoration: none;
    border-radius: 50px;
    text-align: center;
    color: var(--colorPrincipal1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-out;
    gap: 10px;
}

.btn-outline-principal:hover {
    border: 1px solid var(--colorPrincipal4);
    color: var(--colorPrincipal4);
}

.btnXS {
    padding: 5px 10px;
}

.bg-principal {
    background-color: var(--colorNeutro);
}

.bg-secundario {
    background-color: var(--colorPrincipal3);
}

.texto-principal {
    color: var(--colorPrincipal4);
}

.texto-secundario {
    color: var(--colorPrincipal5);
}

.border-principal {
    border: 1px solid var(--colorPrincipal1);
}

.contenedorRRSS a {
    color: var(--colorPrincipal3);
}

.sectionProyectoV2 {
    padding: 0 60px;
}

.titulosProyectos {
    padding: 20px;
    padding-top: 40px;
    width: 20%;
}

.imgProyectos {
    width: 80%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding-bottom: 20px;
}

.contenedorImgProyectos img {
    width: 150px;
}

.NuestrasAreas h1 {
    color: var(--colorPrincipal4);
}

.HeroText h1 {
    color: var(--colorPrincipal4);
    font-size: 26px;
}

footer ul {
    list-style: none;
}

footer a {
    text-decoration: none;
    color: var(--colorBlanco);
    transition: color .3s ease-out;
}

footer ul a:hover {
    color: var(--colorPrincipal3);
}

footer ul i {
    color: var(--colorPrincipal4);
    transition: color .3s ease-out;
}

footer ul i:hover {
    color: var(--colorPrincipal1);
}

footer span {
    font-weight: 500;
}

.altoFalso {
    padding-top: 200px;
}

/* Botón flotante de WhatsApp */
.btn-flotante-whatsapp {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    /* Color oficial de WhatsApp */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-flotante-whatsapp:hover {
    background-color: #128C7E;
    /* Verde más oscuro al hover */
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    color: white;
}

.btn-agenda {
    display: inline-block;
    background-color: var(--colorPrincipal2);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    /* Bordes redondeados */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-agenda:hover {
    background-color: var(--colorPrincipal4);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Para móviles, un poco más pequeño si es necesario */
@media (max-width: 768px) {
    .btn-flotante-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px;
        right: 15px;
    }
}

/* PANTALLAS MEDIANAS */
@media (min-width: 768px) {
    .heroText h1 {
        font-size: 50px;
    }

    .sectionProyectoV2 {
        padding: 0;
    }

    .contenedorImgProyectos img {
        width: 200px;
    }

}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
}

.item {
    background-color: #444;
    color: #fff;
    font-size: 150%;
}

.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

.item-0 {
    grid-column: 1;
    grid-row: 1;
}

.item-1 {
    grid-column: 2 / span 2;
    grid-row: 1;
}

.item-2 {
    grid-column: 1;
    grid-row: 2;
}

.item-3 {
    grid-column: 2;
    grid-row: 2;
}

.item-4 {
    grid-column: 1 / span 2;
    grid-row: 3;
}

.item-5 {
    grid-column: 3;
    grid-row: 2 / span 2;
}

.ajustarImg {
    width: 100%;
}

/* PANTALLAS GRANDES */
@media (min-width: 992px) {
    .heroText h1 {
        font-size: 100px;
    }

    .grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 8px;
    }

    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: block;
    }

    .item-0 {
        grid-column: 1;
        grid-row: 1;
    }

    .item-1 {
        grid-column: 2 / span 2;
        grid-row: 1;
    }

    .item-2 {
        grid-column: 1;
        grid-row: 2;
    }

    .item-3 {
        grid-column: 2;
        grid-row: 2;
    }

    .item-4 {
        grid-column: 1 / span 2;
        grid-row: 3;
    }

    .item-5 {
        grid-column: 3;
        grid-row: 2 / span 2;
    }

    .contenedorImgProyectos img {
        width: 250px;
    }
}