/* ==================================== */
/* 1. ESTILOS BASE Y TIPOGRAFÍA         */
/* ==================================== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3 {
    margin-top: 0;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: #007bff; /* Color principal para enlaces */
}

section {
    padding: 60px 20px;
}

/* ==================================== */
/* 2. BARRA DE NAVEGACIÓN Y HEADER      */
/* ==================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #343a40; /* Fondo oscuro */
    color: white;
    padding: 15px 30px;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar ul li a {
    color: white;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s;
}

.navbar ul li a:hover {
    background-color: #007bff;
}

/* Estilo del botón CTA en la navegación */
.btn-nav-cta {
    background-color: #ffc107 !important; /* Amarillo para destacarlo */
    color: #333 !important;
    border-radius: 5px;
    font-weight: bold;
}

.btn-nav-cta:hover {
    background-color: #e0a800 !important;
    color: white !important;
}

/* ==================================== */
/* 3. SECCIÓN HERO (BANNER) - AJUSTE FINAL IMAGEN */
/* ==================================== */
.hero {
    background-image: url('../img/banner-alnet.jpg'); 
    
    /* CAMBIO CLAVE AQUÍ: Ajusta la imagen para que quepa por completo */
    background-size: 100% 300%; 
    
    background-position: center center;
    background-repeat: no-repeat; /* ¡IMPORTANTE! Asegura que la imagen no se repita */
    
    color: white;
	text-align: center;
    padding: 100px 20px;
    height: 450px; /* Mantén la altura que deseas para el banner */
    display: flex;
    align-items: center;
    justify-content: center; 
    position: relative;
    /* Añade un color de fondo para rellenar los espacios si background-size: contain deja huecos */
    background-color: #1a237e; /* Puedes usar el azul oscuro que te gustó del banner */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2); 
    z-index: 1;
}

/* Modificaciones para el contenido del banner (texto) */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px; /* Limitar el ancho para que no ocupe toda la pantalla */
    text-align: center; /* Alinear el texto dentro del contenedor a la izquierda */
    margin-left: center; /* Un margen desde la izquierda del banner */
	margin-right: center;
    /* Puedes ajustar este porcentaje o usar un valor fijo como 50px */
}

.hero-content h1 {
    font-size: 3.5em; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 10px; /* Asegura un espacio entre título y párrafo */
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 20px; /* Espacio antes del botón */
}

/* Estilo del Botón Principal (Call to Action) */
.btn-cta-principal {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffc107; /* Amarillo/Naranja llamativo para contraste */
    color: #333;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta-principal:hover {
    background-color: #e0a800; /* Tono más oscuro al pasar el mouse */
    transform: translateY(-2px);
    color: #fff;
}


/* ==================================== */
/* 4. SECCIÓN SERVICIOS                 */
/* ==================================== */
.servicios {
    text-align: center;
    background-color: #fff;
}

.servicios h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #1a237e;
}

.servicio-grupo {
    display: inline-block;
    width: 45%;
    margin: 0 2%;
    text-align: left;
    vertical-align: top;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.servicio-grupo h3 {
    color: #007bff;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.servicio-grupo ul {
    list-style: none;
    padding: 0;
}

.servicio-grupo ul li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.servicio-grupo ul li::before {
    content: "-"; 
    color: green;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}


/* ==================================== */
/* 5. SECCIÓN TESTIMONIOS (Mejora)      */
/* ==================================== */
#testimonios {
    padding: 60px 20px;
    background-color: #f7f7f7; /* Un fondo gris claro para destacarla */
    text-align: center;
}

.section-title {
    font-size: 2.5em;
    color: #1a237e;
    margin-bottom: 40px;
}

.testimonios-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Para que se ajusten en pantallas pequeñas */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonio-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 30%; /* Tres tarjetas por fila */
    min-width: 280px; /* Ancho mínimo para buena lectura */
    text-align: left;
    transition: transform 0.3s ease;
}

.testimonio-card:hover {
    transform: translateY(-5px); /* Pequeño efecto al pasar el mouse */
}

.cita {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.autor {
    font-weight: bold;
    color: #007bff; /* Color principal de tu marca, similar al botón azul */
    text-align: right;
}

/* ==================================== */
/* 6. SECCIÓN PIE DE PÁGINA             */
/* ==================================== */
footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Media Queries para Responsividad */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }
    .navbar ul {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .servicio-grupo {
        width: 100%;
        margin: 15px 0;
    }
    .testimonios-container {
        flex-direction: column;
    }
    .testimonio-card {
        width: 100%;
    }
}
/* ==================================== */
/* 7. SECCIÓN CONTACTO Y FORMULARIO     */
/* ==================================== */
.contacto-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.contacto-subtitle {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
}

.contacto-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    flex-wrap: wrap; /* Para responsividad */
}

.contacto-form {
    background: #f7f7f7;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex: 2; /* Ocupa más espacio */
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.required {
    color: #dc3545; /* Color rojo para campos obligatorios */
}

.contacto-form input[type="text"],
.contacto-form input[type="email"],
.contacto-form input[type="tel"],
.contacto-form select,
.contacto-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Asegura que el padding no cambie el ancho total */
    font-size: 1em;
}

.contacto-form textarea {
    resize: vertical;
}

.btn-submit {
    background-color: #007bff; /* Azul primario */
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

/* Estilos de la información de contacto lateral */
.contacto-info {
    flex: 1;
    padding: 30px;
    border-left: 1px solid #eee;
    min-width: 250px;
}

.contacto-info h3 {
    color: #1a237e;
    margin-top: 0;
    margin-bottom: 20px;
}

.contacto-info ul {
    list-style: none;
    padding: 0;
}

.contacto-info ul li {
    margin-bottom: 10px;
    font-size: 1em;
}

.nota-contacto {
    margin-top: 20px;
    font-style: italic;
    color: #6c757d;
}

/* Responsividad para la sección de Contacto */
@media (max-width: 768px) {
    .contacto-container {
        flex-direction: column;
    }
    .contacto-info {
        border-left: none;
        border-top: 1px solid #eee;
        margin-top: 20px;
    }
}
/* ==================================== */
/* 8. MEDIA QUERIES (RESPONSIVIDAD)     */
/* ==================================== */

@media (max-width: 768px) {
    /* --- GENERAL --- */
    body {
        font-size: 16px; /* Asegura un tamaño de fuente legible */
    }
    
    /* --- BARRA DE NAVEGACIÓN --- */
    .navbar {
        flex-direction: column; /* Apila el logo y el menú */
        padding: 15px 10px;
    }
    .navbar ul {
        flex-direction: column; /* Apila los elementos del menú */
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
    .navbar ul li a {
        padding: 8px;
    }

    /* --- HERO/BANNER --- */
    .hero {
        height: 350px; /* Reducimos la altura del banner en móviles */
        padding: 50px 10px;
        /* Hacemos el texto más pequeño para que quepa */
    }
    .hero-content {
        margin-left: 0; /* Centramos o reducimos el margen */
        max-width: 90%;
        text-align: center; /* Centramos el texto para una mejor visualización */
    }
    .hero-content h1 {
        font-size: 2em; /* Título más pequeño */
    }
    .hero-content p {
        font-size: 1em;
    }
    .btn-cta-principal {
        padding: 12px 20px;
        font-size: 1em;
    }
    
    /* --- SERVICIOS --- */
    .servicio-grupo {
        width: 100%; /* Hacemos que cada columna de servicio ocupe todo el ancho */
        margin: 15px 0;
        min-width: unset;
    }

    /* --- TESTIMONIOS --- */
    .testimonios-container {
        flex-direction: column; /* Apila las tarjetas de testimonios */
        gap: 15px;
    }
    .testimonio-card {
        width: 100%; /* Hace que las tarjetas ocupen todo el ancho */
        min-width: unset;
    }

    /* --- CONTACTO (Formulario) --- */
    .contacto-container {
        flex-direction: column; /* Apila el formulario y la info lateral */
    }
    .contacto-form, .contacto-info {
        flex: auto;
        padding: 20px;
    }
    .contacto-info {
        border-left: none;
        border-top: 1px solid #eee; /* Añade un separador superior */
        margin-top: 20px;
    }
}