html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body > header,
body > footer {
    /* These elements will only take as much vertical space as they need */
}

body > main {
    flex: 1; /* This will allow the main element to expand and fill the available space */
    display: flex; /* To ensure its children can also be flex items */
    flex-direction: column; /* To stack its children vertically */
}

body {
    background-color: #323c46; /* Sets the body background color to light charcoal */
}

.contenedor_main {
    flex: 1; /* This will allow the .contenedor_main to expand within the main */
    /* No need to set background color and color here if they are already set in your nav.css */    
    color: #e0e0e0;
}



.contenedor_main{
    background-color: #323c46;
    color: #e0e0e0;
}

.contenedor_main a {
    text-decoration: none; /* Removes underline from all states */
    color: #4d9fcb; /* Sets the default color of the links */
}

.contenedor_main a:hover {
    color: #4ab3ca; /* Changes color on hover */
    text-decoration: underline;
}

.contenedor_main a:active {
    color: #7b99ce; /* Changes color when the link is active/clicked */
    text-decoration: underline;
}


.footer{   
    color: #e0e0e0;
}

.footer a {
    text-decoration: none; /* Removes underline from all states */
    color: #4d9fcb; /* Sets the default color of the links */
}

.footer a:hover {
    color: #4ab3ca; /* Changes color on hover */
    text-decoration: underline;
}

.footer a:active {
    color: #7b99ce; /* Changes color when the link is active/clicked */
    text-decoration: underline;
}


.fuente_blanca {
    color: #FFFFFF; /* White color */
    text-decoration: none; /* Removes underline */
}

.fuente_blanca:hover {
    color: #0d6efd; /* Changes color to Bootstrap's primary blue on hover */
    text-decoration: underline; /* Adds underline on hover */
}

.fuente_blanca:active {
    color: #72a7f6; /* Lighter blue color when active/clicked */
    text-decoration: underline; /* Ensures underline remains when active/clicked */
}


.fuente_chica{
    font-size: 0.8rem;
}


.fuente_mediana{
    font-size: 0.9rem;
}

.fuente_grande{
    font-size: 1.8rem;
}




.boton {    
    background-color: #046aff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.boton:hover {
    background-color: #4b8ef0;
}

.fuente_grafito{
    color: #323c46;
}


.whatsapp-icon {
    width: 15vw;
    height: 15vw;
    position: fixed;
    bottom: 15vw;
    left: 4vw; 
    z-index: 1000;
}

/* Styles for lg and larger screens */
@media (min-width: 992px) {
    .whatsapp-icon {
        width: 5vw; /* Adjust for larger screens */
        height: 5vw; /* Adjust for larger screens */
        bottom: 4vw; /* Less space from bottom for larger screens */
        right: 8vw; /* Less space from right for larger screens */
    }
}




