/* Reset básico para el margen y el padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    scroll-behavior: smooth;
    font-family: 'Lato', sans-serif;
    color: #333333;
    /* Gris oscuro para mejor legibilidad */
    min-height: 100vh;
    overflow-x: hidden;
    margin-top: 60px;
}

body {
    margin-top: 60px;
}


header {
    width: 100%;
    height: auto;
    background-color: #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #2f2f2f;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.5s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 80px;
    width: auto;
    margin-left: 30px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #007bff;
}

nav.scrolling {
    background-color: #3a3a3a;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.btn-wpp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    z-index: 1000;
    transition: background-color 0.3s;
}

.btn-wpp img {
    width: 30px;
    height: 30px;
}

.btn-wpp:hover {
    background-color: #1EBEA5;
}

.btn-contacto {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

.btn-contacto:hover {
    background-color: #0056b3;
}

/* Sección Inicio */
#inicio {
    background-image: url('/images/pexels-zak-chapman-2291367.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.contenido-destacado {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 150px;
    border-radius: 10px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.logo-centrado img {
    max-width: 220px;
    height: auto;
    margin-bottom: 20px;
}

.contenido-destacado p {
    font-size: 24px;
    margin: 20px 0;
    color: #ffffff;
}

.inicio-background p {
    color: #ffffff;
    font-size: 20px;
}

/* Sección Contacto */
#contacto {
    background-color: #2f2f2f;
    color: #fff;
    padding: 40px 20px;
    overflow-x: hidden;
}

#contacto .contacto-contenido {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

#contacto .info-contacto {
    flex: 1 1 45%;
    margin: 10px;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
}

#contacto .info-contacto h2 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
}

#contacto .info-contacto p {
    margin-bottom: 8px;
    color: #fff;
}

#contacto .info-contacto .contacto-destacado {
    color: red;
}

#contacto .info-contacto hr {
    border: 0;
    border-top: 2px solid rgb(63, 61, 61);
    width: 50%;
    margin: 10px auto;
}

/* NUEVA SECCIÓN: Certificación */
#contacto .info-certificacion {
    flex: 1 1 45%;
    background-color: #2f2f2f;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

#contacto .info-certificacion h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

#contacto .info-certificacion p {
    margin-bottom: 10px;
}

/* Centrador */
.contenido-centrado {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

/* Sección Quiénes Somos */
#quienes-somos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 50px 10px;
    overflow-x: hidden;
}

.nosotros-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    background: #fff;
}

.nosotros-imagen,
.nosotros-texto {
    flex: 1;
}

.nosotros-imagen img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.nosotros-texto {
    padding: 0 20px;
}

/* Sección Servicios */
#servicios {
    text-align: center;
    padding: 50px 20px;
}

.servicio-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.servicio {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    max-width: 1200px;
    width: 100%;
}

.servicio-invertido {
    flex-direction: row-reverse;
}

.servicio-imagen,
.servicio-texto {
    flex: 1;
    padding: 20px;
}

.servicio-imagen img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
}

.servicio-texto {
    max-width: 600px;
}

/* Media Queries */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .logo img {
        height: 60px;
        margin: 0 auto;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .contenido-destacado {
        padding: 50px 20px;
    }

    .nosotros-container {
        flex-direction: column;
    }

    #contacto .contacto-contenido {
        flex-direction: column;
    }

    #contacto .info-contacto,
    #contacto .info-certificacion {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 10px;
    }

    .logo img {
        height: 50px;
    }

    .nav-links li {
        margin: 8px 0;
    }

    .contenido-destacado {
        padding: 20px;
    }

    .btn-wpp {
        width: 50px;
        height: 50px;
    }

    .btn-wpp img {
        width: 25px;
        height: 25px;
    }

}

    .seccion-politica {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.contenedor-politica {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.contenedor-politica h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contenedor-politica p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.contenedor-politica ul {
    margin: 20px 0;
    padding-left: 20px;
}

.contenedor-politica li {
    margin-bottom: 10px;
}

.firma {
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}

.toggle-politica {
    background-color: #2f2f2f;
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
}

.contenido-politica {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    text-align: left;
    background: #fff;
    border-radius: 10px;
    line-height: 1.7;
}

.contenido-politica.activo {
    max-height: 1000px;
    padding: 30px;
    margin-top: 20px;
}

#icono {
    margin-left: 10px;
    font-weight: bold;
}