* {
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
    font-weight: 300; 
}

body, html {
    height: 100%;
    width:100%;
    text-align: center;
    background:#dcdcdc;
    margin:0;
    padding:0;
    position:relative;
}


/* INICIO CUADRO DE CARGA */

/* FONDO */
#overlayer {
    width:100%;
    height:100%;  
    position:fixed;
    z-index:9999;
    background:#e8e6e1;
}
/* FONDO */

/* CUADRADO */
.loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: fixed;
    z-index:10000;
    border: 4px solid #171515;
    top: 50%;
    animation: loader 2s infinite ease;
    left: 50%;
    margin-left: -19px;   
    margin-top: -19px;
}
/* CUADRADO */

/* RELLENO */
.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #3b3434;
    animation: loader-inner 2s infinite ease-in;
}
/* RELLENO */


/* ANIMACION DEL CUADRO PRELOADER */
@keyframes loader {
    0% {
        transform: rotate(0deg);
    }
    
    25% {
        transform: rotate(180deg);
    }
    
    50% {
        transform: rotate(180deg);
    }
    
    75% {
        transform: rotate(360deg);
    }
    
    100% {
        transform: rotate(360deg);
    }
}
@keyframes loader-inner {
    0% {
        height: 0%;
    }
    
    25% {
        height: 0%;
    }
    
    50% {
        height: 100%;
    }
    
    75% {
        height: 100%;
    }
    
    100% {
        height: 0%;
    }
}
/* FIN ANIMACION DEL CUADRO PRELOADER */


/* FIN CUADRO DE CARGA */




/* INICIO COLOR DE FONDO DEL NAVBAR */
.bg-body-tertiary {
    background-color: #77B87A !important; 
}
/* FIN COLOR DE FONDO DEL NAVBAR */





/* INICIO ESTILOS DEL FOOTER */

.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 4rem 0 0;
    margin-top: 5rem;
    font-family: 'Manrope', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    text-align: left;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #77B87A;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #77B87A;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: #77B87A;
    transform: translateX(5px);
}

/* Newsletter Section */
.footer-newsletter {
    max-width: 100%;
}

.footer-description {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.95rem;
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: #77B87A;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    background-color: #77B87A;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-btn:hover {
    background-color: #5a9a5d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(119, 184, 122, 0.3);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icon:hover {
    background-color: #77B87A;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(119, 184, 122, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Responsivo para ceulares */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer {
        padding: 3rem 0 0;
        margin-top: 3rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* FIN ESTILOS DEL FOOTER */
