/* ********** GENERAL ********** */
body{
    font-family: "Poppins", sans-serif;
}
h1,
h2,
h3,
h4,
p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

:root {
    --red-netflix: #E50914;
}
.netflix-section-container{
    margin-top: 70px;
}

.btn-str-netflix {
    background-color: var(--red-netflix) !important;
    font-size: 1.5rem;
    border-radius: 50px;
    padding: 5px 20px 10px 20px;
    transition: all 0.3s ease;
    color: #fff !important;
}
.btn-str-netflix:focus{
    box-shadow: none;
}

.btn-str-netflix:hover {
    background-color: #000 !important;
    color: #fff;
}

.title-section {
    font-size: clamp(1.48rem, 1.2969rem + 0.7812vw, 2rem);
    font-weight: 200;
    text-align: center;
}

.subtitle-section {
    font-size: clamp(1.48rem, 1.2969rem + 0.7812vw, 2rem);
    font-weight: 700;
    margin-bottom: 50px;
    margin-top: 5px;
    text-align: center;
}

.title-section span {
    font-weight: 700;
    color: var(--red-netflix);
}

.section-container {
    padding: 100px 0;
}


/* ********** HEADER ********** */
header {
    background-color: #f2f2f2;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-header img{
    width: 300px;
    height: auto;
}
.label__f label{
    font-size: clamp(0.7rem, 0.5944rem + 0.4507vw, 1rem);
    color: #373737;
    font-weight: 200;
}
.btn__f{
    border: 1px solid #373737;
    border-radius: 50px;
}
.btn__f input{
    border: none;
    background-color: transparent;
    padding: 3px 15px;
    width: 58.9%;
}
.btn__f input:focus{
    outline: none;
}
.enviarForm{
    background-color: #373737;
    color: #fff;
    border: none;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    cursor: pointer;
    width: 40%;
     padding: 3px 15px;
     transition: all 0.3s ease;
}
.enviarForm:hover{
    background-color: #000;
    color: #fff;
}

/* **********   MAIN ********** */

/*Activa Netflix*/
.activa-netflix p{
    font-size: clamp(1.4rem, 1.3296rem + 0.3005vw, 1.6rem);
    font-weight: 300;
}
.activa-netflix span{
    color: #E51B20;
    font-weight: 700;
}
.activa-netflix a{
    color: #000;
    font-weight: 700;
    text-decoration: none;
}

/* BENEFICIOS */
.beneficios-container{
    background-color: #bfbebb;
}



.beneficio{
    width: 100%;
    max-width: 222px;
    padding: 20px;
    height: 340px;
}
.beneficio img {
    width: 100%;
    max-width: 170px;
    margin-bottom: 10px;
}
.beneficio h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.beneficio p span{
    font-weight: 700;
}
.beneficio-sp{
    border-left: 1px solid #000;
    border-right: 1px solid;
}


/* FEATURED POSTERS */
.featured-posters-container {
    background-color: #d6d5d1;
    position: relative;
}
.triangle{
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.featured-posters {
    gap: 15px;
}

.featured-poster-content {
    position: relative;
    width: 100%;
    max-width: 350px;
    border-radius: 30px;
}

.featured-poster{
    width: 100%;
    border-radius: 30px;
}

.trailer-link {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--red-netflix);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    text-decoration: none !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    transition: all 0.3s ease;
}

.trailer-link:hover {
    background-color: #000;
    color: white;
    transform: scale(1.05);
}



/* PRICE CARDS */
.price-cards-container {
    background-color: #494949;
}

.price-cards {
    gap: 25px;
}

.price-card {
    border: 1px solid #fff;
    border-radius: 30px;
    padding: 30px 20px;
    max-width: 344px;
    color: #fff;

}

.price-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.price-card ul {
    list-style: none;
    padding-left: 0;
}

.price-card ul li {
    position: relative;
    padding-left: 28px;
}

.price-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    background-image: url('../images/netflix-lng/check.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.price-card img {
    width: 75%;
    margin-bottom: 30px;
}

.btn-price-card a {
    font-size: 1rem;
    color: #fff;
    background-color: var(--red-netflix);
    border-radius: 50px;
    width: 100%;
    display: inline-block;
    padding: 7px 0 12px 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-price-card a:hover {
    background-color: #141414;
    transform: scale(1.05);
}

/* NETFLIX ACTIVATION */
.activation-steps-container {
    background-color: #141414;
    position: relative;
}

.activation-steps {
    gap: 40px;

}
.activation-step{
 width: 100%;
 max-width: 300px;
}
.activation-step img {
    width: 100% ;
}

.activation-step p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    font-weight: 400;
}

.activation-step p span {
    color: var(--red-netflix);
    font-weight: 600;
}

.activation-steps-container .btn-activation:hover {
    background-color: #494949 !important;
}
.wt-text{
    color: #fff !important;
}
.enlaces-registro{
    font-size: 16px !important;
}
.reg-enlace{
    color:  #7CB7D6;
    transition: all 0.3s ease;
}
.reg-enlace:hover{
    color:  #5090b3;
}
.fw-text{
    font-weight: 700 !important;
        color: rgba(255, 255, 255, 0.6) !important;
}


/* FAQS */
.faqs-container {
    background-color: #d6d5d1;
    color: #fff;
}

.accordion {
    width: 100%;
    max-width: 1110px;
}

.card {
    background-color: #b3b3b3;
    border: none;
    border-radius: 50px !important;
    margin-bottom: 15px;
}

.card-header {
    background-color: #b3b3b3;
    border: none;
    border-radius: 50px !important;
    padding: 0;
}

.card-header .btn-str-netflix-faq {
    border-radius: 50px !important;
    background-color: #b3b3b3;
    box-shadow: none;
    color: #000;
    font-size: 1.1rem;
    padding: 20px;
    position: relative;
    width: 100%;
    text-align: left;
    border: none;
    text-decoration: none;
}

.card-header .btn-str-netflix-faq::after {
    content: '';
    background-image: url('../images/netflix-lng/desglose.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 35px;
    height: 35px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    background-color: #373737;
    border-radius: 50px;
}

.card-header .btn-str-netflix-faq[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg);
}

.card-header .btn-str-netflix-faq:focus {
    box-shadow: none;
    border-color: transparent;
}

.card-body {
    background-color: #b3b3b3;
    padding-top: 40px;
    margin-top: -30px;
    padding: 40px 30px 30px 30px;
    color: #000;
    border-radius: 0 0 50px 50px;
}

/* MODAL TRAILER */
.modal-content {
    background-color: transparent;
    border: none;
    border-radius: 15px;
}
.modal-header{
    border: none;
   
}



.modal-title {
    color: white;
    font-weight: 600;
}

.close {
    background-color: white !important;
    border: none;
    border-radius: 50px;
    color: #000;
    opacity: 0.8;
    cursor: pointer;
    padding: 5px 10px !important;
    font-size: 1.5rem;
}

.close:hover {
    opacity: 1;
    color: #000;
}

.modal-body {
    padding: 0;
    background-color: transparent;
    border-radius: 35px;
}

.modal-body iframe {
    border-radius: 0 0 15px 15px;
}

/* MODAL CONTRATACION */
#contratacionModal .modal-content {
    background-color: #fff;
}

#contratacionModal .modal-header h5 {
    font-weight: 700;
    font-size: 1.5rem;
    color: #000;
}

#contratacionModal .close {
    color: #000;
    opacity: 0.5;
}

.formulario__modal {
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 20px;
}

.label__modal label {
    font-size: 1.1rem;
    color: #373737;
    font-weight: 300;
    margin-bottom: 20px;
}

.btn__modal {
    border: 2px solid #373737;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.btn__modal .inp-modal {
    border: none;
    background-color: transparent;
    padding: 12px 20px;
    width: 65%;
    font-size: 1rem;
    color: #373737;
}

.btn__modal .inp-modal:focus {
    outline: none;
}

.btn__modal .inp-modal::placeholder {
    color: #999;
}

.enviarForm-modal {
    background-color: #373737;
    color: #fff;
    border: none;
    cursor: pointer;
    width: 35%;
    padding: 12px 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.enviarForm-modal:hover {
    background-color: #000;
    color: #fff;
}
button:focus{
    outline: none;
}

/* BANNER MOBILE */
.banner-movil {
    position: relative;
}

.banner-btn-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.btn-banner {
    background-color: var(--red-netflix);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
    width: 220px !important;
}

.btn-banner:hover {
    background-color: #000;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}


/** * Responsive Styles */

@media (max-width: 1438px) {
  .btn__f input{
    width: 58.4%;
}
}
@media (max-width: 991px) {
   .beneficio-sp{
    border-left: none;
    border-right: none;
   }
}
@media (max-width: 767px) {
    .beneficio{
    padding: 20px;
    max-width: 100%;

}
.card-header .btn-str-netflix {
    padding-right: 60px !important;
}
}
