@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    src:
        local("Poppins Regular"),
        url("../fonts/Poppins-Regular.woff") format("woff");
}

@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 400;
    src:
        local("Poppins Italic"),
        url("../fonts/Poppins-Italic.woff") format("woff");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 100;
    src:
        local("Poppins Thin"),
        url("../fonts/Poppins-Thin.woff") format("woff");
}

@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 100;
    src:
        local("Poppins Thin Italic"),
        url("../fonts/Poppins-ThinItalic.woff") format("woff");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 200;
    src:
        local("Poppins ExtraLight"),
        url("../fonts/Poppins-ExtraLight.woff") format("woff");
}

@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 200;
    src:
        local("Poppins ExtraLight Italic"),
        url("../fonts/Poppins-ExtraLightItalic.woff") format("woff");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 300;
    src:
        local("Poppins Light"),
        url("../fonts/Poppins-Light.woff") format("woff");
}

@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 300;
    src:
        local("Poppins Light Italic"),
        url("../fonts/Poppins-LightItalic.woff") format("woff");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    src:
        local("Poppins Medium"),
        url("../fonts/Poppins-Medium.woff") format("woff");
}

@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 500;
    src:
        local("Poppins Medium Italic"),
        url("../fonts/Poppins-MediumItalic.woff") format("woff");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    src:
        local("Poppins SemiBold"),
        url("../fonts/Poppins-SemiBold.woff") format("woff");
}

@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 600;
    src:
        local("Poppins SemiBold Italic"),
        url("../fonts/Poppins-SemiBoldItalic.woff") format("woff");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    src:
        local("Poppins Bold"),
        url("../fonts/Poppins-Bold.woff") format("woff");
}

@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 700;
    src:
        local("Poppins Bold Italic"),
        url("../fonts/Poppins-BoldItalic.woff") format("woff");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 800;
    src:
        local("Poppins ExtraBold"),
        url("../fonts/Poppins-ExtraBold.woff") format("woff");
}

@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 800;
    src:
        local("Poppins ExtraBold Italic"),
        url("../fonts/Poppins-ExtraBoldItalic.woff") format("woff");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 900;
    src:
        local("Poppins Black"),
        url("../fonts/Poppins-Black.woff") format("woff");
}

@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 900;
    src:
        local("Poppins Black Italic"),
        url("../fonts/Poppins-BlackItalic.woff") format("woff");
}

:root {
    --virgin-red: #e10a0a;
    --virgin-blue: #4a4aff;
    --virgin-dark-blue: #101835;
    --virgin-midnight: #131c35;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--virgin-dark-blue);
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

.bg-virgin-red {
    background-color: var(--virgin-red) !important;
}

.bg-virgin-blue {
    background-color: var(--virgin-blue) !important;
}

.bg-virgin-dark-blue {
    background-color: var(--virgin-dark-blue) !important;
}

.text-virgin-red {
    color: var(--virgin-red) !important;
}

.text-virgin-blue {
    color: var(--virgin-blue) !important;
}

.text-virgin-dark-blue {
    color: var(--virgin-dark-blue) !important;
}

.bg-custom-dark {
    background-color: #1a2333;
}

.w-3 {
    width: 0.75rem;
}

.h-3 {
    height: 0.75rem;
    display: inline-block;
}

/* ==========================================================================
   Componentes
   ========================================================================== */
.section-separator {
    border-bottom: 2px solid var(--virgin-red);
}

.btn-virgin-red {
    background-color: var(--virgin-red);
    border-color: var(--virgin-red);
    color: white;
}

.btn-virgin-red:hover {
    background-color: #c40026;
    border-color: #c40026;
    color: white;
}

.btn-virgin-blue {
    background-color: var(--virgin-blue);
    border-color: var(--virgin-blue);
    color: white;
    height: 100%;
    border-radius: 10px;
    max-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-virgin-blue:hover {
    background-color: #3a3ae0;
    border-color: #3a3ae0;
    color: white;
}

.btn-custom-red {
    background-color: var(--virgin-red);
    color: white;
    border-radius: 5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    padding: 0.2rem;
    gap: 0.3rem;
}

.btn-custom-blue {
    background-color: #0b1c7c;
    color: white;
    border-radius: 5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    padding: 0.2rem;
    gap: 0.3rem;
    width: 50%;
    height: fit-content;
}

.btn-custom-red img,
.btn-custom-blue img {
    width: 17px;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #6c757d;
    border-radius: 0.25rem;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
}

.custom-checkbox:checked {
    background-color: var(--virgin-blue);
    border-color: var(--virgin-blue);
}

.custom-checkbox:checked::before {
    content: "✓";
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: bold;
}

h1 span {
    display: block;
    font-size: 2.9rem;
    font-weight: 700;
}

nav {
    border-radius: 19px;
    background: var(--virgin-red, #e10a0a);
    box-shadow: 0 4px 34px 0 rgba(0, 0, 0, 0.08);
}

.active {
    color: #fff;
    font-weight: 600;
    border-bottom: 2px solid #fff;
    padding-bottom: 1rem;
}

.hero-image-container {
    position: relative;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    border-radius: 1.5rem;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    background: white;
    color: var(--virgin-dark-blue);
    padding: 1.5rem;
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
    width: 40%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-features {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--virgin-red);
    color: white;
    padding: 1.5rem;
    border-radius: 1.5rem;
    width: 80%;
    height: 80%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%, 0 80%);
}

.intro p {
    color: var(--virgin-midnight, #131c35);
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.package-card {
    display: flex;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.package-side {
    background: var(--virgin-red);
    color: white;
    padding: 1rem;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.package-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--virgin-dark-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-bottom-right-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.benefits h3 {
    color: var(--virgin-red, #e10a0a);
    text-align: center;
    font-style: normal;
    font-weight: 600;
    font-size: 1.4rem;
}

.step-number {
    background-image: url(../img/bg-number.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    color: white;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-icon img {
    width: 4rem;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.benefit-card {
    background: #f3f2f0;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 0;
    width: 100%;
    min-height: 5rem;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control-lg {
    font-size: 0.95rem;
}

button.btn-form {
    border-radius: 10px;
    border: 2px solid var(--virgin-midnight, #131c35);
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    background-color: white;
    max-height: 3rem;
}

a.btn-form {
    border-radius: 10px;
    border: 2px solid var(--virgin-midnight, #131c35);
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    background-color: white;
    max-height: 3rem;
    text-decoration: none;
    color: #000;
}

label.text-muted.small {
    font-size: 0.57rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.main-card {
    border-radius: 20px;
    position: relative;
    padding: 0;
    z-index: 1;
    width: 70%;
    justify-content: space-between;
    margin: 1rem 0px;
    box-shadow: 1px 5px 13px 0px rgb(0 0 0 / 28%);
}

.main-card .info-minutos-sms {
    font-size: 0.7rem;
}

.badge.rounded-pill {
    z-index: 9;
    top: -1rem;
    position: absolute;
    border-radius: 10px !important;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
}

.main-card::before {
    content: "";
    position: absolute;
    top: 22%;
    left: 0;
    width: 100%;
    background-image: url(../img/red.svg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
    height: 8rem;
}

.left-section {
    background-color: var(--virgin-red);
    color: white;
    padding: 2rem;
    position: relative;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.left-section .display-1 {
    font-size: 3.3rem !important;
    text-align: left;
}

.left-section .display-6 {
    font-size: 2rem !important;
    font-weight: 500 !important;
}

.right-section {
    background-color: #f3f2f0;
    padding: 1.3rem;
    color: var(--virgin-dark-blue);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.right-section p.numero-gigas {
    font-size: 1.7rem;
    font-weight: 700;
}

.right-section p.numero-gigas span {
    font-size: 0.8rem;
}

.icon-container {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
}

.icon-container img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0.25rem;
}

.redes-ilimitadas-block {
    border-right: 2px solid var(--virgin-red);
    max-height: 7rem;
}

.package-image-mobile {
    max-width: 100%;
    margin: -3rem 0 0 0;
}

.app-section-title {
    font-size: clamp(1.8rem, 1.5rem + 3.1vw, 2.5rem) !important;
}

.app-benefits-list {
    font-size: 1.1rem;
}

.purchase-section-title {
    font-size: clamp(1.8rem, 1.5rem + 1.1vw, 3rem) !important;
}

.delivery-info-text {
    font-size: clamp(1rem, 0.6rem + 2.1vw, 1.25rem);
}

.mes-gratis {
    background-color: white;
    color: var(--virgin-red);
    font-weight: 600;
    display: block;
    font-size: larger;
}

/* Contenedor principal del banner */
.curved-banner {
    position: relative;
    overflow: hidden;
    background-color: var(--virgin-dark-blue);
    border-radius: 1.5rem;
    /* rounded-4 de Bootstrap */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    min-height: 250px;
    /* Altura mínima para contenido */
}

/* Sección Roja: Aplicación del color y la forma curva */
.red-section {
    color: white;
    padding: 3rem 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    min-height: 250px;
}

/* Estilo para el texto */

.banner-text h2 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

/* Contenedor SVG para las líneas decorativas */
.banner-svg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: url(../img/mask-final-m.webp);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Estilo para la sección azul */
.blue-section {
    z-index: 2;
    color: white;
    padding: 3rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ==========================================================================
    Media Queries
   ========================================================================== */
@media (max-width: 768px) {

    .btn-custom-red,
    .btn-custom-blue {
        font-size: 0.7rem;
    }

    .package-card {
        flex-direction: column;
    }

    .package-side {
        width: 100%;
        clip-path: none;
        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem;
    }

    .hero-stats,
    .hero-features {
        position: relative;
        width: 100%;
        height: auto;
        border-radius: 1rem;
        margin-bottom: 1rem;
        clip-path: none;
    }

    .hero-image-container {
        height: auto;
        flex-direction: column;
    }

    .hero-image {
        position: relative;
        margin-bottom: 1rem;
    }
}

/* .loader{
    display: none;
} */

@media (min-width: 768px) {

    /* Contenedor SVG para las líneas decorativas */
    .banner-svg-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        background: url(../img/mask-final.webp);
        background-position: -19rem;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .red-section {}

    .blue-section {
        text-align: left;
        justify-content: flex-start;
    }

    .btn-custom-red,
    .btn-custom-blue {
        font-size: 0.7rem;
    }

    .left-section {
        padding: 2rem;
        position: relative;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .left-section .display-6 {
        font-size: 1.2rem !important;
        font-weight: 500 !important;
    }

    .main-card {
        width: 37.5%;
    }
}

.bottomRow {
    min-height: 2rem;
    background-color: #0b1129;
    position: sticky;
    bottom: 0;
    z-index: 999;
    display: none;
}

@media (min-width: 992px) {

    .h1,
    h1 {
        font-size: 2.2rem; 
    }

    h1 span {
        display: block;
        font-size: 4.2rem;
        font-weight: 700;
    }

    /* Contenedor SVG para las líneas decorativas */
    .banner-svg-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        background: url(../img/mask-final.webp);
        background-position: left;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .btn-custom-red,
    .btn-custom-blue {
        font-size: 0.7rem;
    }

    .badge.rounded-pill {
        top: -1rem;

        font-size: 0.7rem;
        font-style: normal;
        font-weight: 500;
    }

    .left-section {
        padding: 2rem 0.8rem;
    }

    .left-section .display-6 {
        font-size: 1rem !important;
        font-weight: 500 !important;
    }

    .main-card {
        width: 17.5%;
    }

    .left-section .display-1 {
        font-size: 2.1rem !important;
        text-align: left;
    }
}

@media (min-width: 1024px) {

    .btn-custom-red,
    .btn-custom-blue {
        font-size: 0.7rem;
    }

    .left-section .display-1 {
        font-size: 2rem !important;
    }

    .left-section {
        padding: 2rem 0.6rem;
    }
}

@media (min-width: 1400px) {
    .mes-gratis {
        font-size: larger;
    }

    .btn-custom-red,
    .btn-custom-blue {
        font-size: 0.7rem;
    }

    .badge.rounded-pill {
        top: -1rem;
        font-size: 0.9rem;
        font-style: normal;
        font-weight: 500;
    }

    .left-section {
        padding: 1.4rem;
    }
}