/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Contenedor general */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Encabezado */
/* Encabezado */
.header {
    background-color: #0E2344;
    color: #fff;
    padding: 10px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo img {
    width: 150px;
}

/* Menu normal, solo visible en pantallas grandes */
.header__nav {
    display: none; /* Oculto por defecto en móviles */
}

@media (min-width: 768px) {
    .header__nav {
        display: block; /* Mostrar el menú en pantallas grandes */
    }
}

.nav__list {
    display: flex;
    list-style: none;
}

.nav__list li {
    margin-left: 20px;
}

.nav__list li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

#language-toggle {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}

/* Botón de menú móvil */
.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    display: block; /* Visible solo en móviles */
}

.menu-toggle__bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none; /* Ocultar el botón de menú en pantallas grandes */
    }
}

/* Menú móvil */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: #0E2344;
    color: #fff;
    padding-top: 60px;
    transition: left 0.3s ease;
    z-index: 999;
}

.mobile-nav.active {
    left: 0;
    display: block; /* Mostrar menú cuando esté activo */
}

.mobile-nav__list {
    list-style: none;
}

.mobile-nav__list li {
    margin: 20px 0;
    text-align: center;
}

.mobile-nav__list li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}




/* Sección Acerca de */
.about {
    padding: 80px 0;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
}

/* Sección Servicios */
.services {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.services__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service {
    width: 32%;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service img {
    width: 100%;
    height: auto;
}

.service h3 {
    font-size: 24px;
    margin: 20px 0;
}

.service p {
    padding: 0 20px 20px;
}

/* Sección Galería */
/* Sección de galería */
/* Estilos para los items de la galería */
/* Contenedor de la galería */
/* Estilos de la galería */
.gallery-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.gallery-header h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #0E2344; /* Color principal */
}

/* Grid responsivo para las imágenes */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adaptable */
    grid-gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Evita que la imagen se distorsione */
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05); /* Efecto zoom suave al pasar el ratón */
}



/* Responsividad */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* En pantallas más pequeñas, el mínimo es de 150px */
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* En móviles, las imágenes se muestran una encima de la otra */
    }

    .gallery-item {
        margin-bottom: 15px;
    }
}


/* Sección Galería fin*/


/* Sección Contacto */
/* Sección de contacto */
.contact-section {
    padding: 60px 0;
    background-color: #f4f4f4;
}

.contact-header h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #0E2344; /* Color principal */
}

/* Estilos del formulario */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #0E2344;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0E2344; /* Color principal */
    outline: none;
}

textarea {
    height: 150px;
    resize: vertical;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #0E2344;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #08223a; /* Más oscuro en hover */
}

/* Responsividad */
@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 20px;
    }

    button[type="submit"] {
        font-size: 0.9rem;
    }
}

/* Pie de página */
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer__about,
.footer__contact {
    width: 48%;
    margin-bottom: 20px;
}

.footer__about h3,
.footer__contact h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer__bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
}

.footer__bottom p {
    font-size: 14px;
}

/* Responsividad */
@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .services__list {
        flex-direction: column;
        align-items: center;
    }

    .service {
        width: 100%;
    }

    .gallery__grid img {
        width: 100%;
    }

    .footer__about,
    .footer__contact {
        width: 100%;
    }
}

/* Mostrar menú en pantallas grandes */
@media (min-width: 769px) {
    .header__nav {
        display: block;
    }

    .menu-toggle {
        display: none;
    }

    .mobile-nav {
        display: none;
    }
}

/*Parte Nosotros*/
/* Sección Hero */
/* Contenedor principal de la sección */
/* Estilos generales para la sección */
/* Estilos generales */
.hero__content {
    text-align: center;
    padding: 50px 0;
}

.hero-title {
    font-size: 48px;
    color: #0E2344;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

/* Ajuste responsivo para la sección Hero */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 14px;
    }
}

/* Estilos para la sección About y CEO */
.about-ceo-section {
    padding: 60px 0;
    background-color: #fff;
}

.section-title {
    font-size: 28px;
    color: #0E2344;
    margin-bottom: 20px;
}

.title-divider {
    width: 60px;
    height: 4px;
    background-color: #0e2344;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.about-content .btn-outline {
    padding: 10px 20px;
    border: 2px solid #0e2344;
    color:  #0e2344;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.about-content .btn-outline:hover {
    background-color:  #0e2344;
    color: #fff;
}

/* Estilos para la tarjeta del CEO */
.ceo-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.ceo-card:hover {
    border-color: #0e2344;
}

.ceo-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid  #0e2344;
    margin: 0 auto;
}

.ceo-quote {
    margin-top: 15px;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.ceo-info h5 {
    font-size: 20px;
    color: #0E2344;
    margin-top: 10px;
}

.ceo-info p {
    font-size: 16px;
    color: #777;
}

/* Responsividad */
@media (max-width: 991px) {
    .about-ceo-section .col-lg-6 {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }

    .ceo-card {
        padding: 15px;
    }

    .ceo-quote {
        font-size: 14px;
    }

    .ceo-image {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 20px;
    }

    .ceo-image {
        width: 160px;
        height: 160px;
    }

    .ceo-info h5 {
        font-size: 18px;
    }
}


/* Estilo para la clase tellwasa */
.tellwasa a {
    color: #ffffff; /* Color verde característico de WhatsApp */
    font-weight: bold;
    text-decoration: none; /* Elimina el subrayado */
    transition: color 0.3s ease, text-shadow 0.3s ease; /* Suaviza las transiciones */
}

/* Hover que indica que se va a WhatsApp */
.tellwasa a:hover {
    color: #128C7E; /* Color verde oscuro de WhatsApp */
    text-shadow: 0 0 8px rgba(37, 63, 211, 0.7); /* Resplandor al pasar el cursor */
    cursor: pointer; /* Cambia el cursor a pointer */
}


/* Contenedor de iconos de redes sociales */
.header__social-icons {
    display: flex;
    align-items: center;
    margin-left: 10px; /* Separación del menú */
    gap: 5px;
}

.header__social-icons a {
    display: inline-block;
    width: 30px;
    height: 30px;
    color: #ffffff; /* Color blanco para los íconos */
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 25px; /* Ajusta el tamaño del ícono */
}

/* Hover para los íconos */
.header__social-icons a:hover {
    transform: scale(1.1); /* Efecto de zoom al hacer hover */
    color: #25D366; /* Cambia a verde en hover (puedes personalizar el color) */
}

/* Responsividad para móviles */
@media (max-width: 768px) {
    .header__social-icons {
        margin-left: 10px;
    }

    .header__social-icons a {
        width: 25px;
        height: 25px;
        font-size: 25px; /* Ajusta el tamaño de los íconos en móvil */
    }
}

