/* =================================================================
   NUEVO ARCHIVO DE ESTILO GENERAL - V2 (JULIO 2025)
   ================================================================= */

/* --- :ROOT - Paleta de Colores y Variables Globales --- */
:root {
    --primary-color: #0d47a1; /* Azul oscuro corporativo */
    --secondary-color: #1976d2; /* Azul medio */
    --accent-color: #00BFA5; /* Turquesa vibrante para acentos y detalles */
    --text-color: #333333; /* Gris oscuro para texto */
    --text-color-light: #f5f5f5; /* Texto para fondos oscuros */
    --background-color: #ffffff;
    --light-gray-bg: #f8f9fa; /* Un gris aún más claro y moderno */
    --font-family: 'Poppins', sans-serif;
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.08); /* Sombra más suave y moderna */
    --border-radius: 8px; /* Radio de borde consistente */
}

/* --- Estilos Base y Tipografía --- */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding-top: 70px;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 50px; }
h3 { font-size: 1.3rem; }

section {
    padding: 60px 0;
}

/* --- Barra de Navegación --- */
.navbar {
    background-color: var(--background-color);
    padding: 0 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 70px;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--primary-color); text-decoration: none; }
.nav-links { list-style: none; display: flex; gap: 25px; margin: 0; }
.nav-links a { text-decoration: none; color: var(--text-color); font-weight: 600; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent-color); }
.nav-cta {
    background-color: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: var(--border-radius);
    transition: all 0.3s;
}
.nav-cta:hover { background-color: var(--primary-color); color: white; transform: translateY(-2px); }

/* --- Hero Section --- */
.hero {
    background: linear-gradient(rgba(13, 71, 161, 0.85), rgba(13, 71, 161, 0.85)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    background-attachment: fixed;
    text-align: center;
    padding: 100px 20px;
    color: white;
}
.hero h1 { color: white; }
.hero p { font-size: 1.2rem; max-width: 800px; margin: 20px auto 40px; opacity: 0.95; }

/* --- Botón de Acción Principal (CTA) --- */
.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, var(--accent-color), #00d1b2);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 191, 165, 0.4);
    text-decoration: none;
}
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0, 191, 165, 0.5); }
form .cta-button { width: 100%; border-radius: var(--border-radius); } /* Estilo para el botón del formulario */

/* --- Estilo General de Tarjetas --- */
.card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    border-top: 4px solid var(--accent-color);
    padding: 35px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.card i { font-size: 2.5rem; color: var(--secondary-color); margin-bottom: 20px; }
.card h3 { color: var(--primary-color); margin-top: 0; }

/* --- Sección de Servicios --- */
.services { background-color: var(--background-color); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { text-align: center; } /* Hereda el estilo de .card */

/* --- Sección Sobre Nosotros --- */
.about-us { background-color: var(--light-gray-bg); }
.about-us-content { display: flex; align-items: center; gap: 50px; }
.about-us-text { flex: 1; }
.about-us-image { flex: 1; }
.about-us-image img { width: 100%; border-radius: var(--border-radius); box-shadow: var(--shadow-soft); }

/* --- Sección de Beneficios (DISEÑO CORREGIDO Y LEGIBLE) --- */
.benefits { 
    background-color: var(--light-gray-bg); 
}

.benefits h2 { 
    color: var(--primary-color); 
}

.benefits-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
}

/* Ahora la tarjeta de beneficios usa el estilo general de .card
   y le damos estilos específicos a sus elementos internos
*/
.benefit-card {
    text-align: center;
}

.benefit-card i {
    color: var(--accent-color); /* Íconos con el color de acento turquesa */
}

/* --- Sección de Testimonios --- */
.testimonials { background-color: var(--background-color); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 30px; }
.testimonial-card p { font-style: italic; margin-top: 0; border-left: 3px solid var(--accent-color); padding-left: 20px; }
.testimonial-card cite { font-style: normal; display: block; margin-top: 20px; color: var(--primary-color); font-weight: 600; }

/* --- Sección de Contacto --- */
.contact { background-color: var(--light-gray-bg); }
.contact form { max-width: 700px; margin: 40px auto 0; background: var(--background-color); padding: 40px; border-radius: var(--border-radius); box-shadow: var(--shadow-soft); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px; border-radius: var(--border-radius); border: 1px solid #ccc; font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent-color); box-shadow: 0 0 0 3px rgba(0, 191, 165, 0.2);
}

/* --- Footer --- */
.footer { background-color: #1a253c; /* Un azul casi negro, muy elegante */ color: var(--text-color-light); padding: 60px 0 0; }
.footer-content { display: flex; justify-content: space-between; gap: 40px; padding-bottom: 40px; flex-wrap: wrap; }
.footer-about, .footer-links, .footer-social { flex: 1; min-width: 250px; }
.footer h3, .footer h4 { color: white; border-left: 3px solid var(--accent-color); padding-left: 10px; }
.footer ul { list-style: none; padding: 0; }
.footer ul a { color: var(--text-color-light); text-decoration: none; opacity: 0.8; transition: all 0.3s; line-height: 2; }
.footer ul a:hover { opacity: 1; color: var(--accent-color); padding-left: 5px; }
.social-icons a { color: white; font-size: 1.5rem; margin-right: 15px; text-decoration: none; transition: all 0.3s; }
.social-icons a:hover { color: var(--accent-color); transform: scale(1.1); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); text-align: center; padding: 25px 0; font-size: 0.9rem; opacity: 0.7; }

/* --- Responsividad para Móviles --- */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    body { padding-top: 0; }
    .navbar { display: none; } /* Ocultar navbar en móvil para este ejemplo */
    .about-us-content { flex-direction: column; }
    .testimonials-grid { grid-template-columns: 1fr; }
}