body {
    font-family: 'Inter', sans-serif;
}

/* NAVBAR */
.navbar {
    background: transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: white !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* HERO */
.hero {
    background: linear-gradient(120deg, rgba(35,57,133,0.95), rgba(35,57,133,0.8)),
    url('https://images.unsplash.com/photo-1552664730-d307ca884978');
    background-size: cover;
    height: 100vh;
}

.hero h1 {
    line-height: 1.2;
}

.hero .btn-success {
    background: linear-gradient(135deg, #00c853, #00e676);
    border: none;
}

.hero .btn-outline-light {
    border: 2px solid white;
}

/* SERVICIOS */
.card {
    border: none;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* BENEFICIOS */
.beneficios {
    background: linear-gradient(135deg, var(--primary), #1b2f6d);
}

.beneficios .col {
    background: rgba(255,255,255,0.05);
    margin: 10px;
    padding: 20px;
    border-radius: 12px;
}

/* CARDS */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

/* EMPRESAS */
.empresas .card {
    background: #fff;
    font-weight: 600;
}

/* BOTONES */
.btn-primary {
    background: var(--primary);
    border: none;
    border-radius: 10px;
}

.btn-success {
    background: var(--secondary);
    border: none;
    border-radius: 10px;
}

/* HOVER BOTONES */
.btn-primary:hover {
    background: #1b2f6d;
}

.btn-success:hover {
    background: #009e74;
}

/* FOOTER */
footer {
    background: #0a0a0a;
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero {
        height: auto;
        padding: 100px 20px;
    }
    
    .hero-buttons {
    margin-top: 30px;
    display: grid !important;
    gap: 15px;
}
}

:root {
    --primary: #233985;
    --secondary: #00B388;
    --dark: #0f172a;
    --light: #f8fafc;
}

.hero-pro {
    padding: 120px 0;
    background: linear-gradient(135deg, #233985 0%, #1b2f6d 100%);
    color: white;
}

.hero-title {
    font-size: 54px;
    font-weight: 600;
    line-height: 1.2;
}

.hero-title span {
    color: #00B388;
}

.hero-title strong {
    color: #00B388;
}

.hero-subtitle {
    margin-top: 20px;
    font-size: 18px;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.btn-primary-pro {
    background: #00B388;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
}

.btn-secondary-pro {
    border: 2px solid white;
    padding: 14px 28px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
}

.hero-image-wrapper {
    background: white;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: 12px;
}

/* SERVICIOS PRO */

.services-pro {
    padding: 100px 0;
    background: #f8fafc;
}

.services-title {
    font-size: 32px;
    font-weight: 700;
    color: #233985;
}

.services-subtitle {
    margin-top: 10px;
    color: #555;
}

/* GRID MODERNO */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.service-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* EFECTO HOVER PRO */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* ICONO */
.service-icon {
    font-size: 28px;
    margin-bottom: 15px;
}

/* TITULO */
.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #233985;
}

/* TEXTO */
.service-card p {
    margin-top: 10px;
    color: #666;
    font-size: 14px;
}

/* EFECTO LINEA LATERAL (detalle premium) */
.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: #00B388;
    opacity: 0;
    transition: 0.3s;
}

.service-card:hover::before {
    opacity: 1;
}

/* RESPONSIVE */
@media(max-width:992px){
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px){
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* BENEFICIOS PRO */

.benefits-pro {
    padding: 120px 0;
    background: linear-gradient(135deg, #233985, #1b2f6d);
    color: white;
}

.benefits-wrapper {
    background: rgba(255,255,255,0.05);
    padding: 60px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

/* TEXTO */
.benefits-title {
    font-size: 32px;
    font-weight: 700;
}

.benefits-subtitle {
    margin-top: 15px;
    opacity: 0.8;
}

/* GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARD MÃ‰TRICA */
.benefit-card {
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 18px;
    transition: 0.3s;
    text-align: center;
}

/* HOVER */
.benefit-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

/* NUMERO */
.benefit-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #00B388;
}

.text-navy-blue {
    color: #01234C;
}

.text-narrow {
  font-family: "Arial Narrow", Arial, sans-serif;
}

.text-bold {
    font-weight: 800;
}

.text-bold-900 {
    font-weight: 900;
}

.text-green {
    color: #00B388;
    font-family: sans-serif;
}

.text-green-bold {
    color: #00B388;
    font-family: sans-serif;
    font-weight: 700;
}

.text-size-30px {
    font-size: 25px;
}

.text-size-22px {
    font-size: 22px;
}

.text-size-20px {
    font-size: 20px;
}

.text-size-16px {
    font-size: 16px;
}

.text-size-15px {
    font-size: 15px;
}

.text-size-14px {
    font-size: 14px;
}

/* TEXTO */
.benefit-card p {
    margin-top: 10px;
    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width:992px){
    .benefits-wrapper {
        padding: 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* HERO EXACTO */

.hero-exacto {
    position: relative;
    height: 85vh;
    background: linear-gradient(90deg, #233985 40%, transparent 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* CONTENIDO */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-left {
    max-width: 600px;
    color: white;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-left span {
    color: #00B388;
}

.hero-left p {
    margin-top: 20px;
    font-size: 16px;
    opacity: 0.9;
}

/* BOTONES */
.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.btn-primary-pro {
    background: #00B388;
    padding: 14px 24px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
}

.btn-outline-pro {
    border: 1px solid rgba(255,255,255,0.6);
    padding: 14px 24px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
}

/* IMAGEN */
.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY IMAGEN */
.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11,44,77,0.4);
}

/* FEATURES */
.hero-footer {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    /*background: rgba(10, 40, 80, 0.9);*/
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    z-index: 3;
}

.hero-features {
    position: absolute;
    bottom: 10px;
    /*left: 50%;
    transform: translateX(-50%);
    width: 85%;*/
    background: rgba(10, 40, 80, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    z-index: 3;
}

.feature {
    display: flex;
    gap: 10px;
    color: white;
    max-width: 220px;
}

.feature .icon {
    font-size: 20px;
}

.feature strong {
    font-size: 14px;
}

.feature p {
    font-size: 12px;
    opacity: 0.8;
}

/* =========================
   HERO RESPONSIVE FIX
========================= */

@media (max-width: 992px) {

    .hero-exacto {
        height: 1150px;
        flex-direction: column;
        padding: 100px 20px 40px;
        background: linear-gradient(180deg, #0b2c4d 60%, #0b2c4d 100%);
    }

    .hero-content {
        width: 100%;
    }

    .hero-left {
        max-width: 100%;
        text-align: left;
    }

    .hero-left h1 {
        font-size: 26px;
    }

    .hero-left p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    /* IMAGEN */
    .hero-image {
        position: relative;
        width: 100%;
        height: 250px;
        margin-top: 30px;
    }

    .hero-image img {
        height: 100%;
        object-fit: cover;
    }

    /* FEATURES */
    .hero-features {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: 20px;
        flex-direction: column;
        gap: 15px;
        padding: 0px;
    }

    .feature {
        max-width: 100%;
    }
    
    
}

.hero-image::before {
    background: rgba(11,44,77,0.6); /* mÃ¡s oscuro en mobile */
}

.hero-left h1 {
    line-height: 1.3;
}


/* CONTENEDOR */
.wa-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
}

/* BOTÃ“N */
.wa-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.wa-button img {
    width: 30px;
}

/* BURBUJA */
.wa-bubble {
    background: #f1f1f1;
    color: #333;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);

    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

/* CUANDO APARECE */
.wa-bubble.show {
    opacity: 1;
    transform: translateX(0);
}

.contenedor-flexbox {
    display: flex; /*Convertimos al menÃº en flexbox*/
    justify-content: space-between; /*Con esto le indicamos que margine todos los items que se encuentra adentro hacia la derecha e izquierda*/
    align-items: center; /*con esto alineamos de manera vertical*/
}

.wa-close {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 8px;
    font-size: 12px;
}


.service-title {
    display: flex;
    gap: 10px;
    max-width: 100%;
}



.footer-pro {
    background: #0b2c4d;
    color: white;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 0.5fr 2.2fr 1fr 1fr 0.5fr;
    gap: 30px;
    align-items: center;
    font-size: 14px;
}

/* LOGO */
.logo {
    font-weight: 700;
    font-size: 20px;
}

.logo-footer {
    height:100px; 
    display: block; 
    margin-left: auto; 
    margin-right: auto;
}

.logo-a {
    color: white;
}

.logo-b {
    color: #00B388;
}

/* TEXTO */
.footer-brand p {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.8;
}

/* ITEMS */
.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-item i {
    color: #00B388;
}

/* REDES */
.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    margin-right: 10px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #00B388;
    border-color: #00B388;
}

.footer-social {
    display: flex;
    flex-direction: row; /* ðŸ”¥ esto es lo importante */
    gap: 10px;
    align-items: center;
}

/* RESPONSIVE */
@media(max-width:992px){
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        font-size: 15px;
    }

    .footer-item {
        justify-content: center;
    }
}

/* =========================
   HEADER ALVA BUSINESS GROUP
========================= */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(35, 57, 133, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-wrap {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo img {
    height: 58px;
    width: auto;
    display: block;
}

/* NAV */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 35px;
}

.main-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 38px;
    margin: 0;
    padding: 0;
}

.main-menu li {
    margin: 0;
    padding: 0;
}

.main-menu a {
    text-decoration: none;
    color: #233985;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    transition: 0.25s ease;
}

/* ACTIVO */
.main-menu .current-menu-item a,
.main-menu a:hover {
    color: #233985;
}

.main-menu .current-menu-item a::after,
.main-menu a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background: #00B388;
}

/* BOTÓN */
.header-cta {
    background: #233985;
    color: #fff;
    text-decoration: none;
    padding: 13px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: 0.25s ease;
    white-space: nowrap;
}

.header-cta:hover {
    background: #1b2f6d;
    color: #fff;
    transform: translateY(-1px);
}

/* MOBILE TOGGLE */
/* HAMBURGUESA */
.mobile-toggle {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    width: 22px;
    background: #233985;
    margin: 5px auto;
    transition: 0.3s;
}

/* ANIMACIÓN A X */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* MENU LATERAL */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: #ffffff;
    z-index: 1000;
    transition: 0.4s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 80px 25px;
    gap: 20px;
}

/* LINKS */
.mobile-menu a {
    text-decoration: none;
    color: #233985;
    font-size: 16px;
    font-weight: 600;
}

/* CTA */
.mobile-cta {
    margin-top: 20px;
    background: #233985;
    color: white !important;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

/* OVERLAY */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* SOLO MOBILE */
@media(min-width: 1025px){
    .mobile-menu,
    .mobile-overlay,
    .mobile-toggle {
        display: none !important;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {

    .main-nav,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .header-wrap {
        height: 82px;
    }

    .header-logo img {
        height: 50px;
    }
    
    .logo-footer {
        height:120px; 
        display: block; 
        margin-left: auto; 
        margin-right: auto;
    }
    
    .company-logo {
        height:127px !important;
    }
    .company-name {
        font-size: 22px !important;
    }
    .company-description {
        font-size: 17px !important;
    }
    
    .text-size-18-mb {
        font-size: 18px !important;
    }
}

.company-logo {
    height:100px; 
    display: block; 
    margin-left: auto; 
    margin-right: auto;
}
.company-name {
    color: #00B388;
    font-family: sans-serif;
    font-weight: 700;
    font-size: 15px;
}

.company-description {
    font-size: 15px;
}