/*RESETEO BÁSICO Y FUENTE GLOBAL*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/*ENCABEZADO PRINCIPAL (LOGO Y MENÚ)*/
.main-header {
    background-color: #1a1a1a;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 110px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

nav a:hover {
    text-decoration: underline;
}

/*SECCIÓN HERO: BANNER CON IMAGEN COMPLETA*/
.hero-banner {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: auto;
    max-height: none;
    display: block;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 30px;
    max-width: 90%;
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 12px;
}

.hero-text h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #ffffff;
}

.hero-text p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #f1f1f1;
}

.cta-button {
    background-color: #003366;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #005599;
}

/*SECCIÓN SERVICIOS*/
.services-section {
    padding: 80px 20px;
    background-color: #f1f5f9;
    text-align: center;
}

.services-section h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: #003366;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 300px;
    max-width: 300px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.service-icon {
    font-size: 2em;
    color: #003366;
    margin-bottom: 10px;
}

.service-card h3 {
    margin-top: 0;
}

/*SECCIÓN NOSOTROS*/
.about-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #ffffff;
}

.about-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #003366;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
    color: #444;
}

/*SECCIÓN CONTACTO*/
.contact-section {
    padding: 80px 20px;
    background-color: #458bc1;
    text-align: center;
}

.contact-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #ffffff;
}

.contact-section form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-section input,
.contact-section textarea {
    padding: 12px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
}

.contact-section button {
    background-color: #003366; /* azul institucional */
    color: #ffffff; /* texto blanco */
    padding: 12px 24px; /* alto x ancho interno */
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: fit-content; /* evita que se estire a todo el ancho */
    align-self: center; /* lo centra dentro del form */
}

.contact-section button:hover {
    background-color: #005599; /* azul más claro al pasar el mouse */
    color: #ffffff; /* se mantiene el texto blanco */
}

/* Centrar el contenedor del reCAPTCHA dentro del formulario */

.g-recaptcha {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

/*PIE DE PÁGINA*/
.main-footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #1a1a1a;
    font-size: 0.95em;
    color: #ffffff;
}

.main-footer p {
    margin: 5px 0;
}

/*ENLACES EN EL FOOTER: COLOR FIJO*/
.main-footer a,
.main-footer a:visited {
    color: #ffffff;
    text-decoration: none;
}

.main-footer a:hover {
    color: #66b3ff;
    text-decoration: underline;
}

/*AJUSTE: eliminar espacio bajo el botón de contacto*/
.contact-section form {
    margin-bottom: 0;
}

.contact-section {
    padding-bottom: 40px; /* puedes ajustar si deseas más o menos separación */
}