/* Variables de Estilo */
:root {
    --primary-color: #27639f;       /* Azul primario extraído del gráfico/escudo */
    --primary-dark: #1b4977;        /* Azul oscuro para hovers */
    --accent-color: #d8a038;         /* Dorado/Ocre extraído de los biseles del escudo */
    --secondary-color: #5c7083;      /* Gris azulado para textos secundarios */
    --dark-color: #162432;           /* Azul noche muy oscuro para textos y footer */
    --light-color: #f4f7fa;          /* Fondo claro gris/azulado */
    --font-main: 'Inter', sans-serif;
}

/* Modificadores de acento dorado/ocre para CTAs o badges */
.btn-accent {
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
}
.btn-accent:hover {
    background-color: #bd882b;
    color: #ffffff;
}

.text-accent {
    color: var(--accent-color) !important;
}

body {
    font-family: var(--font-main);
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Transición Sticky Navbar */
#navbar {
    padding: 1.2rem 0;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
}

#navbar.navbar-scrolled {
    padding: 0.6rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

/* Custom Grid Columna Paso a Paso */
@media (min-width: 768px) {
    .col-md-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

/* Step Number Box */
.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Icon Box */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Hover Effects */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Counter Animation Layout */
.counter {
    transition: all 0.5s ease;
}

/* Botón y Estilos de WhatsApp (@jezasoft) */
.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1eb954;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3) !important;
}

.bg-success-subtle {
    background-color: rgba(37, 211, 102, 0.12) !important;
}

.text-success {
    color: #1eb954 !important;
}