/* ===== VARIABLES AZUL + NEGRO ===== */
:root {
    --azul-oscuro: #0d1b2a;
    --azul: #1b263b;
    --azul-acento: #415a77;
    --azul-hover: #778da9;
    --azul-borde: #e0e1dd;
    --azul-cita: #a8dadc;
    --gris-suave: #f8f9fa;
    --fondo-claro: #f0f4f8;
}

/* ===== TIPOGRAFÍA Y BASE ===== */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--fondo-claro);
    color: #e0e1dd;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Merriweather', serif;
    color: var(--azul-oscuro);
    margin-bottom: 1rem;
}

p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}



section .display-4 {
    color: #fff !important;
}

.navbar-nav .nav-link:hover {
    color: var(--azul-hover);
}


.card-img-top {
  height: 400px; /* o el valor que prefieras */
  object-fit: cover;
}

.card {
  height: 100%; /* se adapta a su contenedor */
  display: flex;
  flex-direction: column;
}

.card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}






.hero h1,
.hero p {
    color: white;
}

.hero a {
    background-color: white;
    color: var(--azul);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.hero a:hover {
    background-color: var(--azul-hover);
    color: white;
}

/* ===== SECCIONES GENERALES ===== */
section {
    padding: 4rem 0;
}

section.container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* ===== SECCIÓN PORTADA AZUL OSCURO ===== */
.seccion-verde-oscuro {
    background-color: white;
    color: var(--azul-oscuro);
    padding: 3rem 2rem;
    border-radius: 0.5rem;
    text-align: center;
}

.seccion-verde-oscuro h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: var(--azul-oscuro);
    margin-bottom: 1rem;
}

.seccion-verde-oscuro p {
    font-family: 'Montserrat', sans-serif;
    color: var(--azul);
    font-size: 1.25rem;
    max-width: 750px;
    margin: 0 auto;
}

/* ===== TÍTULOS DE SECCIÓN ===== */
section h3 {
    
    font-size: 2rem;
    color: var(--azul);
}

/* ===== CARDS ===== */
.card {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    font-weight: 600;
    color: var(--azul);
    font-size: 1.25rem;
}

.card-text {
    font-size: 1rem;
    color: #444;
}

.btn-success {
    background-color: var(--azul);
    border-color: var(--azul);
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-success:hover {
    background-color: var(--azul-hover);
}

/* ===== TESTIMONIOS ===== */
.blockquote {
    background-color: #dfe7fd;
    border-left: 5px solid var(--azul);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    border-radius: 8px;
    font-size: 1.1rem;
}

/* ===== GALERÍA ===== */
.img-fluid {
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: transform 0.3s ease-in-out;
}

.img-fluid:hover {
    transform: scale(1.05);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--azul-oscuro);
    font-size: 1rem;
    color: white;
    padding: 1.5rem 0;
    text-align: center;
}

