/* Paleta de Colores:
    Azul Profundo: #002D62 (Primario)
    Naranja Vibrante: #E35200 (Acento)
    Gris Claro: #F0F0F0 (Fondo)
*/

body {
    font-family: 'Arial', sans-serif;
    color: #1A1A1A;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display:inline-flex;
    align-items:center;
    text-align:justify;
    align-content:center;
    width:50vw;
}

/* --- HEADER y NAVEGACIÓN --- */
header {
    background-color: #000000;
    color: white;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* ----------------------------------------------- */
}


.logo-isotipo {
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    height: 100px;
    width: auto;
}

.nav-menu {
   
    display: flex;
    align-items: center;  
    gap: 20px; 
    padding: 0; 
    position: static;
    transform: none;
    width: auto;
    height: auto;
    background-color: transparent;  
}

nav a {
    color: white;
    text-decoration: none;
 
    padding: 5px 10px;
    transition: background-color 0.3s;
 
    width: auto;
}

    nav a:hover {
        background-color: #E35200;
        border-radius: 4px;
        border: solid 1px #E35200;  
    }

 
.menu-toggle {
    display: none;
}
 @media (max-width: 768px) {
    .logo-isotipo {
        font-size: 28px;
        font-weight: bold;
        color: white;
        text-decoration: none;
      
        height: 15vw;
        width: auto;
        
    }
 
    .menu-toggle {
        display: block;
        border: none;
        border-radius: 10px;
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
        right: 5vw;
        position: absolute;
 
    }

   .nav-menu {
        
        position: fixed;  
        top: 100px;  
        left: 0;
        width: 50%; 
        height: 100%; 
        background-color: #002D62; 
 
        flex-direction: column;
        justify-content: flex-start;  
        align-items: center;  
        transform: translateX(200%);  
        transition: transform 0.3s ease-in-out;
        gap: 0;  
        padding-top: 120px;
        z-index: 1000;
        
    }

        .nav-menu a {
            margin-bottom: 20px;
            width: 80%; 
            text-align: center;

        }

    
        .nav-menu.active {
            transform: translateX(50vw);
        }
}
/* --- BANNER (HOME) --- */
#hero-banner {
    height: 60vh;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.slider-item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none; 
}

.slider-item.active {
        display: block;
    }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 20px;
}

.overlay h1 {
    font-size: 4em;
    margin-bottom: 10px;
}

.btn-cta {
    background-color: #E35200;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-cta:hover {
    background-color: #c94600;
}


.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.producto-card {
    background-color: #F0F0F0;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.producto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.producto-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Formulario y Ejecutivos */
    gap: 40px;
}

form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form select,
form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;  
}

.ejecutivos-lista {
    background-color: #F0F0F0;
    padding: 20px;
    border-radius: 8px;
}

.ejecutivo-item {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ccc;
}


.seccontacto {
    background-color: #F0F0F0;
    color: #002D62;
    padding: 15px;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: justify;
    align-content: center;
    width: 50vw;
}

@media (max-width: 768px) {
    .seccontacto {
        background-color: #F0F0F0;
        color: #002D62;
        justify-content: space-around;
        align-items: center;
        margin: 0 auto;
        text-align: justify;
        align-content: center;
        width: 90vw;
    }
}