* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #1c1c1c;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.benefits {
    margin-top: 120px;
}
/* HERO */
.hero {
    position: relative;
    height: 600px;      /* ← fija y controlada */
    overflow: hidden;
}
/* HERO */
.hero-bg {
    width: 100%;
    aspect-ratio: 1440 / 600; /* ajusta estos valores al ratio real de tu imagen */
    background-image: url("/corresponsales/static/image/pc/banner superior@4x.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    position: relative; /* deja de ser absolute */
}

@media (max-width: 768px) {
    .hero{
        align-items: center;
    }
    .hero-bg {
        background-image: url("/corresponsales/static/image/movil/Banner superior movil@4x.png");
         aspect-ratio: 390 / 500; /* ajusta al ratio real de tu imagen móvil */
        background-size: contain;
        background-color: white; /* opcional: fondo blanco para evitar bordes oscuros */
         background-position: center center;
    }
}
/* Responsive Images - General */
.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.full-img {
    width: 100%;
}

.form-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* HERO MOBILE */

.hero-mobile {
    display: none;
    background: #f2f2f2;
    padding: 0;
    margin: 0;
}

.hero-mobile-content {
    text-align: center;
    padding: 0;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
  }

.whatsapp-float img {
    width: 60px;        /* Ajusta según necesidad */
    height: auto;
    display: block;
}

  /* Opcional: efecto hover */
.whatsapp-float:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
}

  /* Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
      bottom: 15px;
      right: 15px;
}

    .whatsapp-float img {
      width: 50px;
    }
  }
.hero-mobile-content p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.hero-mobile img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-mobile {
        display: block;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    color: white;
}

.hero-left h1 {
    font-size: 70px;
    color: #ffd600;
    font-weight: 800;
}

.hero-left h3 {
    margin-bottom: 10px;
}

.hero-right {
    width: 40%;
    background: white;
    color: #003366;
    padding: 30px;
    border-radius: 6px;
}

.hero-right ul {
    margin-top: 20px;
    list-style: none;
}

.hero-right li {
    margin-bottom: 10px;
}

/* BENEFICIOS */

.benefits {
    display: flex;
    justify-content: center;
    margin: 60px auto;
    gap: 20px;
}

.benefits-desktop {
    display: block;
    width: 100%;
    max-width: 1000px;
    border-radius: 8px;
    margin: 0 auto;
}

.benefits-mobile {
    display: none;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.benefit-card {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .benefits {
        margin: 40px auto;
        flex-direction: column;
        align-items: center;
    }

    .benefits-desktop {
        display: none;
    }

    .benefits-mobile {
        display: flex;
        width: 100%;
    }

    .benefit-card {
        max-width: 100%;
        width: 100%;
    }
}

    .benefits-mobile {
        width: 100%;
        padding: 0 10px;
    }

    .benefit-card {
        max-width: 100%;
        width: 100%;
    }


/* STATS */

.stats {
    background: #f2f2f2;
    padding: 48px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats .container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats img {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    margin: 0 auto;
}

.stats-small {
    padding: 24px 20px;
}

.stats-small .container {
    max-width: 600px;
}

.stats-small img {
    max-width: 600px;
}

@media (max-width: 768px) {
    .stats-small .container {
        max-width: 100%;
    }

    .stats-small img {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .stats {
        padding: 24px 12px;
    }

    .stats-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .stats-picture img {
        border-radius: 6px;
    }

    .stat-value {
        font-size: 28px;
    }
}

/* FORMULARIO */

.form-section {
    padding: 0;
    background: #0b3b82;
    color: white;
}

@media (max-width: 768px) {
    .form-section {
        display: block;
    }
}

.form-wrapper {
    display: flex;
    align-items: stretch; /* make children equal height */
    gap: 0; /* no gap: image edge meets blue */
}

.form-left {
    flex: 1;
    padding: 80px 40px; /* move padding into left column */
}

.form-left form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.form-left input {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 30px;
    border: none;
}

.checkbox {
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-primary {
    background: #00c853;
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
}

.form-right {
    flex: 1;
    /* image will fill this space */
}

.form-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.quote {
    margin-top: 20px;
    font-style: italic;
}

@media (max-width: 768px) {
    .form-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .form-left {
        padding: 40px 20px;
        width: 100%;
    }

    .form-right {
        display: none;
    }
}

/* WHATSAPP BUTTON */

.whatsapp-container {
    text-align: center;
    margin: 20px 0 40px;
}

.whatsapp-container a {
    display: inline-block;
    width: 702px;
    height: 102px;
    transition: transform 0.2s ease;
}

.whatsapp-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.whatsapp-container a:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .whatsapp-container a {
        width: 224px;
        height: 24px;
    }
}

/* FOOTER */

.footer {
    background: #003366;
    color: white;
    padding: 40px 0;
}

.footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .footer {
        padding: 20px 0;
    }
}