* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.cabecera {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #333;
    color: white;
}

.img_cabecera img {
    height: 55px;
    border-radius: 10px;
}

h2 {
    font-size: 24px;
}


.navbar {
    position: relative;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* --------------------------------------------------------------------- */
/* Aca empieza las configuraciones especificas para pantallas pequeñas */
/* fijate aca para modificar el funcionamiento en el celu */
/* --------------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
   
    .cabecera {
        background-color: rgba(0, 128, 0,0.7);
        padding: 12px;
    }

    .img_cabecera img {
        height: 55px;
        border-radius: 10px;
    }

    h2 {
        font-size: 18px;
        margin-left: 10px; 
    }

    .div_togle {
        display: flex;
        justify-content: flex-end;
        width: 100%;
    }

    .nav-toggle {
        background: none;
        border: none;
        color: white;
        font-size: 30px;
        cursor: pointer;
    }

    .nav_menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 0;
        background: rgba(0, 0, 0, 0.8);
        width: 200px;
        padding: 10px;
        border-radius: 5px;
    }

    .nav_menu.active {
        display: flex;
    }

    .contenedor_botones {
        text-align: right;
        padding: 10px;
    }

    .boton_nav {
        background: none;
        border: none;
        color: white;
        font-size: 14px;
        cursor: pointer;
    }

    .productos {
        font-size: 16px;
        text-align: justify;
        padding: 15px;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .terminos {
        font-size: 16px; 
        line-height: 1.6;
        color: #333; 
        padding: 10px 0;
        margin-top: 10px;
    }

    .footer {
        background-color: rgba(0, 128, 0,0.7);
        color: white;
        text-align: center;
        padding: 15px;
        flex-shrink: 0;
    }
    .footer h3,
    .footer h4 {
        display: none;
    }
    .imagen-centrada {
        display: flex;
        margin: auto;
        width: 70%;  /* Ajusta el tamaño según lo necesites */
        height: auto; /* Mantiene la proporción */
    }
    
}

/* --------------------------------------------------------------------- */
/* Aca empieza las configuraciones especificas para pantallas Grandes PC */
/* fijate aca para modificar el funcionamiento en la computadora */
/* --------------------------------------------------------------------- */
@media only screen and (min-width: 769px) {

    .nav_menu {
        display: flex;
        gap: 1px;
    }

    .contenedor_botones {
        list-style: none;
    }

    .boton_nav {
        background: none;
        border: none;
        color: white;
        font-size: 14px;
        cursor: pointer;
    }

    .productos {
        font-size: 18px;
        text-align: justify;
        padding: 40px;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        height: calc(100vh - 140px);
        overflow-y: auto;
    }

    .terminos {
        font-size: 18px;
        line-height: 1.8; 
        color: #333;
        padding: 15px 0;
        margin-top: 20px;
    }

    footer {
        background-color: #222;
        color: white;
        text-align: center;
        padding: 15px;
        flex-shrink: 0;
    }
    .imagen-centrada {
        display: block;
        margin: auto;
        width: 40%;  /* Ajusta el tamaño según lo necesites */
        height: auto; /* Mantiene la proporción */
    }
    
}

/* ==========================================================================
   Estilos Neumórficos (Solo para prueba en index.html)
   ========================================================================== */

.neumorphic-test {
    --nm-bg: rgba(226, 237, 226, 0.9); /* Verde un 5% más oscuro y semi-transparente */
    --nm-shadow-dark: #b1c5b1; /* Sombra oscurecida para mantener el contraste neumórfico */
    --nm-shadow-light: #ffffff;
    --nm-text: #2d3e2d; /* Texto en un verde muy oscuro para mejor contraste */
    --nm-accent: #4caf50; /* Verde de acento para iconos y resaltados */
    
    background-color: var(--nm-bg) !important;
    color: var(--nm-text);
}

.neumorphic-test .cabecera {
    background-color: var(--nm-bg) !important;
    color: var(--nm-text) !important;
    box-shadow: 8px 8px 16px var(--nm-shadow-dark), -8px -8px 16px var(--nm-shadow-light) !important;
    border-radius: 0 0 20px 20px;
    border: none;
    padding: 15px 20px;
}

.neumorphic-test .footer {
    background-color: var(--nm-bg) !important;
    color: var(--nm-text) !important;
    box-shadow: 8px 8px 16px var(--nm-shadow-dark), -8px -8px 16px var(--nm-shadow-light) !important;
    border-radius: 20px 20px 0 0;
    margin-top: auto;
    padding: 15px 20px !important;
    border: none;
}

.neumorphic-test .footer-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

.neumorphic-test .footer-brand {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 0.85rem;
}

.neumorphic-test .footer-info-list {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.neumorphic-test .info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.neumorphic-test .info-item span {
    font-size: 0.8rem; /* 20% más pequeño que el estándar */
}

.neumorphic-test .nm-icon {
    width: 36.8px;
    height: 36.8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--nm-bg);
    color: var(--nm-text);
    box-shadow: 4px 4px 8px var(--nm-shadow-dark), -4px -4px 8px var(--nm-shadow-light);
    transition: all 0.3s ease;
    font-size: 1.01rem;
    flex-shrink: 0;
}

.neumorphic-test .nm-icon:hover {
    color: var(--nm-accent);
    box-shadow: 4px 4px 8px var(--nm-shadow-dark), -4px -4px 8px var(--nm-shadow-light);
    transform: none;
}

.neumorphic-test .footer a:hover {
    text-decoration: underline;
}

.neumorphic-test .footer strong {
    color: #333; /* Color más oscuro para el texto en negrita */
}

.neumorphic-test .footer .copyright {
    font-size: 0.85em; /* Tamaño de fuente más pequeño para el copyright */
    opacity: 0.7; /* Ligeramente transparente */
}

.neumorphic-test h2 {
    color: #444 !important;
}

.neumorphic-test .boton_nav {
    background-color: var(--nm-bg);
    color: var(--nm-text);
    border: none;
    padding: 9px 18px;
    font-size: 14px;
    border-radius: 12px;
    box-shadow: 5px 5px 10px var(--nm-shadow-dark), -5px -5px 10px var(--nm-shadow-light);
    transition: all 0.2s ease;
    font-weight: 500;
    margin: 5.4px;
}

.neumorphic-test .boton_nav:hover {
    box-shadow: 4px 4px 8px var(--nm-shadow-dark), -4px -4px 8px var(--nm-shadow-light);
    transform: translateY(-1px);
}

.neumorphic-test .boton_nav:active {
    box-shadow: 5px 5px 10px var(--nm-shadow-dark), -5px -5px 10px var(--nm-shadow-light) !important;
    transform: none !important;
}

.neumorphic-test .nm-icon:active {
    box-shadow: 4px 4px 8px var(--nm-shadow-dark), -4px -4px 8px var(--nm-shadow-light) !important;
    transform: none !important;
}

@media only screen and (max-width: 768px) {
    .neumorphic-test .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border-radius: 12px;
        background: var(--nm-bg);
        color: var(--nm-text);
        box-shadow: 4px 4px 8px var(--nm-shadow-dark), -4px -4px 8px var(--nm-shadow-light);
        border: none;
        cursor: pointer;
        margin-right: 10px;
    }

    .neumorphic-test .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .neumorphic-test .footer-brand {
        display: none;
    }

    .neumorphic-test .footer-copy {
        font-size: 0.8rem;
    }

    .neumorphic-test .footer-info-list {
        flex-direction: column; /* Cambiamos a columna para alinear los iconos */
        align-items: flex-start; /* Alinea los iconos en una línea vertical */
        width: fit-content;      /* Hace que el contenedor solo ocupe el ancho necesario */
        margin: 10px 0 0;        /* Alineado a la izquierda para coincidir con el logo */
        gap: 12px;               /* Espaciado vertical entre items */
        order: 2;
    }

    .neumorphic-test .nav_menu {
        display: flex;
        position: fixed;
        top: 85px;
        right: -800px; /* Estado inicial fuera de pantalla para el script.js */
        width: 200px;
        height: auto;
        background: var(--nm-bg) !important;
        box-shadow: -8px 8px 16px var(--nm-shadow-dark), -2px -2px 10px var(--nm-shadow-light);
        border-radius: 20px 0 0 20px;
        padding: 20px 0;
        transition: right 0.4s ease-in-out;
        z-index: 1000;
    }

    .neumorphic-test .contenedor_botones {
        width: 100%;
        text-align: left;
        list-style: none;
    }
}
