/* Fuente Krona One */
@font-face {
    font-family: 'Krona One';
    src: url('../fonts/Krona_One/KronaOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Fuente Poppins (Regular, Medium y Bold) */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.font-primary {
    font-family: 'Krona One', sans-serif;
}

.font-secondary {
    font-family: 'Poppins', sans-serif;
}

body {
    color: #f8f8f8;
    margin-bottom: 64px;
    padding: 0;
    background-image: url('../images/background.png');
    background-color: rgba(0, 0, 0, 0.91);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
}



/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    /* Semi-transparent white (adjust opacity as needed) */
    backdrop-filter: blur(10px);
    /* Optional: Adds a subtle blur effect to the background */

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Optional: Adds depth */
    width: 100%;

}

/* Logo */
.logo img {
    width: 80%;
    height: auto;
}

/* Menú */
.menu {
    background: rgba(13, 13, 13, 0.7);
    padding: 10px 25px;
    border-radius: 14px;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

/* Elementos del menú */
.menu li {
    margin: 0 15px;
}

.menu a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s;
}

/* Activo */
.menu .active a {
    font-weight: bold;
}

/* Hover */
.menu a:hover {
    color: #e0e0e0;
}

/* Botones */
.button-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Estilo botones */
.sign-in {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.sign-in:hover {
    color: #e0e0e0;
}

.login-button {
    background: #e46b31;
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 32px;
    border-radius: 12px;
    transition: background 0.3s, transform 0.2s;
}

.login-button:hover {
    background: #d85a1f;
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 1002;
}

/* Estilo adicional opcional */
.menu-toggle:focus {
    outline: none;
}

.close-menu {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    margin-bottom: 20px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* dropdown languaje */
/* ===== Language Dropdown ===== */
.lang-dd {
    position: relative;
    margin-left: 16px;
}

.lang-dd__button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 13, 13, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    line-height: 1;
}

.lang-dd__button:focus {
    outline: 2px solid #3a86ff;
    outline-offset: 2px;
}

.lang-dd__flag {
    font-size: 18px;
}

.lang-dd__label {
    font-size: 14px;
}

.lang-dd__code {
    opacity: 0.7;
    font-size: 12px;
}

.lang-dd__chev {
    margin-left: 4px;
    opacity: 0.8;
}

.lang-dd__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    background: rgba(20, 20, 20, 0.92);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 8px 0;
    list-style: none;
    margin: 0;
    display: none;
    z-index: 1003;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.lang-dd__menu.is-open {
    display: block;
}

.lang-dd__item {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #f0f0f0;
    cursor: pointer;
    font-size: 14px;
}

.lang-dd__item .flag {
    font-size: 18px;
}

.lang-dd__item .code {
    opacity: 0.6;
    font-size: 12px;
}

.lang-dd__item:hover,
.lang-dd__item:focus {
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 992px) {
    .lang-dd {
        margin: 12px 0 0 0;
    }

    .lang-dd__menu {
        right: 0;
        left: auto;
    }
}

.hero-container {
    padding-right: 32px;
}

.hero-title {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    font-family: 'Krona One', sans-serif;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    margin-top: 10px;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
}

.hero-button {
    background: #e46b31;
    color: white;
    white-space: nowrap;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 24px;
    border-radius: 32px;
    transition: background 0.3s, transform 0.2s;
    font-family: 'Poppins', sans-serif;
}

.hero-button:hover {
    background-color: #d85a1f;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #333;
    border: 6px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Cards */
.title-container-cards {
    font-size: 40px;
    font-weight: 400;
    font-family: 'Krona One', sans-serif;
}

.section-three .row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.section-three h1 {
    font-size: clamp(28px, 4vw, 28px);
    font-weight: 400;
    font-family: 'Krona One', sans-serif;
    line-height: 1.2;
    margin: 0;
}

.section-four {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 12px;
}

.section-four h1 {
    font-size: clamp(28px, 4vw, 32px);
    font-weight: 400;
    font-family: 'Krona One', sans-serif;
    line-height: 1.2;
    margin: 0;
}

.section-three p {
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    margin-top: 12px;
    line-height: 1.5;
}

.testimonial-card {
    background-color: #3E3C3D;
    border-radius: 15px;
    color: white;
    border: none;
    /* margin-bottom: 18px; */
    height: 100%;
}

.testimonial-card p {
    font-size: 14px !important;
    font-family: 'Poppins', sans-serif;
}


/* Estrellas */
.stars {
    font-size: 16px;
    color: gold;
}

/* Texto del testimonio */
.testimonial-text {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

/* Avatar */
.avatar {
    width: 36px;
    border-radius: 50%;
}

/* Nombre del usuario */
.user-name {
    font-size: 12px;
    font-weight: 400;
    color: #BCB9B4 !important;
}

/* Rol del usuario */
.user-role {
    font-size: 12px;
    color: #BCB9B4 !important;
}

.pricing-card {
    background: #13161B;
    padding: 1rem;
    border-radius: 16px;
    text-align: left;
    color: white;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card h4 {
    font-size: 18px;
    margin-bottom: 24px;
    color: #FA6D11;
    font-weight: 300;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 500;
}

.pricing-card .btn {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    font-weight: 300;
}

.btn-most-popular {
    background: #FA6D11 !important;
    color: #1C1C1C !important;
    border: none;
}

.most-popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 180, 0, 0.1);
    color: #FA6D11;
    padding: 5px 10px;
    border-radius: 18px;
    font-size: 12px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    flex-grow: 1;
    font-size: 14px;
    font-weight: 300;
}

.pricing-card ul li {
    margin: 8px 0;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    padding-bottom: 8px;
}

.pricing-card ul li::before {
    content: "";
    background: url('../images/vineta.png') no-repeat center center;
    background-size: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.equal-height {
    display: flex;
    flex-wrap: wrap;
}

.equal-height>div {
    display: flex;
}

.section-try {
    border-radius: 18px;
    background-color: #F76513;
    padding: 18px 40px;
}

.btn-try {
    background-color: white;
    color: #F76513;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    padding: 6px 28px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.team-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.card-header {
    display: flex;
}

.team-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
}

.team-name {
    font-size: 16px;
    color: #F76513;
    margin: 10px 8px 0 12px;
    font-weight: 400;
    font-family: 'Krona One', sans-serif;
}

.team-role {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 0 0 0 12px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.linkedin-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: black;
    font-weight: bold;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 1rem;
    text-decoration: none;
}

.team-description {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.section-new {
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    padding: 32px 24px;
    margin-top: 64px !important;
    margin-bottom: 64px;
}

.section-new h3 {
    font-size: 28px;
    font-weight: 400;
    font-family: 'Krona One', sans-serif;
    text-align: left;
}

.section-new p {
    font-size: clamp(16px, 1.2vw, 14px);
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    max-width: 80%;
    margin-top: 12px;
    line-height: 1.5;
    text-align: left;
}

.section-green {
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    padding: 32px 24px;
    margin-top: 64px !important;
    margin-bottom: 64px;
}

.section-green h3 {
    font-size: 28px;
    font-weight: 400;
    font-family: 'Krona One', sans-serif;
    text-align: center;
}

.section-green p {
    font-size: 28px;
    font-weight: 400;
    font-family: 'Krona One', sans-serif;
    max-width: 100%;
    margin-top: 4px;
    line-height: 1.5;
    text-align: center;
}

.card-style-red {
    background: linear-gradient(121.9deg, #8C1823 0%, #110405 96.81%);
    border: none;
    border-radius: 8px;
    padding: 1.2rem;
    color: white;
    box-shadow: 0 0 15px rgba(140, 24, 35, 0.2);
    transition: transform 0.3s ease;
    height: 100%;
}

.card-style-green {
    background: linear-gradient(135deg, rgba(0, 183, 157, 1) 0%, rgba(0, 0, 0, 1) 100%);
    border-radius: 8px;
    padding: 1.2rem;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 183, 157, 0.3);
    transition: transform 0.3s ease;
    min-height: 90px;
}

.card-new-image {
    width: 42px;
    height: 42px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.card-content-green {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.gx-3 {
    --bs-gutter-x: 1rem;
}

.gy-3 {
    --bs-gutter-y: 1rem;
}

.title-color {
    color: #FA6D11;
}


.section-circles {
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    padding: 32px 24px;
    margin-bottom: 8px;
}

.section-circles h3 {
    font-size: 28px;
    font-weight: 400;
    font-family: 'Krona One', sans-serif;
    max-width: 40%;
    margin-top: 4px;
    line-height: 1.5;
}

.section-steps {
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    margin-bottom: 8px;
}

.section-steps h3 {
    font-size: 28px;
    font-weight: 400;
    font-family: 'Krona One', sans-serif;
    max-width: 33%;
    margin-top: 4px;
    line-height: 1.5;
    text-align: center;
}

.section-steps p {
    font-size: clamp(14px, 1.2vw, 10px);
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    margin-top: 12px;
    text-align: center;
    max-width: 40%;

}

.pricing-scroll-wrapper {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
}

/* ✅ Cada card con ancho fijo en mobile */
.pricing-scroll-wrapper>div {
    scroll-snap-align: start;
    flex: 0 0 85%;
    min-width: 280px;
}

.pricing-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}

.pricing-scroll-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.pricing-scroll-wrapper::-webkit-scrollbar-thumb {
    background-color: #444;
    border-radius: 4px;
}

/* .steps-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 4rem 1rem;
    margin-left: 5%;
}

.steps-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
}

.line-background {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    z-index: 1;
    pointer-events: none;
    top: 40px;
}


.step-1 {
    position: absolute;
    left: 132px;
}

.step-2 {
    position: absolute;
    left: 400px;
}

.step-3 {
    position: absolute;
    left: 660px;
}

.step-4 {
    position: absolute;
    top: 360px;
    left: 324px;
}

.step-5 {
    position: absolute;
    top: 360px;
    left: 670px;
} */

.step-item {
    text-align: center;
    z-index: 2;
    max-width: 180px;
}

.step-icon {
    width: 80px;
    margin-bottom: 0.5rem;
}

.step-text h3 {
    color: #ff6600;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-family: 'Poppins', sans-serif;
}

.step-text p {
    color: #fff;
    font-size: 0.9rem;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
}

/* padding H */

.padding-h {
    padding-block: 200px;
}

/* cta */
.cta-box {
    border: 1px solid white;
    border-radius: 1.5rem;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
}

.cta-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    font-family: 'Krona One', sans-serif;
}

.cta-text .highlight {
    color: #ff6a00;
}

.cta-button {
    background-color: white;
    color: #111;
    font-weight: 500;
    border: none;
    border-radius: 2rem;
    padding: 0.4rem 1rem;
    cursor: pointer;
    font-size: 0.7rem;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.cta-button:hover {
    background-color: #eee;
}

.image-fade-wrapper {
    width: 100%;
    overflow: hidden;
}

.faded-image {
    width: 100%;
    height: auto;
    display: block;

    /* Más suave: solo un poco de desvanecimiento en los bordes */
    -webkit-mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 1) 15%,
            rgba(0, 0, 0, 1) 85%,
            rgba(0, 0, 0, 0.2) 100%);

    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 1) 15%,
            rgba(0, 0, 0, 1) 85%,
            rgba(0, 0, 0, 0.2) 100%);
}

/* benefi */
/* La sección no tiene alto fijo: lo da la imagen */
.benefits {
    position: relative;
    width: 100%;
    min-height: clamp(700px, 100vh, 700px);
    padding-bottom: clamp(12px, 8vw, 160px);
}

.benefits-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.benefits-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    margin-top: 0;
    margin-top: -28%;
}

.benefits-overlay {
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.benefits-overlay .container {
    pointer-events: auto;
}

/* vuelve a habilitar clicks en el contenido */

.benefit-title {
    text-align: center;
    color: #fff;
    margin-bottom: 1.5rem;
    /* padding-top: 40%; */
    font-family: 'Krona One', sans-serif;
    align-content: center;
}

.benefit-box {
    background: #fff;
    color: #000;
    padding: 6px 40px;
    border-radius: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    text-align: center;
    max-width: fit-content;
    min-width: 200px;
}

.benefit-box b {
    font-weight: 600;
}

.padding-benefits-desktop {
    padding-inline: 20%;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    transform: scale(0.9);
    animation: fadeIn 0.7s ease-in-out forwards;
}

.padding-benefits-mobile {
    padding-inline: 0%;
    padding: 0px;
    display: none;
    transform: scale(0.9);
    animation: fadeIn 0.7s ease-in-out forwards;
}

.padding-benefits-mobile .col-12 {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centra horizontalmente las cajas */
}

.padding-v {
    padding-block: 18px;
}

.mobile-break {
    display: block;
    height: 0.1em;
}

.b-font-color {
    color: rgba(253, 206, 176, 1);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* benefit */

/* 🌟 Diseño responsivo */
@media (max-width: 748px) {

    .lang-dd {
        margin: 12px 0 0 0;
    }

    .lang-dd__menu {
        right: 0;
        left: auto;
    }

    .cta-box {
        border: 1px solid white;
        border-radius: 1.5rem;
        padding: 2rem 3rem;
        display: flex;
        justify-content: left !important;
        align-items: left !important;
        max-width: 1000px;
        margin: auto;
    }

    .cta-text {
        text-align: left !important;
    }

    .cta-text p {
        font-size: 0.9rem !important;
    }

    .cta-text h2 {
        font-size: 1.3rem !important;
    }

    .cta-partner {
        flex-direction: row;
        text-align: center;
        padding: 24px 18px !important;

    }

    .cta-btn {
        justify-content: left !important;
        margin-top: 15px;
    }

    .testimonial-card {
        margin-inline: 32px;
    }

    .mobile-break {
        display: inline;
    }

    .benefit-box {
        padding: 6px 40px;
        margin-bottom: 32px;
    }

    .padding-benefits-desktop {
        display: none;
    }

    .padding-benefits-mobile {
        display: block;
    }

    .benefit-title {
        font-size: 18px;
    }

    .benefits-section {
        margin-top: 24px !important;
    }

    .padding-h {
        padding-block: 10px;
    }

    .benefit-title {
        font-size: 18px;
        top: 2%;
        justify-content: center;
    }

    .benefit-title h3 {
        font-size: 20px;
        font-weight: 400;
        font-family: 'Krona One', sans-serif;
        width: 60%;
        text-align: center;
    }

    .cta-box {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem;
    }

    .cta-text {
        font-size: 1.5rem;
    }

    .cta-button {
        font-size: 0.95rem;
    }

    .container {
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .desktop-image {
        display: block;
    }

    .section-circle-desktop-image {
        display: block;
    }

    .section-steps-desktop-image {
        display: block;
    }

    .mobile-cards {
        display: none;
    }

    .section-two .row {
        align-items: center;
    }

    .section-new {
        margin-top: 0px !important;
        margin-bottom: 0px !important;
    }

    .section-new h3 {
        font-size: 16px;
    }

    .section-new p {
        font-size: 14px;
        max-width: 100%;
    }

    .section-green {
        margin-top: 0px !important;
        margin-bottom: 0px;
    }

    .section-green h3 {
        font-size: 15px;
        max-width: 100%;
        text-align: left;
    }

    .section-green p {
        font-size: 14px;
        max-width: 100%;
    }

    .card-content-green {
        display: flex;
        align-items: center;
        font-size: 12px;
        font-family: 'Poppins', sans-serif;
    }

    .section-circles h3 {
        font-size: 22px;
        max-width: 100%;
        text-align: center;
    }

    .section-steps h3 {
        font-size: 22px;
        max-width: 100%;
        text-align: center;
    }

    .section-steps p {
        font-size: 14px;
        max-width: 100%;
        text-align: center;
    }

    .step-text h3 {
        color: #ff6600;
        font-size: 16px;
        margin-bottom: 0.2rem;
        font-family: 'Poppins', sans-serif;
    }

    .step-text p {
        color: #fff;
        font-size: 12px;
        font-style: italic;
        font-family: 'Poppins', sans-serif;
    }

    .hero-title {
        font-size: 20px !important;
        font-weight: 400 !important;
        line-height: 1.2 !important;
        font-family: 'Krona One', sans-serif !important;
        text-align: center !important;
    }

    .hero-subtitle {
        font-size: 18px;
        font-weight: 400;
        margin-top: 10px;
        color: #e0e0e0;
        font-family: 'Poppins', sans-serif;
    }

    .special-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .special-col {
        width: 100%;
    }

    #long-text {
        padding-left: 0px !important;
    }

    #long-text h1 {
        font-size: 22px !important;
        font-weight: 400 !important;
        line-height: 1.2 !important;
        font-family: 'Krona One', sans-serif !important;
        text-align: center !important;

    }


    .video-container {
        margin-left: 2px !important;
    }

    .hero-container {
        padding: 4px !important;
    }

    .hero-button {
        background: #e46b31;
        color: white;
        white-space: nowrap;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        padding: 6px 24px;
        border-radius: 32px;
        transition: background 0.3s, transform 0.2s;
        font-family: 'Poppins', sans-serif;
    }

    .special-col {
        padding-left: 0 !important;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        flex-direction: column;
        background-color: #1b1b1b;
        padding: 40px 20px;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.4);
        transition: right 0.3s ease;
        z-index: 1001;
    }

    .menu.menu-open {
        right: 0;
    }

    /* Mostrar botón cerrar */
    .menu .close-menu {
        display: block;
        align-self: flex-end;
    }

    .menu ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu li {
        margin: 20px 0;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .button-container {
        display: none;
    }

    header {
        position: relative;
    }


    #pricing {
        padding-bottom: 12px;
    }

    .pricing-scroll-wrapper>div {
        flex: 0 0 80%;
    }
}

@media (max-width: 1200px) {


    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .logo {
        margin-bottom: 15px;
    }

    .menu {
        margin-bottom: 15px;
    }


    .hero-title {
        font-size: 40px;
        font-weight: 400;
        line-height: 1.2;
        font-family: 'Krona One', sans-serif;
    }

    .hero-subtitle {
        font-size: 18px;
        font-weight: 400;
        margin-top: 10px;
        color: #e0e0e0;
        font-family: 'Poppins', sans-serif;
    }

    .special-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .special-col {
        width: 100%;
    }

    .video-container {
        margin: 24px;
    }

    .hero-container {
        padding: 32px;
        margin: 24px;
    }

    .pricing-scroll-wrapper>div {
        flex: 0 0 40%;
    }
}


/* Footer */
.footer {
    background: #111;
    padding: 20px;
    border-radius: 20px;
    max-width: 90%;
    margin: 0 auto;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Logo y texto */
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.footer-logo {
    width: 120px;
    /* Ajusta según el tamaño real */
}

.footer-text {
    color: white;
    font-size: 14px;
    margin-top: 5px;
}

/* Menú */
.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

/* Iconos sociales */
.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.container-fluid {
    padding: 0;
}


#cookieBanner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background-color: #1B1B1B;
    color: #e0e0e0;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
    z-index: 9999;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

#cookieBanner p {
    margin: 0 0 10px;
    line-height: 1.5;
}

#cookieBanner a {
    color: #FA6D11;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

.cookie-btn {
    padding: 8px 14px;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.85rem;
}

.btn-accept {
    background-color: #FA6D11;
    color: #fff;
}

.btn-cancel {
    background-color: #777;
    color: #fff;
}

@media (max-width: 480px) {
    #cookieBanner {
        left: 10px;
        right: 10px;
        width: auto;
        bottom: 10px;
    }
}

.image-section {
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.desktop-image {
    display: none;
    width: 80%;
    max-width: 1100px;
    height: auto;
    transition: all 0.7s ease-in-out;
    padding-bottom: 96px;

}

.section-circle-desktop-image {
    display: none;
    width: 100%;
    max-width: 1800px;
    height: auto;
    transition: all 0.7s ease-in-out;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeIn 0.7s ease-in-out forwards;
}

.section-steps-desktop-image {
    display: none;
    width: 60%;
    max-width: 1000px;
    height: auto;
    transition: all 0.7s ease-in-out;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeIn 0.7s ease-in-out forwards;
}


.mobile-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeIn 0.7s ease-in-out forwards;
    padding-bottom: 96px;
}

.mobile-cards img {
    width: 98%;
}

.mobile-cards-roles {
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeIn 0.7s ease-in-out forwards;
}

.mobile-cards-roles img {
    max-width: 1200px;
}

.section-steps-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeIn 0.7s ease-in-out forwards;
    padding-bottom: 96px;
}

.button-repeat {
    width: 50% !important;
}

/* Animación de entrada */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media screen and (min-width: 768px) {
    .desktop-image {
        display: block;
    }

    .section-circle-desktop-image {
        display: block;
    }

    .section-steps-desktop-image {
        display: block;
    }

    .mobile-cards {
        display: none;
    }

    .section-steps-mobile {
        display: none;
    }

    .mobile-cards-roles {
        display: none;
    }


}

@media screen and (max-width: 768px) {
    .benefit-box {
        top: 60%;
        font-size: 0.95rem;
        max-width: 90%;
    }
}

:root {
    --cta-bg: rgba(247, 101, 19, 1);
    --cta-text: #fff;
    --btn-bg: #fff;
    --btn-text: rgba(247, 101, 19, 1);
}

.cta-partner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--cta-bg);
    color: var(--cta-text);
    padding: 24px 64px;
    border-radius: 20px;
    flex-wrap: wrap;
}

.cta-text {
    flex: 1 1 60%;
}

.cta-text h2 {
    font-size: 1.4rem;
    margin: 0 0 10px 0;
    font-weight: 400;
    color: var(--cta-text);
    font-family: 'Krona One', sans-serif;
}

.cta-text p {
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.cta-btn {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

.partner-btn {
    background-color: var(--btn-bg);
    color: var(--btn-text);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

.color-special-btn {
    background-color: var(--cta-bg);
    border: none !important;
    outline: none !important;
}


.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
    user-select: none
}

.lang-switch .track {
    position: relative;
    width: 46px;
    height: 24px;
    border-radius: 999px;
    background: #ddd;
    transition: background .2s
}

.lang-switch .thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
    transition: left .2s
}

.lang-switch[data-lng="es"] .thumb {
    left: 24px
}

.lang-switch[aria-checked="true"] .track {
    background: #4caf50
}

.lang-switch .lang {
    font-size: .9rem;
    opacity: .6
}

.lang-switch .lang.active {
    opacity: 1;
    font-weight: 600
}

header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
}

body {
    padding-top: var(--header-h, 80px);
}