* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f2f2f2;
    color: #2d2d2d;
}

.navbar {
    position: relative;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.logo {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #2d2d2d;
}

.logo span {
    color: #049fb6;
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: #2d2d2d;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.nav-links a:hover {
    color: #049fb6;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 20px 90px;
    background: linear-gradient(135deg, #049fb6 0%, #06bad3 50%, #32d8e6 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 780px;
    color: #2d2d2d;
    font-weight: 400;
}

.hero-imagen {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -1px;
    color: white;
}


.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-title .linea1 {
    color: white;
}

.hero-title .linea2 {
    color: black;
}

.hero-ilustracion {
    width: 480px;
    max-width: 150%;
    display: block;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.2));
}


.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    background-color: #ffffff;
    color: #25D366;

    padding: 16px 28px;
    border-radius: 14px;

    font-size: 18px;
    font-weight: 700;

    text-decoration: none;

    border: 2px solid #25D366;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover .icono-wsp {
    background-color: white;
    color: #25D366;
}

.icono-wsp {
    width: 32px;
    height: 32px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icono-wsp svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.como-funciona {
    padding: 90px 20px;
    background-color: #f2f2f2;
    text-align: center;
}

.como-funciona h2 {
    font-size: 36px;
    margin-bottom: 45px;
    letter-spacing: -0.5px;
}

.pasos {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.paso {
    background-color: white;
    padding: 34px 26px;
    border-radius: 18px;
    width: 280px;

     border: 1.8px solid #06bad3; /* 👈 color del hero */

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.paso:hover {
    transform: translateY(-6px);
    border-color: #049fb6; /* más oscuro */
    box-shadow: 0 14px 30px rgba(6,186,211,0.25);
}

.paso-icono {
    width: 92px;
    height: 92px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: #eafcff;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0; /* 🔥 IMPORTANTE */
}

.paso-svg {
    width: 62px;
    height: 62px;

    display: block; /* evita desalineación */
    margin: 0 auto;

    object-fit: contain;
}

.paso h3 {
    font-size: 22px;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.paso p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.cobertura {
    padding: 100px 20px;
    background-color: #ffffff;
}

.cobertura-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    gap: 50px;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #06bad3;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cobertura h2 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 34px;
    color: #2d2d2d;
    letter-spacing: -0.8px;
}

.cobertura-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.cobertura-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    background-color: #f8fbfc;
    padding: 20px;
    border-radius: 18px;

    border: 1.2px solid rgba(6,186,211,0.4); /* 👈 ajuste */

    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.cobertura-card:hover {
    border-color: #06bad3;
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(6,186,211,0.18);
}

.cobertura-icono {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    background-color: #eafcff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cobertura-icono img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.cobertura-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #2d2d2d;
}

.cobertura-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
}

.cobertura-badge {
    display: inline-block;
    margin-top: 24px;
    background-color: #eafcff;
    color: #2d2d2d;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
}

.cobertura-mapa img {
    width: 100%;
    max-width: 560px;
    display: block;
    margin: 0 auto;
}

.cta-final {
    padding: 100px 20px 70px;
    text-align: center;
    background: linear-gradient(135deg, #049fb6 0%, #06bad3 50%, #32d8e6 100%);
    color: white;
}

.cta-final h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.cta-final p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.cta-final .btn-whatsapp {
    background-color: white;
    color: #25D366; /* 👈 verde WhatsApp */
    border: 2px solid #25D366;
}

.cta-final .btn-whatsapp:hover {
    background-color: #f2f2f2;
}

.cta-datos {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.cta-datos p {
    font-size: 14px;
    color: rgba(255,255,255,0.95);
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2000;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: Arial, sans-serif;
}

.whatsapp-text {
    background-color: #111111;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 18px;
    border-radius: 14px 0 0 14px;
    margin-right: 0;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: relative;
}

.whatsapp-text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 14px solid #111111;
}

.whatsapp-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    position: relative;
    animation: whatsapp-pulse 1.5s infinite;
}

.whatsapp-icon::before,
.whatsapp-icon::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: 0;
    background-color: rgba(37, 211, 102, 0.25);
    z-index: -1;
    animation: whatsapp-wave 1.8s infinite;
}

.whatsapp-icon::after {
    animation-delay: 0.9s;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float:hover .whatsapp-icon {
    animation-play-state: paused;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.06);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.06);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes whatsapp-wave {
    0% {
        transform: scale(1);
        opacity: 0.45;
    }
    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

.hero-texto {
    animation: fadeUp 0.8s ease;
}

.hero-imagen {
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.conglomerados {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.conglomerados span {
    background-color: rgba(255,255,255,0.12);
    color: #2d2d2d;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.45);
    transition: 0.3s ease;
    backdrop-filter: blur(4px);
}

.conglomerados span:hover {
    background-color: white;
    color: #2d2d2d;
}

.confianza {
    padding: 100px 20px;
    background: #f8fbfc;
    text-align: center;
}

.confianza-container {
    max-width: 1100px;
    margin: 0 auto;
}

.confianza h2 {
    font-size: 38px;
    margin-bottom: 12px;
}

.confianza-sub {
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

.confianza-beneficios {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.confianza-item {
    width: 260px;
}

.confianza-item img {
    width: 50px;
    margin-bottom: 12px;
}

.confianza-item h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.confianza-item p {
    font-size: 14px;
    color: #555;
}

.confianza-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.confianza-logos img {
    height: 60px;
    max-width: 120px;
    object-fit: contain;

    filter: none;
    opacity: 1;

    transition: transform 0.3s ease;
}

.confianza-logos img:hover {
    transform: scale(1.08);
}

.confianza-cta {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;

    border: 1px solid rgba(0,0,0,0.08); /* 👈 borde gris fino */

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.04); /* más suave */
}

.confianza-cta:hover {
    border-color: rgba(0,0,0,0.12);
}

.confianza-texto h3 {
    margin-bottom: 5px;
}

.confianza-texto p {
    color: #555;
}

.footer-simple {
    background: #0f1f2e;
    color: #aaa;
    text-align: center;
    padding: 22px 20px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .navbar {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 8px 16px;
    }

    .navbar-container {
    width: 100%;
    justify-content: center;
    }

    .logo {
    display: block;
    font-size: 20px;
    color: #2d2d2d !important;
    text-align: center;
    }

    .logo span {
    color: #049fb6 !important;
    }

    .nav-links {
    display: none;
    }

    .hero {
    min-height: auto;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #049fb6 0%, #06bad3 50%, #32d8e6 100%);
    }

    .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    }

    .hero-texto {
    text-align: center;
    }

    .hero h1 {
    font-size: 34px;
    line-height: 1.15;
    }

    .hero-text {
    font-size: 18px;
    line-height: 1.6;
    max-width: 100%;
    }
   
    .hero-ilustracion {
    width: 300px;
    margin: 0 auto;
    }

    .como-funciona {
        padding: 70px 20px;
    }

    .como-funciona h2 {
        font-size: 28px;
        margin-bottom: 34px;
    }

    .paso {
        width: 100%;
        max-width: 320px;
        padding: 30px 22px;
        border: 1px solid rgba(6,186,211,0.3);
    }

    .paso:hover,
    .cobertura-card:hover {
        transform: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    .paso-icono {
        width: 82px;
        height: 82px;
    }

    .paso-svg {
        width: 55px;
        height: 55px;
        transform: translateY(1px);
    }

    .conglomerados {
    justify-content: center;
    }

    .como-funciona h2,
    .cobertura h2,
    .cta-final h2 {
        font-size: 28px;
    }

    .paso,
    .cobertura-box {
    width: 100%;
    max-width: 320px;
    }

    .cta-final p {
    font-size: 16px;
    }

    .cta-final {
    padding: 80px 20px 55px;
    background: linear-gradient(135deg, #049fb6 0%, #06bad3 50%, #32d8e6 100%);
    }

    .cta-datos {
        flex-direction: column;
        gap: 8px;
    }
   
    .btn-whatsapp {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    padding: 14px 20px;
    }

    .icono-wsp {
    width: 30px;
    height: 30px;
    }

    .icono-wsp svg {
        width: 20px;
        height: 20px;
    }
    
    .whatsapp-float {
    right: 14px;
    bottom: 14px;
    }

    .whatsapp-text {
    display: none;
    }

    .whatsapp-icon {
    width: 60px;
    height: 60px;
    }

    .cobertura {
    padding: 70px 20px;
    }

    .cobertura-container {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .cobertura-mapa {
        order: 1;
    }

    .cobertura-info {
        order: 2;
    }

    .cobertura h2 {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .cobertura-card {
        text-align: left;
        padding: 18px;
    }

    .cobertura-icono {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .cobertura-icono img {
        width: 28px;
        height: 28px;
    }

    .cobertura-mapa img {
        max-width: 330px;
    }

    .cobertura-badge {
        font-size: 14px;
    }

    .confianza-logos img {
    height: 50px;
    max-width: 100px;
    }
    .confianza h2 {
    font-size: 26px;
    }

    .confianza-beneficios {
        flex-direction: column;
        align-items: center;
    }

    .confianza-cta {
        flex-direction: column;
        text-align: center;
    }

}