.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background-color: #ff8400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
    z-index: 9999;
}

.floating-button img {
    width: 50%;
    height: auto;
}

.floating-button:hover {
    transform: scale(1.15);
}

.large-text-h3 {
    font-size: 1.5rem;
}

.large-text-a {
    font-size: 1rem;
}

@media (min-width: 768px) {
    .large-text-h3 {
        font-size: 1.5rem;
    }

    .large-text-a {
        font-size: 1rem;
    }
    .d-flex-desktop {
        display: flex !important;
    }
}

@media (max-width: 1024px) {
    .logo-mobile-img {
        width: 50% !important;
    }
}

@media (min-width: 1200px) {
    .large-text-h3 {
        font-size: 2.5rem;
    }

    .large-text-a {
        font-size: 1.3rem;
    }
}

@media (min-width: 1300px) {
    .large-text-h3 {
        font-size: 2.8rem;
    }

    .large-text-a {
        font-size: 1.4rem;
    }
}

@media (min-width: 1400px) {
    .large-text-h3 {
        font-size: 3rem;
    }

    .large-text-a {
        font-size: 1.5rem;
    }
}

@media (min-width: 1600px) {
    .large-text-h3 {
        font-size: 3.5rem;
    }

    .large-text-a {
        font-size: 2rem;
    }
}

.text-justify {
    text-align: justify;
}

@media (min-width: 992px) {
    .mt-neg-100 {
        margin-top: -100px;
    }

    .mt-neg-150 {
        margin-top: -150px;
    }
}

@media (max-width: 768px) {
	.titulo-principal {
		font-size: 2.5rem !important;
	}
    .servicios-title {
        font-size: 20px !important;
        white-space: pre-line;
    }
    .testimonial-title {
        font-size: 26px !important;
    }
    .width-mobile {
        width: 100%;
    }
    .fundacion-title {
        font-size: 18px !important;
    }

    .project-contents .project-image {
        position: relative !important; 
    }

    .project-contents .project-details {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        padding: 16px !important;
        background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0)) !important; 
        z-index: 2 !important;
        display: flex !important;
        /* flex-direction: column !important; */
        gap: 12px !important;
        color: #fff !important; 
    }

    .project-contents .project-details li span {
        color: #fff !important;
    }
}

.svg-icon {
    width: 35px;
    height: 22px;
    min-width: 35px;
    min-height: 22px;
    flex-shrink: 0;
}

.color-white {
    color: white;
}

/* Nuevo botón de contacto */

#Contacto {
    position: fixed;
    bottom: 5%;
    right: -8em;
    display: flex;
    align-items: center;
    z-index: 9999;
}

.float-left {
    float: left;
}

.botonContacto {
    background-color: #ff8400;
    color: white;
    padding: 2em 2em;
    height: 1em;
    width: 1em;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
}

.botonContacto:before, .botonContacto:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ff8400;
    padding: 2em 2em;
    height: 1em;
    width: 1em;
    border-radius: 100%;
    opacity: 1;
}

.botonContacto:before {
    animation: pulse 1.5s ease-out infinite;
}

.botonContacto:after {
    animation: pulse 1.5s ease-out .4s infinite;
}

.botonContactoIcono {
    animation: shake 5s ease-in-out 0s infinite;
}

.listadoContacto {
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

#Contacto:hover .botonContacto {
    transform: translateX(-9em);
}

#Contacto:hover .listadoContacto {
    opacity: 1;
    transform: translateX(-9em);
}

.botonWhats i:first-child {
    color: #4fce5d;
}

.botonWhats i:last-child {
    color: white;
}

.botonLinkedin i:first-child {
    color: #006192;
}

.botonLinkedin i:last-child {
    color: white;
}

.botonMail i:first-child {
    color: #B23121;
}

.botonMail i:last-child {
    color: white;
}

@keyframes shake {
    2%, 22% {
        transform: translateX(-1px);
    }

    5%, 20% {
        transform: translateX(2px);
    }

    7%, 12%, 18% {
        transform: translateX(-4px);
    }

    10%, 15% {
        transform: translateX(4px);
    }

    25% {
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        opacity: .8;
        transform: scale(1);
    }

    70% {
        opacity: 0;
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
    }
}

.gallery-description {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}