/* Importación de fuente */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    background: #f8f8f8;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.header {
    background: url(image/FONDO\ NUEVO.jpg) no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.logo {
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    margin: flex;
}


.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    top: 0;
    right: 0;
    left: 0;
    position: absolute;
    gap: 15px; /* Espaciado entre el logo y el ícono del menú */
}
.menu input {
    display: none;
}

.menu-icono {
    width: 25px;
    cursor: pointer;
    justify-self: unset;
    display: none;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    transition: color 0.3s ease-in-out;
}

.navbar a:hover {
    color: #ffcc00;
}

/* ----- HEADER CONTENT ----- */
.header-content {
    text-align: center;
    color: #fff;
    max-width: 600px;
}

.header-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

.header-content p {
    margin: 15px 0;
    font-size: 1.1rem;
}

.btn-1 {
    display: inline-block;
    background: #ffcc00;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-1:hover {
    background: #e6b800;
}

/* ----- SECCIÓN GENERAL ----- */
.general {
    padding: 50px 0;
    text-align: center;
}

.general h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.general-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.general .txt {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.general .txt:hover {
    transform: translateY(-5px);
}

.info_1{
    background-image: url(image/bg2.png);
    padding: 250px 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.info_1 h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.info_1 p {
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
}
.info_2 {
    background: #f8f9fa; /* Color de fondo suave */
    padding: 60px 20px;
}

.info_2-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Estilos de títulos */
.info_2 h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.8rem;
    color: #0056b3;
    margin-top: 20px;
}
.info_2 p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}
/* Cajas de contenido */
.info-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Lista de valores */
.valores ul {
    list-style: none;
    padding: 0;
}

.valores li {
    text-align: left;
    font-size: 1.1rem;
    margin: 10px 0;
    color: #333;
}

.valores li::before {
    content: "✔ ";
    color: #28a745;
    font-weight: bold;
}

footer {
    padding: 50px 0;
    background: #222;
    color: #fff;
    text-align: center;
}
    .general-content {
        display: flex;
        gap: 20px;
        text-align: center;
    }
    .general-1, .general-2, .general-3 {
        flex: 1;
    }
    .general-1 img, .general-2 img, .general-3 img {
        width: 80px;
        margin-bottom: 10px;
    }
    .social-links {
        margin-top: 10px;
    }
    .social-links a {
        margin: 0 10px;
        display: inline-block;
    }
    .social-links img {
        width: 30px;
    }
    .whatsapp-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
    }
    .whatsapp-button img {
        width: 100%;
    }

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: auto;
}

.campo {
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 100%;
}

.btn-2 {
    background: #ffcc00;
    color: #333;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-2:hover {
    background: #e6b800;
}

/* ----- RESPONSIVE DESIGN ----- */
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        text-align: center;
    }

    .general-content {
        flex-direction: column;
    }

    .info-circle {
        flex-direction: column;
        gap: 20px;
    }

    .testi {
        flex-direction: column;
    }
    .header-txt {
        background: rgba(0, 0, 0, 0.5);
        padding: 20px;
        border-radius: 10px;
    }
    
    .clientes {
        padding: 50px 0;
        text-align: center;
    }
    .clientes-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }
    .clientes-logos img {
        height: 50px;
        filter: grayscale(1);
        transition: filter 0.3s;
    }
    .clientes-logos img:hover {
        filter: grayscale(0);
    }
}
