@charset "utf-8";

/* ===========================
   Global Variables
=========================== */

:root {
    --color-yellow: #ffd600;
    --color-blue: #5242ea;
    --color-black: #151515;
    --color-white: #fcfefe;
    --color-light-grey: #f5f5f4;
    --color-dark-grey: #393a3a;
    --color-light-blue: #dee9fb;
    --color-light-purple: #d99bff;
}

/* ===========================
   General Styles
=========================== */

html,
body {
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#content {
    flex-grow: 1;
}

.bg-banner {
    background-color: #fbf7e1;
    background-image: url("Images/slide.png");
    background-position: right top;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
}

@media (max-width: 767px) {
    .bg-banner {
        background-image: none;
    }
}

.bg-footer {
    background-color: var(--color-yellow);
    height: 180px;
    padding-left: 30px;
}

.bg-footer a {
    text-decoration: none;
}

.bg-precio,
.bg-amarillo {
    background-color: var(--color-yellow);
}

.bg-gratis {
    background-color: var(--color-light-grey);
}

.bg-basico {
    background-color: #f1e9f5;
}

.bg-equipos {
    background-color: var(--color-light-blue);
}

/* ===========================
   Button Styles
=========================== */
.btn-yellow,
.custom-btn {
    background-color: var(--color-yellow);
    color: var(--color-black);
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

.btn-yellow:hover,
.custom-btn:hover {
    background-color: #e0b500;
}

.btn-yellow {
    border-color: var(--color-yellow);
}

.custom-btn {
    background-color: #ffc700;
}

.custom-btn:hover {
    background-color: #e0b500;
}

.btn-hover-effect {
    background-color: #FFC107;
    color: #212529;
    transition: all 0.3s ease;
}

/* ===========================
   Text Styles
=========================== */

.titulos,
.titulos2 {
    color: var(--color-dark-grey);
    font-family: 'Roboto', sans-serif;
}

.titulo {
    color: #dee9fb;
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
}

.titulos {
    font-size: 1.8rem;
}

.titulos2 {
    font-size: 2.3rem;
}

@media (max-width: 768px) {

    .titulos,
    .titulo,
    .titulos2 {
        text-align: center;
    }
}

.txtcarousel,
.txtfaqs {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
}

.txt {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .txt {
        font-size: 1.2rem;
    }
}

@media (min-width: 992px) {
    .txt {
        font-size: 1.4rem;
    }
}

@media (min-width: 1200px) {
    .txt {
        font-size: 1.3rem;
    }
}

.txttitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: var(--color-dark-grey);
}

.txttitle2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    color: var(--color-dark-grey);
}

/* ===========================
   Miscellaneous Styles
=========================== */

.titular {
    font-family: 'Roboto', sans-serif;
}

.hr {
    border: none;
    height: 3px;
    background-color: #333;
}

/* ===========================
   Swiper Styles
=========================== */

.swiper-img {
    max-width: 100%;
    height: auto;
}

.swiper-series {
    display: block;
    margin: 0 auto;
    max-width: 50%;
    height: auto;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 767px) {
    .swiper-slide {
        width: 100% !important;
    }
}

/* ===========================
   Card Header Styles
=========================== */

.card-header2:first-child {
    border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
    background-color: var(--color-yellow);
}

/* ===========================
   Card 
=========================== */
.landing .card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.landing .card {
    height: 380px;
    /* Ajusta este valor según la altura que desees */
}
.full-control-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.right-text-container {
    flex: 1;
    padding-right: 20px;
}

.left-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-image {
    max-width: 100%;
    height: auto;
}

.titlecontrol {
    font-size: 2rem;
}

.text-control {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 90%;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 767px) {
    .full-control-section {
        flex-direction: column;
        text-align: center;
    }

    .right-text-container {
        padding-right: 0;
        padding-bottom: 20px;
    }

    .left-image-container {
        margin-top: 20px;
    }

    .left-image {
        width: 80%;
        height: auto;
    }

    .titlecontrol {
        font-size: 1.8rem;
    }

    .text-control {
        font-size: 1rem;
    }
}

.full-width-banner {
    width: 100%;
}

.swiper-container {
    width: 90%;
    margin: auto;
}

.swiper-slide img {
    width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .swiper-container {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .text-content {
        padding-top: 20px;
        /* Padding superior solo en móvil */
    }
}



@media (max-width: 768px) {
    .full-control-section_b {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
        /* Elimina el espacio entre elementos */
    }

    .right-text-container {
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .left-image-container {
        margin: 0;
        /* Elimina márgenes extra */
        padding: 0;
    }

    .left-image {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
}




/* ===========================
   Centered Styles
=========================== */

.centrado {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mi-padding {
    padding-bottom: 2px;
    background-color: transparent;
}

.full-width-banner {
    background-color: #222222;
    width: 100%;
    color: var(--color-white);
    text-align: center;
}

.fondo-azul {
    background-color: var(--color-blue);
    width: 100%;
    text-align: center;
    padding: 20px;
}

.banner-text {
    padding: 40px 0;
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    color: var(--color-white);
}

@media (max-width: 768px) {
    .banner-text {
        font-size: 1.3rem;
    }
}

.banner-text-bold {
    padding: 20px 0;
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    color: var(--color-white);
}

@media (max-width: 768px) {
    .banner-text-bold {
        font-size: 1.3rem;
    }
}

/* ===========================
   Image Container Styles
=========================== */

.image-container img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .content-section {
        flex-direction: column;
    }

    .image-container {
        text-align: center;
        margin-top: 20px;
    }
}

/* ===========================
   Four Column Section Styles
=========================== */

.four-column-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

.column {
    text-align: center;
}

.column-image {
    max-width: 20%;
    height: auto;
    border-radius: 10px;
}

.column-title {
    font-size: 1.8rem;
    margin: 10px 0;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

.column-text,
.column-text-producto {
    font-size: 1rem;
    color: #666;
    font-family: 'Roboto', sans-serif;
    text-align: justify;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .four-column-section {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Section Layouts
=========================== */

.full-width-section,
.full-width-analisis,
.full-control-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f9e65c;
}

.full-control-section_b {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    background-color: #f9e65c;

}

.full-width-section {
    background-color: var(--color-blue);
}

.full-width-analisis {
    background-color: var(--color-light-purple);
}

.full-control-section {
    background-color: var(--color-yellow);
}

.left-image-container {
    flex: 1;
    display: flex;
    justify-content: right;
    align-items: flex-end;
    margin-top: auto;
}

.left-image {
    max-width: 70%;
    height: auto;
}

.right-text-container,
.right-text-control {
    flex: 1;
    text-align: left;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title,
.titlecontrol {
    font-size: 2rem;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 10px;
}

.titleindex {
    font-size: 3rem;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 10px;
}

.title {
    color: var(--color-white);
}

.titlecontrol {
    color: var(--color-black);
}

.text-paragraph,
.text-control {
    font-size: 1rem;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
}

.text-paragraph {
    color: var(--color-white);
    width: 80%;
}

.text-control {
    color: var(--color-black);
    width: 80%;
}

.icon-hover img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.icon-hover:hover img {
    transform: scale(1.2);
    filter: brightness(1.3);
}

.card-img {
    width: 35%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 10px;
}

.card-titulo {
    font-size: 1.2rem;
    color: var(--color-black);
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-weight: bold;
}

.landing .card-text {
    font-size: 1rem;
    color: var(--color-black);
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

@media (max-width: 768px) {
    .card {
        margin-bottom: 1rem;
        /* Espaciado entre cards */
    }
}


.full-width-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1c1c1c;
    padding: 10px 0;
}

.swiper-slide img {
    width: 246px;
    max-height: 237px;
    object-fit: contain;
}

/* ===========================
   Full Width Section Styles (Mobile Version)
=========================== */
@media (max-width: 767px) {
    .full-width-section {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .left-image-container {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .left-image {
        max-width: 80%;
        /* Ajusta según el tamaño deseado */
        height: auto;
    }

    .right-text-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .text-paragraph {
        font-size: 1rem;
        text-align: center;
        width: 100%;
    }

    .btn {
        margin-top: 20px;
    }
}


/* ===========================
   Full Control Section (Mobile Version)
=========================== */
@media (max-width: 767px) {
    .full-control-section_b {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }

    .right-text-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 20px;
    }

    .titlecontrol {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .text-control {
        font-size: 1rem;
        text-align: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .btn {
        margin-top: 20px;
    }

    .left-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

    .left-image {
        max-width: 80%;
        /* Ajusta el tamaño de la imagen en móvil */
        height: auto;
    }
}

/* ===========================
   Full Width Analysis (Mobile Version)
=========================== */
@media (max-width: 767px) {
    .full-width-analisis {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .left-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    .left-image {
        max-width: 80%;
        /* Ajusta el tamaño de la imagen en móvil */
        height: auto;
    }

    .right-text-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .titlecontrol {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .text-control {
        font-size: 1rem;
        text-align: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .btn {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .text-content {
        text-align: center !important;
    }

    .text-content p {
        display: flex;
        justify-content: center;
    }
}

#userDropdown {
    border-radius: 8px;
    background-color: #ffc107;
}

#userDropdown > div{
    gap: 5px;
}