/* =========================
   BASE
========================= */
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1f2d3d;
    line-height: 1.65;
    background-color: #ffffff;
}

h1, h2, h3 {
    color: #0d2a47;
}

/* =========================
   HERO (más parecido al diseño 2)
========================= */
.hero-section {
    position: relative;
    background:
        linear-gradient(
            to right,
            rgba(11, 30, 52, 0.95) 0%,
            rgba(11, 30, 52, 0.85) 35%,
            rgba(11, 30, 52, 0.4) 60%,
            rgba(11, 30, 52, 0.2) 100%
        ),
        url('../assets/img-6.jpg') center right / cover no-repeat;
    padding: 140px 0;
    background-color: #0b1e34;
}



.hero-section h1 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-section p {
    color: #d6e0ea;
    max-width: 520px;
}

/* Botón hero más sobrio */
.hero-section .btn {
    background-color: #1e90ff;
    border: none;
    padding: 10px 22px;
    font-weight: 500;
}

.hero-section .btn:hover {
    background-color: #1876d1;
}

/* =========================
   SECCIONES
========================= */
.section-padding {
    padding: 90px 0;
}

/* Fondo azul corporativo (como la 2ª imagen) */
.bg-light {
    background-color: #f6f9fc !important;
}

/* =========================
   BLOQUES DE SERVICIO
========================= */
.service-block h2 {
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.service-block p {
    font-size: 0.95rem;
    color: #4a5d73;
}

.service-block ul {
    padding-left: 18px;
    margin-bottom: 18px;
}

.service-block ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #1f2d3d;
}

/* Imagen estilo “flotante premium” */
.service-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(13, 42, 71, 0.18);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================
   TARJETAS DE SERVICIOS
========================= */
.service-card {
    background: #ffffff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* =========================
   CONTACTO
========================= */
/* =========================
   CONTACTO
========================= */
.contact-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.contact-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #1f2d3d;
}

/* Imagen contacto */
.contact-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(13, 42, 71, 0.18);
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #1f2d3d;
}

/* =========================
   TESTIMONIOS
========================= */
section.bg-light h2 {
    color: #0d2a47;
}

section.bg-light img.rounded-circle {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* =========================
   FOOTER
========================= */
.footer {
    background-color: #0d2a47;
    color: #c9d6e2;
}

.footer p {
    font-size: 0.85rem;
    margin: 0;
}
