section.content-general {
    background: white;
}

body {
    background: white !important;
}


p {
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #1F2E39;
}

h2 {
    font-family: Montserrat;
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

h3 {
    font-family: Montserrat;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}



span {
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

h2.counter-js {
    font-family: Montserrat;
    font-size: 55px;
    font-style: normal;
    font-weight: 900;
    line-height: 120%;
}

button.accordion-header span {
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

li {
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.accordion {
    /* max-width: 1100px; */
    margin: 50px 10vw;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;

}

.accordion-item {
    border-bottom: 2px solid #bfcdd873;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header:hover {
    background: #fafafa;
}

/* Icono circular */
.icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2f83d5;
    position: relative;
    transition: transform 0.3s ease;
}

.icon::before,
.icon::after {
    content: "";
    position: absolute;
    background: white;
}

.icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Cuando está activo cambia a - */
.accordion-item.active .icon::after {
    display: none;
}

.accordion-content {
    display: none;
    padding: 0 0 30px 0px;
    color: #555;
}

.accordion-item.active .accordion-content {
    display: block;
}

/* Stats */
.stats {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat h2 {
    font-size: 55px;
    color: #2f83d5;
    margin: 0px;
}

.stat p {
    font-size: 14px;
    color: #444;
}

/*  BANNER  */
.banner .desktop {
    display: block;
}

.banner .mobile {
    display: none;
}

.banner {
    position: relative;
    /* height: 710px; */
    overflow: hidden;
}

.banner picture {
    width: 100%;
    height: 100%;
    display: block;
    transform: scale(1.22);
    transform-origin: center;
}


.banner picture img {
    width: 100%;
    height: 100%;
    max-height: 35vw;
    object-fit: cover;
}

.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
    pointer-events: none;
}

.banner__content {
    z-index: 2;
}


.banner__content {
    position: absolute;
    top: 50%;
    left: 4%;
    transform: translateY(-40%);
    max-width: 50vw;
    color: white;
    z-index: 2;
}

.banner__content h1 {
    letter-spacing: 0px;
    line-height: 1.12;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 45px;
    margin-bottom: 15px;
}

.banner__content p {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    font-weight: lighter;
    font-family: Open Sans, Light;
    color: white;
}

.btn-outline {
    border: 2px solid white;
    padding: 12px 24px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: .3s;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.btn-outline:hover {
    background: white;
    color: black;
}

/* ===== CONTENEDOR ===== */
.tabs {
    width: 100%;
    background: #f2f2f2;
    border-top: 1px solid #bfcdd8;
    border-bottom: 1.5px solid #bfcdd8;
    position: relative;
    z-index: 1000;
}

.tabs.is-fixed {
    position: fixed;
    left: 0;
    width: 100%;
}

/* Wrapper centrado */
.tabs__wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
}

/* ===== TAB ===== */
.tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 0;
    color: #707477;
    cursor: pointer;
    position: relative;
    transition: .3s;
    text-align: center;
    font-family: Montserrat;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;

}

/* ===== LINEAS INTERMEDIAS ===== */
.tab:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 22px;
    background: #bfcdd8;
}

/* ===== TAB ACTIVO ===== */
.tab.active {
    color: #2F83D5;
    font-weight: 600;
}

/* Hover suave */
.tab:hover {
    color: #2F83D5;
    font-weight: 600;
}

/* CONTENEDOR GENERAL */
.content {
    width: 100%;
    /* max-width: 1100px; */
    margin: 85px 0;
    padding: 0px 10vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* Separación visual entre bloques */
.content:not(:last-child) {
    border-bottom: 1px solid #bfcdd8;
    padding-bottom: 80px;
}

section#medios {
    border-bottom: 0;
    padding-bottom: 0px;
}

section#seo,
section#analitica,
section#decoracion {
    border-top: 1px solid #bfcdd8;
    padding-top: 80px;
    border-bottom: 0;
    padding-bottom: 0px;
}


/* COLUMNAS*/
.izquierda,
.derecha {
    width: 50%;
}


/*  TIPOGRAFÍA*/
.content h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.content h3 {
    font-size: 34px;
    font-weight: 800;
    margin: 20px 0 10px;
}

.content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b4b4b;
    max-width: 420px;
}

#Multimarca h2,
#decoracion h2 {
    font-size: 36px;
}


section#Multimarca .izquierda,
section#decoracion .izquierda {
    width: 40%
}

section#Multimarca .derecha,
section#decoracion .derecha {
    width: 60%
}

section#Multimarca .derecha p,
section#decoracion .derecha p {
    max-width: 90%;
}

section#Multimarca {
    border-bottom: 0;
    padding-bottom: 0px;
}

/* Logo pequeño */
#ecommerce .izquierda img {
    max-width: 130px;
    margin-top: 25px;
}

/* Segunda sección imagen izquierda */
/* .content.reverse {
    flex-direction: row-reverse;
} */

/* TITULOS  */

.tab-content .titulo_pl {
    font-size: 18px;
    font-weight: 700;
    margin-top: 35px;
}

/* CAJA LOGROS */

.tab-content>section {
    padding: 35px 0px 50px 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

div#Marketplace-logros,
div#decoracion-logros {
    width: auto;
    margin: 85px 10vw;
    padding: 0px 92px;
    border: 1px solid #d4e2ed;
    background: #fbfbfb;
}

/*  COLUMNAS  */

.tab-content .izquierda {
    width: 280px;
    padding-right: 40px;
    border-right: 1px solid #d4e2ed;
}

.tab-content .derecha {
    flex: 1;
}


/*  NUMERO  */

.tab-content .izquierda h2 {
    font-size: 52px;
    font-weight: 800;
    color: #1e7be7;
    margin-bottom: 10px;
}


/*  TEXTOS  */

.tab-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}


/*  ACCIONES  */

.lista-acciones {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 30px;
}

.lista-acciones li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}


/* Bullet azul cuadrado */

.lista-acciones li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #1e7be7;
    position: absolute;
    left: 0;
    top: 8px;
    border-radius: 50%;
}

div#decoracion-acciones,
div#Marketplace-acciones {
    margin: 85px 10vw;
}

#decoracion-acciones h3.titulo_pl,
div#Marketplace-acciones h3.titulo_pl {
    margin: 25px 0;
}

.btn-outline {
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

/* mobile */
@media (max-width:1024px) {

    .derecha img,
    .izquierda img {
            margin: 20px 0 0 0;
            display: block;
            max-width: 100%;
            height: auto;
            -o-object-fit: cover;
            object-fit: cover;
    }


    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .banner__content.animate p {
        opacity: 1;
        transform: none !important;
        transition: none !important;
        transition-delay: 0;
    }

    .banner__content.animate h1 {
        opacity: 1;
        transform: none !important;
        transition: none !important;
    }

    section#Multimarca .derecha p,
    section#decoracion .derecha p {
        max-width: none;
    }

    .tabs__wrapper {
        overflow-x: auto;
    }

    .banner .desktop {
        display: none;
    }

    .banner .mobile {
        display: block;
        width: 100%;
        height: 100%;
        max-height: 120vw;
    }

    .banner {
        height: 100%;
        max-height: 120vw;
    }

    .banner__content h1 {
        line-height: 1.12;
    }

    .banner__content {
        position: absolute;
        top: 47%;
        left: 3%;
        transform: translateY(-40%);
        max-width: 75vw;
        color: white;
    }

    .btn-outline {
        padding: 12px 30px;
    }

    .content.reverse {
        flex-direction: column-reverse;
    }

    .stats {
        display: flex;
        flex-direction: column;
    }

    .stats .stat {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .accordion-header span {
        font-size: 18px;
    }

    .accordion-content p {
        font-size: 16px;
    }

    p {
        text-align: justify;
    }

    .stats .stat:nth-child(1) p {
        width: 100%;
        max-width: 70%;
    }

    .stats .stat:nth-child(2) p {
        width: 100%;
        max-width: 50%;
    }

    .stats .stat:nth-child(3) p {
        width: 100%;
        max-width: 40%;
        justify-content: left;
    }

    .stat h2 {
        font-size: 45px;
    }

    section#analitica .derecha,
    section#Multimarca .derecha,
    section#decoracion .derecha {
        width: 100%;
    }

    section.content.mover h3,
    section.content.mover h3,
    section#Multimarca h2,
    section#seo h2 {
        text-align: left;
    }

    section#Multimarca .izquierda {
        width: 50%;
    }

    section#Multimarca {
        gap: 0px;
        display: flex;
        align-items: flex-start;
    }

    section#Multimarca .derecha p {
        margin: 0;
    }

    div#Marketplace-logros,
    div#decoracion-logros {
        margin: 35px 10vw;
        padding: 0px 40px;
    }

    div#Marketplace-logros h2 {
        text-align: left;
    }

    div#decoracion-acciones,
    div#Marketplace-acciones {
        margin: 40px 10vw;
    }

    div#decoracion-logros .izquierda h2 {
        text-align: left;
    }

    section#decoracion .izquierda {
        width: 50%;
    }

    section#decoracion {
        padding-top: 0;
        display: flex;
        align-items: flex-start;
    }

    section#decoracion .derecha p {
        margin: 0;
    }

    #decoracion h2 {
        display: flex;
        justify-content: flex-start;
    }

    .lista-acciones {
        margin: 0;
    }

    section#decoracion .derecha p {
        max-width: 100%;
    }

    .tab-content>section {
        gap: 0px;
    }

    .banner__content.animate p {
        color: #FFF;
        font-family: "Open Sans";
        font-size: 13px;
        font-style: normal;
        line-height: 120%;
        font-weight: 400;
    }


}


@media (max-width: 992px) {

    .content {
        flex-direction: column;
        text-align: center;
        gap: 0px;
        margin: 60px auto;
        padding: 0px 10vw;
    }

    .izquierda,
    .derecha {
        width: 100%;
    }

    .content p {
        margin: auto;
        text-align: justify;
    }

    #ecommerce img {
        margin: 20px 0 0 0;
    }


    .content h2 {
        font-size: 55px;
        text-align: left;
    }

    .content h3 {
        font-size: 36px;
    }

    section.content.mover {
        display: flex;
        flex-direction: column-reverse;
    }

}

@media (max-width: 768px) {

    .tab-content>section {
        flex-direction: column;
        text-align: center;
    }

    .tab-content .izquierda {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #bfcdd8;
        padding-right: 0;
        padding-bottom: 20px;
    }

    .tab-content .derecha {
        padding-top: 15px;
    }

    .lista-acciones li {
        text-align: left;
    }

}

@media (max-width:450px) {

    

    .banner,
    .banner .mobile {
        max-height: 150vw;
    }

    .content h2 {
        font-size: 50px !important;
    }
}

@media (max-width:380px) {

    .content h2 {
        font-size: 40px !important;
    }

    .brand img {
        max-width: 40vw;
    }
}

@media (max-width:350px) {
    .tab {
        min-width: 140px;
        white-space: nowrap;
    }
}

/* animacion */

.banner__content h1 {
    opacity: 0;
    transform: translateX(-80px);
}

/* animación al cargar */
.banner__content.animate h1 {
    opacity: 1;
    transform: translateX(0);
    transition:
        transform 1s cubic-bezier(.22, .61, .36, 1),
        opacity .9s ease;
}

/* párrafo */
.banner__content p {
    opacity: 0;
    transform: translateX(-60px);
}

.banner__content.animate p {
    opacity: 1;
    transform: translateX(0);
    transition: all .8s ease;
    transition-delay: .4s;
}


.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22, .61, .36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.arrow-svg {
    display: inline-flex;
    align-items: center;
    margin: 0 10px;
    color: #3b82c4;
}

.flecha {
    display: flex;
    justify-content: center;
}

.arrow-svg svg {
    height: 15px;
    width: auto;
}

.newsletter.servicio .line {
    bottom: 15px;
}

header.header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}