/*
 * ============================================================================
 * ubody365 — style.css
 * Hoja de estilos principal del sitio.
 * Colores → colors.css | Fuentes → fonts.css
 * ============================================================================
 *
 * ÍNDICE DE ZONAS
 * ---------------
 * 01. Base y tipografía ............. :root, html, body, utilidades globales
 * 02. Page Loader ................... Pantalla de carga inicial
 * 03. Botones ....................... .btn, .btn-primary (global)
 * 04. Formularios ................... .form-control, .form-select (global)
 * 05. Header y navegación ........... .main-header, menús, idioma, Mi Espacio
 * 06. Home — Banner ................. .home-banner-section
 * 07. Home — Why Choose Us .......... .why-choose-section, .feature-card
 * 08. Home — Testimonios ............ .testimonials-section
 * 09. Home — Clientes ............... .our-clients-section
 * 10. Formulario DEMO ............... .demo-form-section, Select2, recaptcha
 * 11. Footer ........................ .main-footer
 * 12. Página Contacto ............... .contact-section, .contact-form
 * 13. Página Sobre Nosotros ......... .about-us-section
 * 14. Página Soluciones ............. .solution-section, botones «Lo quiero»
 * 15. Página Planes ................. .plans-section, .plan-form
 * 16. Páginas legales ............... .terms-privacy-wrapper
 * 17. Media Queries ................. Responsive (1549px → móvil)
 * ============================================================================
 */

/* ── ZONA 01: Base y tipografía ── */
:root {
    --font-roboto: "Roboto Slab", ui-serif, Georgia, serif;
    --bs-font-sans-serif: var(--font-roboto);
    --bs-body-font-family: var(--font-roboto);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 100px;
}



/* ── ZONA 02: Page Loader ── */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-content {
    text-align: center;
}
.loader-spinner {
    width: 80px;
    height: 80px;
    border: 4px solid var(--gray);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}
.loader-text {
    color: var(--dark-text);
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    background-color: var(--gray-100) !important; 
    color: var(--color-text-default); 
    font-family: var(--font-roboto); 
    font-size: 27px; 
    line-height: 1.35;  
}

button,
input,
select,
textarea,
.btn,
.form-control {
    font-family: var(--font-roboto);
}

a { 
    display: inline-block;
    text-decoration: none; 
    transition: all 0.3s ease-in-out;
    color: inherit;
}

li { 
    list-style: none; 
    line-height: unset; 
}

img { 
    max-width: 100%; 
    height: auto; 
    user-select: none; 
}

img:focus-visible, a:focus, .btn:focus, a:focus-visible, div:focus-visible { 
    outline: none; 
    box-shadow: none; 
}

p, h1, h2, h3, h4, h5, h6, ul { 
    margin: 0; 
    padding: 0; 
}

input[type=text]:focus, 
input[type=email]:focus, 
input[type=url]:focus, 
input[type=password]:focus, 
input[type=search]:focus, 
input[type=number]:focus, 
input[type=tel]:focus, 
input[type=date]:focus, 
textarea:focus,
select:focus { 
    outline: none; 
    border-color: var(--orange);
}

.heading-style-1 {
    font-size: 49px;
    color: var(--orange);
    font-weight: 200;
    line-height: 1;
}
.heading-style-2 {
    font-size: 44px;
    color: var(--orange);
    font-weight: 900;
}
.heading-style-3 {
    font-size: 34px;
    color: var(--color-text-default);
}
.heading-style-6 {
    font-size: 32px;
}
.heading-style-4 {
    font-size: 29px;
    color: var(--color-text-default);
}
.heading-style-5 {
    font-size: 23px;
    color: var(--color-text-default);
    line-height: 1.5;
}
.heading-style-7 {
    font-size: 27px;
    color: var(--color-text-default);
}
.p-small {
    font-size: 13px;
}

.text-orange {
    color: var(--color-primary);
}
a.text-orange:hover,
.text-orange:hover {
    color: var(--color-success);
}
.text-black {
    color: var(--black);
}

/* ── ZONA 03: Botones ── */
.btn {
    border-radius: 30px;
    font-weight: 600;
    text-transform: none;
    padding: 12px 20px;
    border: none;
    font-size: 13px;
    transition: all 0.3s ease-in-out;
}
.btn-primary {
    background-color: var(--color-primary);
    color: var(--white);
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-success);
    color: var(--white);
}
.btn-primary:active {
    background-color: var(--color-primary) !important;
    color: var(--white) !important;
}
.btn-large {
    font-size: 20px;
    font-weight: 700;
    padding-block: 10px;
}

/* ── ZONA 04: Formularios (global) ── */
.form-control,
.form-select {
    border-radius: 30px;
    border: none;
    padding: 9px 30px;
    font-size: 23px;
    line-height: 34px;
    font-weight: 400;
    background-color: var(--gray-light);
    color: var(--dark-text);
    height: auto;
}
.form-control::placeholder {
    color: var(--dark-text);
    opacity: 1;
}
.form-control:focus,
.form-select:focus {
    color: var(--dark-text);
    box-shadow: none;
    background-color: var(--gray-light);
}
.textarea-input {
    resize: none;
    height: 260px;
}
.input-dark, .input-dark:focus {
    background-color: var(--color-border-strong);
    color: var(--dark-text);
}

.main-wrapper {
    max-width: 1550px;
    margin: 0 auto;
}
.container {
    max-width: 1208px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── ZONA 05: Header y navegación ── */
.main-header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    transition: all 0.3s ease-in-out;
}
.main-header.nav-down {
    transform: translateY(0);
}
.main-header.nav-up {
    transform: translateY(-100%);
}
header.header-sticky {
    z-index: 40;
    background-color: rgba(255, 255, 255, 0.92);
    padding-top: 12px;
    padding-bottom: 12px;   
    box-shadow: 0 0 15px #4b4b4b52;
}

.navbar { padding: 0;}

.navbar .logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.navbar .logo img {
    display: block;
    height: 75px;
    width: auto;
}

.navbar-nav {
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}
.navbar-nav .nav-item {
    padding: 0px;
}
.nav-item .nav-link {
    color: var(--purple-500);
    font-weight: 400;
    font-size: 13px;
    padding: 10px 0px !important;
    text-transform: none;
}
/* .nav-item:last-child {
    border-left: solid 1px var(--orange);
    padding-left: 35px;
} */
.nav-item .nav-link.dropdown-toggle::after { display: none;}
.nav-item .nav-link:hover, .nav-item .nav-link.active, .navbar-nav .nav-item.sub-menu:hover > a{
    color: var(--color-interactive-hover);
}

.demo-btn-wrap-mobile {
    display: none;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 40px;
}
.header-actions .my-space {
    border-left: 1px solid var(--purple-500);
    border-right: 1px solid var(--purple-500);
    padding: 14px 40px;
    position: relative;
}
.header-actions .my-space img { display: none;}
.header-actions .my-space a {
    color: var(--color-primary);
    font-weight: 400;
    font-size: 13px;
    text-transform: none;
}
.header-actions .my-space a:hover, .header-actions .my-space a.active {
    color: var(--color-primary);
}

.navbar-toggler {
    border: 0;
    padding: 0;
    width: 26px;
    height: 26px;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler .bar {
    width: 26px;
    height: 2px;
    background-color: var(--black);
    margin: 5px 0;
    display: block;
}
.navbar-toggler.active .bar {
    transition: all 0.3s ease-in-out;
}
.navbar-toggler.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.navbar-toggler.active .bar:nth-child(2) {
    opacity: 0;
}
.navbar-toggler.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* Search icon button */
.search-wrap {
    position: relative;
}
.search-icon-btn {
    padding: 0px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-icon-btn svg {
    transition: transform 0.3s ease;
}

.search-icon-btn:hover svg {
    transform: scale(1.1);
}

/* Search box container */
.search-box-container {
    display: none;
    padding: 22px 13px;
    margin-top: 0;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    min-width: 413px;
    transform: translateY(14px) translateX(-50%);
    box-shadow: 0 0px 10px 3px rgb(0 0 0 / 13%);
    background-color: var(--white);
    border-radius: 10px;
}
/* Arrow shadow */
.search-box-container::after {
    content: '';
    position: absolute;
    top: -21px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 14px solid rgba(0, 0, 0, 0.27);
    filter: blur(6px);
    z-index: -1;
}
/* Arrow pointing up */
.search-box-container::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 20px solid white;
    z-index: 1;
}
.search-box-container.active {
    display: block;
    animation: slideDown 0.3s ease;
}


@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(30px) translateX(-50%);
    }
    to {
        opacity: 1;
        transform: translateY(10px) translateX(-50%);
    }
}

.search-box-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 10px 24px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 300;
    color: var(--black);
    background-color: var(--gray);
}
.search-input::placeholder, .search-input::-webkit-input-placeholder {
    color: var(--black) !important;
    opacity: 1 !important;
}
/* Password Input with Eye Icon */
.password-input-wrapper {
    position: relative;
}
.password-input-wrapper .search-input {
    padding-right: 50px;
}
.password-toggle-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}
.password-toggle-btn .eye-icon {
    width: 34px;
    pointer-events: none;
}
.header-actions .password-toggle-btn .eye-show {
    display: block;
}
.header-actions .password-toggle-btn .eye-hide {
    display: none;
}
.header-actions .password-toggle-btn.active .eye-show {
    display: none;
}
.header-actions .password-toggle-btn.active .eye-hide {
    display: block;
}


/* My space box container */
.my-space-box-container {
    display: none;
    padding: 24px 20px;
    margin-top: 0;
    position: absolute;
    top: calc(100% - 3px);
    left: 50%;
    min-width: 300px;
    transform: translateY(14px) translateX(-50%);
    box-shadow: 0 0px 10px 3px rgb(0 0 0 / 13%);
    background-color: var(--white);
    border-radius: 14px;
    z-index: 30;
}
/* Arrow shadow */
.my-space-box-container::after {
    content: '';
    position: absolute;
    top: -21px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 14px solid rgba(0, 0, 0, 0.27);
    filter: blur(6px);
    z-index: -1;
}
/* Arrow pointing up */
.my-space-box-container::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 20px solid white;
    z-index: 1;
}
.my-space-box-container.active {
    display: block;
    animation: slideDown 0.3s ease;
}
.my-space-box-wrapper .form-group {
    margin-bottom: 14px;
}
.my-space-box-container .search-input {
    background-color: var(--gray-light);
    color: var(--purple-500);
    font-weight: 400;
}
.my-space-box-container .search-input::placeholder,
.my-space-box-container .search-input::-webkit-input-placeholder {
    color: var(--purple-500) !important;
    opacity: 1 !important;
}
.my-space-box-container .password-toggle-btn .eye-icon {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(22%) sepia(68%) saturate(848%) hue-rotate(247deg) brightness(88%) contrast(92%);
}
.forgot-password-text {
    font-size: 13px;
    text-align: center;
    margin: 4px 0 16px;
}
.my-space-box-container .forgot-password-text a {
    color: var(--purple-500);
    text-decoration: none;
    font-weight: 400;
}
.my-space-box-container .forgot-password-text a:hover {
    color: var(--purple-700);
    text-decoration: underline;
}
.my-space-box-container #frm_restablecer h5,
.my-space-box-container #frm_restablecer p {
    color: var(--purple-500);
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 1.35;
}
.my-space-box-container #frm_restablecer h5 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: none;
}
.my-space-box-container .text-center {
    margin-top: 4px;
}
.my-space-box-container .btn.btn-primary.btn-large,
.my-space-box-container .btn.btn-primary.btn-large.recuperar_contrasena {
    width: 100%;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 700;
    text-transform: none;
    background-color: var(--purple-500);
    color: var(--white);
    border: none;
    border-radius: 30px;
}
.my-space-box-container .btn.btn-primary.btn-large:hover:not(:disabled),
.my-space-box-container .btn.btn-primary.btn-large:focus:not(:disabled),
.my-space-box-container .btn.btn-primary.btn-large.recuperar_contrasena:hover:not(:disabled),
.my-space-box-container .btn.btn-primary.btn-large.recuperar_contrasena:focus:not(:disabled) {
    background-color: var(--purple-700);
    color: var(--white);
}
.my-space-box-container .btn.btn-primary.btn-large:active:not(:disabled),
.my-space-box-container .btn.btn-primary.btn-large.recuperar_contrasena:active:not(:disabled) {
    background-color: var(--purple-700) !important;
    color: var(--white) !important;
}
.my-space-box-wrapper .btn {
    padding-inline: 30px;
}

/* Language dropdown */
.language-dropdown {
    position: relative;
}

.language-toggle {
    padding: 0px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.language-toggle img {
    width: 22px;
    height: 22px;
}

.language-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    border: none;
    box-shadow: 0 0px 10px 3px rgb(0 0 0 / 13%);
    padding:15px 0px;
    min-width: 84px;
    background-color: var(--white);
    border-radius: 10px;
    z-index: 10;
    opacity: 0;
    transform: translateY(14px) translateX(-50%);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
/* Arrow shadow */
.language-menu::after {
    content: '';
    position: absolute;
    top: -21px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 14px solid rgba(0, 0, 0, 0.27);
    filter: blur(6px);
    z-index: -1;
}
/* Arrow pointing up */
.language-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 20px solid white;
    z-index: 1;
}

.language-menu.active {
    display: block;
    opacity: 1;
    animation: slideDown 0.3s ease;
}

.language-menu li {
    margin: 0;
}

.language-menu a {
    display: block;
    padding: 8px 20px;
    color: var(--purple-500);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    text-align: center;
    opacity: 0.5;
}
.language-menu a img { margin-bottom: 5px;}
.language-menu a:hover, .language-menu a.active {
    color: var(--purple-500);
    opacity: 1;
}


/* SOLUCIONES Dropdown - Hover Style */
.sub-menu {
    position: relative;
}

.sub-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% - 15px);
    padding: 15px 0 0 0;
    left: 50%;
    z-index: 10;
    opacity: 0;
    border: 0;
    background: transparent;
    transform: translateY(14px) translateX(-50%);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.sub-menu .dropdown-menu ul {
    border: none;
    box-shadow: 0 0px 10px 3px rgb(0 0 0 / 13%);
    padding: 20px 40px;
    min-width: 230px;
    background-color: var(--white);
    border-radius: 10px;
    position: relative;
}
.sub-menu .planes-dropdown ul{
    min-width: 185px;
}
 /* Arrow shadow */
 .sub-menu .dropdown-menu ul::after {
    content: '';
    position: absolute;
    top: -21px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 14px solid rgba(0, 0, 0, 0.27);
    filter: blur(6px);
    z-index: -1;
}

/* Arrow pointing up */
.sub-menu .dropdown-menu ul::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 20px solid white;
    z-index: 1;
}

.sub-menu:hover .dropdown-menu {
    display: block;
    opacity: 1;
    animation: slideDown 0.3s ease;
}

/* Keep dropdown visible when hovering over menu items */
.sub-menu .dropdown-menu:hover {
    display: block;
    opacity: 1;
}

/* Standard dropdown menu */
.sub-menu .dropdown-item {
    padding: 5px 0px;
    font-size: 13px;
    font-weight: 400;
    color: var(--purple-500);
}

.sub-menu .dropdown-item:hover,
.sub-menu .dropdown-item.active {
    color: var(--color-primary);
    background: transparent;
}

.top-section {
    padding: 110px 0 0 0;
    max-width: 1550px;
    margin: 0 auto;
    border-radius: 20px 20px 0 0;
    background-color: var(--gray-surface);
}

.top-section:has(> .about-us-section) { border-radius: 16px; }

/* ── ZONA 06: Home — Banner ── */
.home-banner-section {
    margin: 70px auto 0;
    padding: 0 16px;
    max-width: 1356px;
}
.home-banner-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: clamp(275px, 12%, 140px);
    width: min(380px, 34%);
    max-width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    font-family: var(--font-roboto);
    transform: translateY(-2px);
    z-index: 1;
    padding: 0;
    box-sizing: border-box;
    pointer-events: none;
}
.home-banner-content > *,
.home-banner-copy > * {
    pointer-events: auto;
    font-family: inherit;
}
.home-banner-copy {
    width: 100%;
}
.home-banner-content .home-banner-title {
    color: var(--green-500);
    font-weight: 300;
    font-size: 47px;
    line-height: 1.05;
    letter-spacing: 0;
}
.home-banner-content .home-banner-subtitle {
    color: var(--color-success);
    font-weight: 400;
    font-size: 25px;
    line-height: 1.2;
    margin-top: 14px;
}
.home-banner-content .home-banner-list {
    margin-top: 16px;
    margin-bottom: 0;
}
.home-banner-content .home-banner-list li {
    color: var(--color-success);
    font-weight: 300;
    font-size: 23px;
    line-height: 1.35;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
    background: none;
}
.home-banner-content .home-banner-highlight {
    color: var(--green-500);
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    display: inline;
}
.home-banner-list {
    list-style: none;
    margin: 0;
}
.home-banner-list li {
    font-size: 25px;
    line-height: 1.35;
    font-weight: 300;
    color: var(--color-success);
    margin-bottom: 8px;
    padding: 0;
    background: none;
}
.home-banner-list li::before {
    content: "";
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 0.12em;
    background: url(../images/ul-list-icon.svg) no-repeat center / contain;
}
.home-banner-list li:last-child {
    margin-bottom: 0;
}
.home-banner-br-landscape {
    display: none;
}
.home-banner {
    position: relative;
    width: 100%;
    min-height: 0;
}
.home-banner-slider-wrapper,
.home-banner-slider,
.home-banner-slider .banner-image,
.home-banner-slider .banner-image img {
    display: block;
    width: 100%;
    height: auto;
}

.home-banner-slider .banner-image img{
   object-fit: cover;

}

.banner-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    padding: 20px 40px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    z-index: 1;
    box-shadow: 0 0px 45px rgba(0, 0, 0, 0.70);
}

.banner-btn.btn-primary {
    background-color: var(--green-500);
    color: var(--white);
}
.banner-btn.btn-primary:hover,
.banner-btn.btn-primary:focus {
    background-color: var(--purple-500);
    color: var(--white);
}
.banner-btn.btn-primary:active {
    background-color: var(--purple-500) !important;
    color: var(--white) !important;
}

/*************** Banner Section Ends ******************/

/* Home — Optimiza / Gestiona / Crece */
.home-growth-tagline {
    background-color: var(--purple-700);
    padding: 32px 20px;
    margin: 0 auto;
    max-width: 1356px;
    border-radius: 0 0 20px 20px;
}
.home-growth-tagline__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 380px;
    margin: 0 auto;
}
.home-growth-tagline__brace {
    flex-shrink: 0;
    font-family: var(--font-roboto);
    font-size: clamp(58px, 10vw, 88px);
    font-weight: 300;
    line-height: 0.82;
    color: var(--green-500);
}
.home-banner-list--tagline {
    margin-top: 18px;
}
.home-banner-list--tagline li::before {
    content: none;
    width: 0;
    height: 0;
    margin: 0;
}
.home-banner-list--tagline .home-growth-tagline__line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0;
    padding: 0;
    background: none;
    font-family: var(--font-roboto);
    line-height: 1;
}
.home-banner-list--tagline .home-growth-tagline__line:last-child {
    margin-bottom: 0;
}
.home-banner-content .home-banner-list--tagline .home-growth-tagline__line--1 {
    font-size: clamp(20px, 3.4vw, 28px);
    font-weight: 700;
    color: var(--purple-500);
    margin-bottom: 0;
}
.home-banner-content .home-banner-list--tagline .home-growth-tagline__line--2 {
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 700;
    color: var(--green-500);
    margin-top: -4px;
    line-height: 0.95;
}

/* ── ZONA 07: Home — Why Choose Us ── */
.why-choose-section {
    /* Altura mínima de las 3 tarjetas (sube/baja este valor: 400px, 450px, 480px…) */
    --feature-card-min-height: 500px;
    padding: 75px 0;
    position: relative;
}
.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 470px;
    z-index: -1;
    background-color: var(--gray-surface);
    border-radius: 0 0 20px 20px;
}
.why-choose-section .why-choose-title {
    color: var(--color-success);
    font-weight: 700;
}
.why-choose-section .why-choose-subtitle {
    color: var(--color-success);
    font-weight: 400;
}
.why-choose-section .row {
    --bs-gutter-x: 26px;
    row-gap: 26px;
    align-items: stretch;
}
.why-choose-section .row > [class*="col"] {
    display: flex;
    min-height: var(--feature-card-min-height);
}
.why-choose-section .feature-card {
    flex: 1;
    width: 100%;
    min-height: var(--feature-card-min-height);
    padding: 38px 32px 34px;
    display: flex;
    flex-direction: column;
}
.why-choose-section .feature-card-content {
    flex: 1;
    width: 100%;
    max-width: 260px;
    min-height: 0;
    justify-content: flex-start;
}
.why-choose-section .feature-card .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    margin: 0 0 22px 0;
}
.why-choose-section .feature-card .feature-icon-normal,
.why-choose-section .feature-card .feature-icon-hover {
    max-height: 67px;
    width: auto;
}
.why-choose-section .feature-card h3.heading-style-4 {
    font-size: 26px;
    line-height: 1;
    margin: 0 0 13px 0;
}
.why-choose-section .feature-card-content .heading-style-5 {
    font-size: 21.5px;
    line-height: 1.35;
    margin: 0;
}
.why-choose-section .feature-card-content .plus-icon {
    margin-top: auto;
    padding-top: 24px;
}
.feature-card {
    background-color: var(--color-primary);
    padding: 32px 30px 26px;
    border-radius: 20px;
    height: auto;
    color: var(--white);
    position: relative;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}
.feature-card .heading-style-4,
.feature-card .heading-style-5,
.feature-card h3,
.feature-card p {
    color: var(--white);
}
.feature-card:hover {
    background-color: var(--color-success);
    color: var(--white);
}
.feature-card:hover .heading-style-4,
.feature-card:hover .heading-style-5,
.feature-card:hover h3,
.feature-card:hover p {
    color: var(--white);
}
.feature-card:hover .plus-icon {
    background-color: var(--color-primary);
}
/* .feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 100%;
    height: 100%;
    background-color: var(--black);
    z-index: 0;
    transform-origin: bottom center;
    transition: transform 0.5s ease-in-out;
    border-radius: 100%;
}
.feature-card:hover::after {
    transform: translateX(-50%) scale(1);
    border-radius: 0;
} */
.feature-card-content {
    max-width: 240px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
}
.feature-card-content .heading-style-5 {
    flex: 0 0 auto;
    font-size: 18px;
    line-height: 1.35;
    margin: 0;
}
.feature-card h3.heading-style-4 {
    font-size: 24px;
    line-height: 1.2;
}
.feature-card .card-icon {
    margin: 0 0 14px 0;
}
.feature-card .feature-icon-normal {
    display: inline-block;
    max-height: 58px;
    width: auto;
}
.feature-card:hover .feature-icon-normal {
    display: none;
}
.feature-card .feature-icon-hover {
    display: none;
    max-height: 58px;
    width: auto;
}
.feature-card:hover .feature-icon-hover {
    display: inline-block;
}
.feature-card h3 {
    margin: 0 0 12px 0;
}
.plus-icon {
    position: relative;
    background-color: var(--color-success);
    border-radius: 50%;
    padding: 0;
    width: 28px;
    height: 28px;
    display: inline-block;
    margin-top: 12px;
    flex-shrink: 0;
    line-height: 0;
    box-sizing: border-box;
    overflow: hidden;
}
.plus-icon img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    margin: 0;
    display: block;
    transform: translate(-50%, -50%) rotate(0deg);
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}
.plus-icon:hover img,
.feature-card:hover .plus-icon img {
    transform: translate(-50%, -50%) rotate(90deg);
}

.card-plus {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 24px;
    font-weight: 300;
}

/* ── ZONA 08: Home — Testimonios ── */
.testimonials-section {
    --demo-logo-overlap: 85px;
    max-width: 1356px;
    margin: 0 auto calc(-1 * var(--demo-logo-overlap)) auto;
    position: relative;
}
.testimonials-inner .container {
    padding: 0;
}
.testimonials-inner {
    background-color: var(--gray-surface);
    border-radius: 20px;
    padding: 75px 0;
    position: relative;
}
.testimonials-slider {
    position: relative;
}

.testimonials-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}
.testimonials-slider .slick-slide {
    height: auto;
    display: flex;
    align-items: stretch;
    border-right: solid 1px var(--orange);
}
.testimonials-slider .slick-slide > div {
    display: flex;
    width: 100%;
    height: 100%;
}
.testimonial-item {
    padding: 0 15px;
    outline: none;
    width: 100%;
    display: flex;
    height: 100%;
}
.testimonial-card {
    position: relative;
    padding: 0 25px;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}
/* .testimonial-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 200px;
    background-color: var(--orange);
} */
/* Hide divider on every 3rd visible slide */
.testimonials-slider .slick-slide:nth-child(3n) .testimonial-card::after {
    display: none;
}
.stars-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}
.stars-rating .star {
    color: var(--color-primary);
    font-size: 45px;
    line-height: 1;
    font-weight: 700;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
.testimonial-text {
    color: var(--color-success);
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
    flex: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-avatar {
    width: 103px;
    height: 103px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: var(--white);
}
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.author-info {
    flex: 1;
}
.author-name {
    color: var(--purple-500);
    font-size: 21px;
    font-weight:700;
    margin: 0 0 5px 0;
    line-height: 1.2;
}
.author-desc {
    color: var(--purple-500);
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}
/* Slick Slider Custom Styles */
.testimonials-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 16px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0;
    transition: opacity 0.3s ease;
}
.testimonials-slider .slick-arrow:hover::before {
    background-color: var(--purple-700);
}
.testimonials-slider .slick-arrow:hover {
    opacity: 0.85;
}
.testimonials-slider .slick-prev {
    left: -20px;
}
.testimonials-slider .slick-prev::before,
.testimonials-slider .slick-next::before {
    content: '';
    width: 16px;
    display: block;
    height: 30px;
    opacity: 1;
    background-color: var(--purple-500);
    mask: url(../images/slider-arrow.svg) no-repeat center center;
    mask-size: contain;
    -webkit-mask: url(../images/slider-arrow.svg) no-repeat center center;
    -webkit-mask-size: contain;
    transition: background-color 0.3s ease;
}
.testimonials-slider .slick-next {
    right: -20px;
    transform:translateY(-16px) rotate(180deg);
}

.testimonials-slider .slick-dots {
    display: none !important;
}
/* ── ZONA 09: Home — Clientes ── */
.our-clients-section {
    padding: 35px 0;
    background-color: var(--gray-surface);
    border-radius: 20px;
    margin-top: 20px;
}
/* Home: franja de logos centrada (~mitad del ancho), sin invadir el formulario */
.testimonials-section .our-clients-section {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.our-clients-slider {
    position: relative;
}
.our-clients-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}
.our-clients-slider .slick-slide {
    height: auto;
    float: none;
    display: flex;
    align-items: center;
}
.our-clients-slider:not(.slick-initialized) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}
.our-client-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.our-client-item img {
    max-width: 100%;
    height: auto;
    opacity: 1;
    transition: all 0.3s ease;
}
.our-client-item:hover img {
    opacity: 1;
}
/* Our Clients Slider - Mobile Only */
.our-clients-slider .slick-slide {
    padding: 0 10px;
}
.our-clients-slider .slick-slide .our-client-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.our-clients-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 16px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0;
    transition: all 0.3s ease;
}
.our-clients-slider .slick-arrow:hover::before {
    background-color: var(--purple-700);
}
.our-clients-slider .slick-arrow:hover {
    opacity: 0.85;
}
.our-clients-slider .slick-prev {
    left: -10px;
}
.our-clients-slider .slick-prev::before,
.our-clients-slider .slick-next::before {
    content: '';
    width: 16px;
    display: block;
    height: 30px;
    opacity: 1;
    background: none;
    background-color: var(--purple-500);
    mask: url(../images/slider-arrow.svg) no-repeat center center;
    mask-size: contain;
    -webkit-mask: url(../images/slider-arrow.svg) no-repeat center center;
    -webkit-mask-size: contain;
    transition: background-color 0.3s ease;
}
.our-clients-slider .slick-next {
    right: -10px;
    transform: translateY(-50%) rotate(180deg);
}
.our-clients-slider .slick-dots {
    display: none !important;
}
/* Clients Section */

/* ── ZONA 10: Formulario DEMO ── */
.demo-form-section {
    background-color: var(--gray-300);
    padding: 180px 0 130px;
    border-radius: 20px;
}
.inner-page-form {
    padding-top: 100px;
}
/* Home (#demo tras testimonios): solapamiento 85px + 72px de hueco visible bajo logos.
   Nota: no usar selector + ; formulario_demo incluye un <style> entre secciones. */
.testimonials-section ~ .demo-form-section.inner-page-form#demo {
    padding-top: calc(85px + 72px);
    margin-top: 0;
}

.demo-form-section .heading-style-3 {
    color: var(--purple-500);
}
.demo-form-section .p-small {
    color: var(--purple-500);
    margin-bottom: 40px;
}

.demo-form {
    margin-top: 40px;
}
.demo-form-section .demo-form .form-control {
    color: var(--purple-500);
}
.demo-form-section .demo-form .form-control::placeholder {
    color: var(--purple-500);
    opacity: 1;
}
.demo-form-section .demo-form .form-control:focus {
    color: var(--purple-500);
    background-color: var(--gray-light);
}
.demo-form-section .country-code-prefix {
    color: var(--purple-500);
}
.form-col-wrap {
    display: flex;
    flex-wrap: wrap;
    row-gap: 15px;
    column-gap: 44px;
}
.form-col {
    flex: 0 0 auto;
    width: calc(50% - 22px);
}
.form-col-full {
    width: 100%;
}
.demo-form .form-group {
    margin-bottom: 0px;
}

/* Select2 Custom Styling */
.select2-container {width: 100% !important;}
.demo-form-section .select2-container--default .select2-selection--single {
    background-color: var(--purple-500) !important;
}
/* Solicitud DEMO (#demo): plan + país — solo esquinas inferiores en el panel */
#demo .select2-container--default .select2-selection--single {
    border-radius: 30px;
}
#demo .select2-container--open .select2-selection--single {
    border-radius: 30px 30px 0 0;
}
.select2-demo-dropdown.select2-dropdown {
    background-color: var(--purple-500) !important;
    border: none;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
}
.select2-demo-dropdown .select2-results,
.select2-demo-dropdown .select2-results__options {
    background-color: var(--purple-500);
}
.select2-demo-dropdown .select2-results__option {
    background-color: var(--purple-500);
    color: var(--white);
    padding: 8px 24px;
    font-size: 23px;
}
.select2-demo-dropdown .select2-results__option--highlighted[aria-selected],
.select2-demo-dropdown .select2-results__option--selected {
    background-color: var(--purple-500) !important;
    color: var(--white);
    font-weight: 700;
}
.select2-container--default .select2-selection--single {
    background-color: var(--black);
    border: none ;
    border-radius: 30px ;
    height: 52px ;
    display: flex ;
    align-items: center ;
    padding: 0 24px ;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--white) ;
    line-height: 52px ;
    padding: 0 ;
    font-size: 23px ;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 52px ;
    width: 35px ;
    right: 20px ;
    background: url(../images/dropdown-arrow.svg) no-repeat center center;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--white) transparent transparent transparent ;
    border-width: 6px 5px 0 5px ;
    margin-top: -3px ;
    display: none ;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow  {
    transform: rotate(180deg);
}
.select2-container--default .select2-results__option {
    padding: 8px 24px ;
    font-size: 23px ;
    color: var(--white) ;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: transparent ;
    color: var(--white) ;
    font-weight: 700;
}
.select2-container--default .select2-results__option--selected {
    background-color: transparent ;
    color: var(--white) ;
    font-weight: 700;
}
.select2-dropdown {
    border: none ;
    border-radius:30px ;
    overflow: hidden ;
    background-color: var(--black);
}
/* Country dropdown smaller width */
.select2-country + .select2-container {
    width: 100%;
}
.telephone-wrap {
    position: relative;
    display: flex;
    gap: 0px;
    align-items: center;
}
.telephone-wrap .select2-container {
    width: 280px !important;
    flex-shrink: 0;
    z-index: 1;
}
.phone-input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    margin: 0 0 0 -40px;
    align-items: center;
}
.country-code-prefix {
    position: absolute;
    left: 55px;
    color: var(--dark-text);
    font-size: 23px;
    font-weight: 400;
    pointer-events: none;
    z-index: 1;
    user-select: none;
    line-height: 34px;
}
.phone-input {
    padding-left: 105px ;
}
/* Form Checkbox */
.demo-form .form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-surface-subtle);
    padding: 13px 30px;
    border-radius: 60px;
    margin: 0;
}
.demo-form .form-check-input {
    width: 27px;
    height: 27px;
    border: 1px solid var(--black);
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    margin: 0;
}
.demo-form .form-check-input:checked {
    background: var(--color-success);
    border-color: var(--color-primary);
}
.demo-form .form-check-input:focus {
    box-shadow: none;
}
.demo-form .form-check-label {
    font-size: 11px;
    color: var(--purple-500);
    line-height: 1.2;
    cursor: pointer;
}
.demo-form .privacy-link {
    color: var(--color-primary);
    text-decoration: none;
}
.demo-form .privacy-link:hover {
    color: var(--color-success);
    text-decoration: underline;
}
/* Submit Button */
.demo-form .btn-submit.btn-primary {
    padding: 10px 40px;
    font-size: 22px;
    font-weight: 700;
    text-transform: none;
    background-color: var(--purple-300);
    color: var(--white);
    border: none;
    border-radius: 30px;
    margin-top: 10px;
}
.demo-form .btn-submit.btn-primary:disabled {
    opacity: 0.5;
}
.demo-form .btn-submit.btn-primary:hover:not(:disabled),
.demo-form .btn-submit.btn-primary:focus:not(:disabled) {
    background-color: var(--purple-500);
    color: var(--white);
}
/* reCAPTCHA */
.demo-form .recaptcha-wrapper {
    margin-top: 10px;
}
/* Phone Number Row */


/* ── ZONA 11: Footer ── */
.main-footer {
    background-color: var(--purple-700);
    color: var(--white);
    border-radius: 20px;
    margin-top: -30px;
    padding: 66px 0;
    font-size: 16px;
}
.footer-wrapper {
    display: flex;
    align-items: stretch;
    gap: 30px;
    justify-content: space-between;
}
.footer-logo img {
    display: block;
    height: 90px;
    width: auto;
}
.footer-left {
    flex: 0 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}
.social-icon {
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.75;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background-color: var(--color-primary);
    opacity: 1;
}
.social-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.social-icon[aria-label="Correo"] img {
    width: 20px;
    height: 20px;
}
.footer-about-us,
.footer-middle-right {
    flex: 0 0 auto;
}
.footer-heading {
    font-size: 19px;
    font-weight: 400;
    text-transform: none;
    color: var(--white);
    margin: 0 0 23px 0;
    line-height: 1.2;
}
.footer-heading a {
    color: var(--white);
    text-decoration: none;
}
.footer-heading a:hover {
    color: var(--color-primary);    
}
.footer-heading-spacing {
    margin-top: 20px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links .footer-heading {
    margin-bottom: 10px;
}
.footer-links li {
    margin-bottom: 10px;
    line-height: normal;
}
.footer-links a {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.2;
}
.footer-links a:hover {
    color: var(--color-primary);
}
.footer-links li:hover .footer-heading {
    color: var(--color-primary);
    /* font-weight: 800; */
}
.footer-divider {
    width: 1px;
    height: 200px;
    background-color: var(--orange);
    flex: 0 0 auto;
    margin: 0 20px;
}
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 40px;
    min-height: 100%;
}
.footer-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    width: 1px;
    height: 100%;
    min-height: 200px;
    background-color: var(--color-primary);
}

.footer-right .footer-links a {
    display: block;
    font-weight: 400;
    text-transform: none;
}

.footer-copyright {
    font-size: 17px;
    font-weight: 400;
    color: var(--color-primary);
    text-transform: none;
    margin: auto 0 0 0;
    padding-top: 48px;
    width: 100%;
    line-height: 1.2;
}

/* ── ZONA 12: Página Contacto ── */
.contact-section {
    padding: 70px 0 90px;
}
.contact-content {
    max-width: 750px;
    margin: 0 auto;  
    padding-bottom: 20px;  
}
.contact-content p {
    font-weight: 300;
    line-height: 44px;
    margin: 5px 0 0 0;
    color: var(--purple-500);
}
.contact-banner-section {
    margin: -22px 0 50px;
    border-radius: 20px;
}

.contact-content .heading-style-1 {
    color: var(--color-primary);
}

.contact-wrapper {
    max-width: 1208px;
    margin: 0 auto;
}

.contact-form .form-control,
.contact-form .form-control:focus {
    background-color: var(--gray-300);
    color: var(--purple-500);
    border: none;
    box-shadow: none;
}

.contact-form .form-control::placeholder {
    color: var(--purple-500);
    opacity: 1;
}

.contact-form .textarea-input {
    resize: none;
    height: 260px;
    border-radius: 30px;
    padding-top: 20px;
}

.contact-form .select2-container--default .select2-selection--single {
    background-color: var(--purple-500) !important;
    border: none;
    border-radius: 30px;
    height: 52px;
}

.contact-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--white) !important;
    line-height: 52px;
    font-size: 23px;
}

.contact-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 52px;
    background: url(../images/dropdown-arrow.svg) no-repeat center center;
}

.contact-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.contact-form .country-code-prefix {
    color: var(--purple-500);
}

.contact-form .btn-submit.btn-primary {
    background-color: var(--purple-300);
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    text-transform: none;
    border: none;
    border-radius: 30px;
    padding: 12px 40px;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
}

.contact-form .btn-submit.btn-primary:hover:not(:disabled),
.contact-form .btn-submit.btn-primary:focus:not(:disabled) {
    background-color: var(--purple-500);
    color: var(--white);
}

.contact-form .contact-submit-wrap {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .contact-form .contact-submit-wrap .btn-submit {
        max-width: 280px;
        margin-left: auto;
    }
}

/* ── ZONA 13: Página Sobre Nosotros ── */
.about-us-section {
    padding: 70px 40px 90px;
    display: flex;
    max-width: 1430px;
    margin: 0 auto;
    color: var(--purple-500);
}
.about-us-section .about-us-content {
    width: 42%;
}
.about-us-section .about-us-content p {
    font-weight: 300;
    margin: 5px 0 0 0;
}
.about-us-section .about-us-image {
    width: 58%;
}
.about-us-section-2 {
    padding: 100px 40px 100px;
    display: flex;
    gap: 50px;
    max-width: 1430px;
    margin: 0 auto;
    color: var(--purple-500);
}
.about-us-section-2 .about-us-content {
    width: 43%;
}
.about-us-section-2 .about-us-content h2 {
    margin-bottom: 20px;
    line-height: 36px;
}
.about-us-section-2 .about-us-content h2.text-orange {
    color: var(--green-500);
}
.about-us-section-2 .about-us-content h3.heading-style-6 {
    color: var(--purple-500);
}
.about-us-section-2 .about-us-content p {
    font-weight: 300;
    margin: 5px 0 0 0;
}
.about-us-section-2 .about-us-image {
    width: 53%;
}
.about-us-slogan-section {
    padding: 0px 40px 100px;
    text-align: center;
}
.about-us-slogan-section h2 {
    font-size: 40px;
    font-weight: 600;
    color: var(--green-500);
}



/* ── ZONA 14: Página Soluciones ── */
.main-wrapper:has(> .solution-section) .top-section {
    padding-top: 130px;
    padding-bottom: 30px;
}
.solution-list { margin-top: -30px; }
.solution-list-item { display: flex; display: -webkit-flex; margin-bottom: 0.5em;; }
.solution-list-item.even-grid { flex-direction: row-reverse; -webkit-flex-direction: row-reverse; }
.solution-list-item.grey-bg { background-color: var(--purple-500); color: var(--white); }
.solution-list-item.light-grey-bg { background: var(--purple-500); color: var(--white); }
.solution-list-item .solution-img,  
.solution-list-item .solution-content {
    width: 50%;
} 
.solution-list-item { border-radius: 16px; overflow: hidden; margin-bottom: 30px; position: relative; }
.solution-list-item .solution-img { position: relative; border-radius: 0px 16px 16px 0px; }
.solution-list-item .solution-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 0px 16px 16px 0px; }
.solution-list-item .btn { padding: 0px 12px; position: absolute; top: 50%; left: 100%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); min-width: 52px; height: 52px; display: flex; display: -webkit-flex; justify-content: center; -webkit-justify-content: center; align-items: center; -webkit-align-items: center; }
.solution-list-item.even-grid .btn { left: 0%; }
.solution-list-item .btn img { width: 26px; height: 26px; position: absolute; opacity: 1; transition: all 0.3s ease-in-out; }
.solution-list-item .btn .btn-text { white-space: nowrap; font-size: 20px; opacity: 0; transition: all 0.3s ease-in-out; max-width: 0; overflow: hidden;  text-transform: none; }
.solution-list-item .btn:hover .btn-text { display: block; opacity: 1; max-width: 200px; padding: 0 12px;}
.solution-list-item .btn:hover img { opacity: 0; }
/* Soluciones — botón «Lo quiero» / «I want it!»: mantener verde al expandir texto (hover) */
.solution-list-item .btn.btn-primary:hover,
.solution-list-item .btn.btn-primary:focus {
    background-color: var(--color-primary);
    color: var(--white);
}
.solution-list-item .btn.btn-primary:active {
    background-color: var(--color-primary-dark) !important;
    color: var(--white) !important;
}
.solution-list-item .txt-btn { text-transform: unset; font-size: 23px; line-height: 1; font-weight: 400; min-width: 179px; padding: 15px; border-radius: 50px; }
.solution-list-item.even-grid .solution-img { border-radius: 16px 0px 0px 16px; }
.solution-list-item.even-grid .solution-img img { border-radius: 16px 0px 0px 16px; }


.solution-list-item .solution-content { display: flex; display: -webkit-flex;  align-items: center; -webkit-align-items: center; padding: 75px 110px; }
.solution-list-item .solution-content .solution-title  { margin-bottom: 10px; font-weight: 300; }
.solution-list-item .solution-content .solution-desc p { font-weight: 300; margin: 0px 0px 45px 0px; }
.solution-list-item .solution-content .solution-desc p:last-child { margin-bottom: 0px; }
.solution-list-item .solution-content .solution-desc .solution-desc-lines .d-block { margin-bottom: 0.5em; }
.solution-list-item .solution-content .solution-desc .solution-desc-lines .d-block:last-child { margin-bottom: 0; }

/* ── ZONA 15: Página Planes ── */
.plans-section {
    padding: 70px 0 90px;
    margin-bottom: 23px;
}

.top-section:has(> .plans-section) {
    border-radius: 20px;
}

.plans-content {
    max-width: 750px;
    margin: 0 auto;  
    padding-bottom: 20px;  
}
.plans-content .heading-style-1 {
    color: var(--color-primary);
}
.plans-content p {
    font-weight: 300;
    line-height: 38px;
    margin: 5px 0 10px 0;
    color: var(--purple-500);
}
.plans-content p .fw-bold {
    color: inherit;
}
.plans-list {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;    
}
.plans-list-item {
    background-color: var(--white);
    border-radius: 20px;
    height: fit-content;
    width: calc((100% / 3) - 17.33px);
}
.plans-title-wrap {
    padding: 72px 36px;
    border-radius: 20px 20px 20px 0;
    position: relative;
}
.plans-title-wrap::after {
    content: '';
    position: absolute;
    bottom: -32px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 16px solid var(--white);
    border-bottom: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 16px solid var(--white);
}
.plans-title-wrap .plans-title {
    color: var(--white);
    font-size: 58px;
    font-weight: 500;
    margin-bottom: 5px;
}
.plans-title-wrap .plans-price,
.plans-title-wrap .plans-price span {
    color: var(--white);
}
.plan-basic {
    background-color: var(--blue-500);
}
.plan-basic::after {
    border-left-color: var(--blue-500);
    border-top-color: var(--blue-500);
}
.plan-advanced {
    background-color: var(--color-plan-advanced);
}
.plan-advanced::after {
    border-left-color: var(--color-plan-advanced);
    border-top-color: var(--color-plan-advanced);
}
.plan-superior {
    background-color: var(--color-plan-superior);
}
.plan-superior::after {
    border-left-color: var(--color-plan-superior);
    border-top-color: var(--color-plan-superior);
}
.plans-price {
    font-size: 45px;
    font-weight: 800;
}
.plans-price span {
    font-size: 32px;
    font-weight: 400;
}
.plans-features-wrap {
    padding: 40px 0 80px;
}
.plans-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.plans-features-list li {
    font-size: 23px;
    padding: 12px 26px;
    border-bottom: 1px solid var(--gray);
    color: var(--purple-500);
}
.plans-features-list li:last-child {
    border-bottom: none;
}

.plans-features-list li.advanced-highlighted-txt {
    color: var(--color-plan-advanced);
}
.plans-features-list li.superior-highlighted-txt {
    color: var(--color-plan-superior);
}
.plan-list-end-txt {
    font-size: 13px;
    line-height: 1.2;
    color: var(--purple-500);
    margin-top: -30px;
    text-align: left;
    max-width: 262px;
}

/* ── ZONA 15b: Planes — formulario configurador ── */
/* Altura común: campos blancos = bloque «Acepto recibir comunicaciones» (13+27+13 = 53px) */
#configure-plan {
    --plan-field-height: 53px;
    --plan-captcha-row-height: 86px;
    --plan-summary-max-width: fit-content;
}
/* Filas emparejadas: opción izquierda ↔ campo derecho a la misma altura */
#configure-plan .plan-form--split .form-col-wrap.plan-form-align-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
#configure-plan .plan-form--split .plan-form-row {
    display: grid;
    grid-template-columns: calc(50% - 22px) calc(50% - 22px);
    column-gap: 44px;
    justify-content: center;
    align-items: center;
}
#configure-plan .plan-form--split .plan-form-row--titles {
    align-items: start;
}
#configure-plan .plan-form--split .plan-form-row--titles .plan-form-cell--right {
    align-self: start;
}
#configure-plan .plan-form--split .plan-form-cell {
    width: 100%;
    min-width: 0;
}
#configure-plan .plan-form--split .plan-form-cell .form-group {
    margin-bottom: 0;
}
#configure-plan .plan-form--split .plan-form-cell .custom-radiobox,
#configure-plan .plan-form--split .plan-form-cell .custom-checkbox {
    width: 100%;
    box-sizing: border-box;
}
#configure-plan .plan-form--split .plan-form-cell--left .custom-radiobox,
#configure-plan .plan-form--split .plan-form-cell--left .custom-checkbox:not(:has(span)) {
    min-height: var(--plan-field-height);
    padding-block: calc((var(--plan-field-height) - 1lh) / 2);
    display: flex;
    align-items: center;
}
#configure-plan .plan-form--split .plan-form-cell--left .custom-checkbox:has(span) {
    height: var(--plan-captcha-row-height);
    min-height: var(--plan-captcha-row-height);
    max-height: var(--plan-captcha-row-height);
    padding: 12px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}
#configure-plan .plan-form--split .plan-form-cell--left .custom-checkbox:has(span) span {
    font-size: 14px;
    line-height: 1.75;
    margin-top: 1px;
    display: block;
}
#configure-plan .plan-form--split .confirmation-content input.form-control {
    width: 100%;
    box-sizing: border-box !important;
    height: var(--plan-field-height) !important;
    min-height: var(--plan-field-height) !important;
    max-height: var(--plan-field-height) !important;
    padding: 0 30px !important;
    border: none !important;
    line-height: var(--plan-field-height) !important;
    -webkit-appearance: none;
    appearance: none;
}
#configure-plan .confirmation-content .form-check {
    min-height: var(--plan-field-height);
}
#configure-plan .confirmation-content .telephone-wrap {
    align-items: center;
}
#configure-plan .confirmation-content .telephone-wrap .select2-container--default .select2-selection--single,
#configure-plan .confirmation-content .telephone-wrap .select2-container--default .select2-selection--single .select2-selection__rendered,
#configure-plan .confirmation-content .telephone-wrap .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: var(--plan-field-height) !important;
    min-height: var(--plan-field-height) !important;
    line-height: var(--plan-field-height) !important;
    box-sizing: border-box !important;
}
#configure-plan .confirmation-content .telephone-wrap .form-control.phone-input {
    padding: 0 30px 0 105px !important;
}
#configure-plan .confirmation-content .telephone-wrap .country-code-prefix {
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
}
#configure-plan .plan-form--split .plan-form-cell .telephone-wrap {
    width: 100%;
}
#configure-plan .confirmation-content .form-check:has(.recaptcha-like) {
    margin: 0;
    padding: 0;
    gap: 0;
    background: transparent;
    border-radius: 0;
    min-height: var(--plan-captcha-row-height);
    height: var(--plan-captcha-row-height);
    display: block;
}
#configure-plan .confirmation-content .recaptcha-like {
    max-width: 100%;
    width: 100%;
    height: var(--plan-captcha-row-height);
    min-height: var(--plan-captcha-row-height);
    max-height: var(--plan-captcha-row-height);
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border-radius: 50px;
    overflow: hidden;
    background-color: var(--color-surface-subtle);
}
#configure-plan .confirmation-content .recaptcha-like .rc-anchor {
    width: 100%;
    height: 100%;
    padding: 0 16px;
    box-sizing: border-box;
}
#configure-plan .confirmation-content .recaptcha-like .rc-label {
    color: var(--purple-500);
}
#configure-plan .plan-form--split .customized-app-question-title,
#configure-plan .plan-form--split .confirmation-content-title,
#configure-plan .plan-form--split .modules-content-title {
    margin-top: 0;
    margin-bottom: 0;
}
#configure-plan .plan-form--split .modules-content {
    padding-bottom: 0;
}
#configure-plan .plan-form--split .modules-content .modules-content-title {
    margin: 0;
}
#configure-plan .plan-form--split .plan-form-row--submit .btn-submit {
    display: block;
    width: fit-content;
    margin: 0 auto;
    text-transform: none;
}
#configure-plan .plan-form--split .plan-form-row--submit .tooltip-wrapper {
    width: 100%;
    margin: 0;
    text-align: center;
}
#configure-plan .plan-form--split .plan-form-row--summary {
    grid-column: 1 / -1;
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: stretch;
}
#configure-plan .plan-form--split .plan-form-row--summary .plan-form-cell--full {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    justify-content: center;
}
#configure-plan .plan-form--split .plan-form-row--summary .plan-summary-box {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.plan-form .heading-style-5,
.plan-form .customized-app-question-title,
.plan-form .modules-content .modules-content-title,
.plan-form .confirmation-content .confirmation-content-title {
    color: var(--purple-500);
}

.plan-form .custom-radiobox,
.plan-form .custom-checkbox {
    background-color: var(--purple-500);
}

.plan-form .custom-radiobox.with-arrow-bg {
    background-color: var(--purple-500);
    background-image: url('../images/dropdown-arrow.svg');
}

.plan-form .custom-radiobox:has(input[type="radio"]:checked),
.plan-form .custom-checkbox:has(input[type="checkbox"]:checked) {
    background-color: var(--green-500);
}

.plan-form .custom-radiobox.with-arrow-bg:has(input[type="radio"]:checked) {
    background-color: var(--green-500);
    background-image: url('../images/dropdown-arrow-up.svg');
}

.plan-form .btn.btn-primary.btn-submit,
.plan-form .modules-content .btn-submit {
    background-color: var(--purple-500);
    color: var(--white);
}

.plan-form .btn.btn-primary.btn-submit:hover:not(:disabled),
.plan-form .modules-content .btn-submit:hover:not(:disabled) {
    background-color: var(--purple-700);
    color: var(--white);
}

.mobile-application-content-inner {
    position: relative;
}

.custom-radiobox { overflow: hidden; position: relative; padding: 16px 70px 16px 30px; background: var(--black); border-radius: 50px; }
.custom-radiobox.with-arrow-bg {  padding: 16px 30px; background: var(--black) url('../images/dropdown-arrow.svg') no-repeat 93% center / 30px; }
.custom-radiobox.with-arrow-bg:has(input[type="radio"]:checked) { background-color: var(--color-success); background-image: url('../images/dropdown-arrow-up.svg'); }

.custom-radiobox input[type="radio"] { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.custom-radiobox:has(input[type="radio"]:checked) { background-color: var(--color-success); }
.custom-radiobox label { font-size: 23px; line-height: 1; color: var(--white); display: block;  }

.customized-app-question-title { margin: 24px 0px; }
.customized-app-question .form-group { margin-bottom: 15px; }
.customized-app-question .form-group:last-child { margin-bottom: 0px; }

.modules-content  { padding-bottom: 24px; }
.modules-content .modules-content-title { margin: 32px 0px; }

.customized-app-question-title, .modules-content .modules-content-title,
.confirmation-content .confirmation-content-title, .confirmation-content .confirmation-content-title { padding: 0px 30px; }


.custom-checkbox { overflow: hidden; position: relative; padding: 15px 30px; background: var(--black) url('../images/plus-icon.svg') no-repeat 93% center / 26px; border-radius: 50px; cursor: pointer; }
.custom-checkbox input[type="checkbox"] { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.custom-checkbox:has(input[type="checkbox"]:checked) { background-color: var(--color-success); }
.custom-checkbox label { font-size: 23px; line-height: 1; color: var(--white); display: block; }
.custom-checkbox span { font-size: 18px; line-height: 1; color: var(--white);}
.modules-content-list .form-group { margin-bottom: 15px; }
.modules-content-list .form-group:last-child { margin-bottom: 0px; }
.modules-content .btn-submit { display: block; width: fit-content; margin: 15px auto 0px; }

.confirmation-content .confirmation-content-title { margin-bottom: 24px; }
.confirmation-content .form-group { margin-bottom: 15px; }
.confirmation-content ~ .btn-submit { display: block; width: fit-content; margin: 15px auto 0px; }

.access-billing-content .confirmation-content { margin-top: 24px; }

.disabled-content { opacity: 0.5; pointer-events: none; cursor: not-allowed; }

.plan-form .tooltip-wrapper { position: relative; width: fit-content; display: block; margin: 0px auto;  }
.plan-form .form-col {
    overflow: visible;
}

.plan-form .tooltip-wrapper .tooltip-box {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 562px;
    background: var(--white);
    border-radius: 16px;
    padding: 43px 33px;
    top: 50%;
    left: 100%;
    transform: translate(44%, -100%);
    -webkit-transform: translate(44%, -100%);
    z-index: 1;
    box-shadow: 0 0 10px 3px rgb(0 0 0 / 13%);
}

.plan-form .plan-summary-box {
    display: none;
    opacity: 0;
    pointer-events: none;
    position: relative;
    width: 100%;
    max-width: var(--plan-summary-max-width, 562px);
    margin: 16px auto 0;
    background: var(--white);
    border-radius: 16px;
    padding: 43px 33px;
    box-sizing: border-box;
    box-shadow: 0 0 10px 3px rgb(0 0 0 / 13%);
    overflow-wrap: break-word;
    transition: opacity 0.25s ease;
}
.plan-form .tooltip-wrapper .tooltip-box.active,
.plan-form .plan-summary-box.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}
.plan-form .tooltip-wrapper .tooltip-box::before {
    content: '';
    position: absolute;
    top: 48px;
    left: -28px;
    transform: none;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 29px solid var(--white);
}
.plan-form .plan-summary-box::before {
    display: none;
}
.plan-form .tooltip-wrapper .tooltip-box .desc,
.plan-form .plan-summary-box .desc {
    font-size: 23px;
    font-weight: 300;
    margin-bottom: 28px;
    color: var(--purple-500);
}
.plan-form .plan-summary-box .heading-style-5 {
    color: var(--purple-500);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.plan-form .tooltip-wrapper .tooltip-box .plans-price,
.plan-form .plan-summary-box .plans-price {
    font-size: 43px;
    line-height: 1;
    margin-bottom: 15px;
    color: var(--purple-500);
    font-weight: 800;
}
.plan-form .tooltip-wrapper .tooltip-box .end-box p,
.plan-form .plan-summary-box .end-box p {
    font-weight: 300;
    font-size: 23px;
    color: var(--purple-500);
}
.plan-form .tooltip-wrapper .tooltip-box .end-box .p-small,
.plan-form .plan-summary-box .end-box .p-small {
    margin: 20px 0px 0px;
    font-size: 14px;
}
.plan-form .plan-summary-box .summary-config-desc .modulo2,
.plan-form .plan-summary-box .summary-config-desc .modulo4,
.plan-form .plan-summary-box .summary-config-desc .modulo6 {
    display: none;
}
#configure-plan .plan-summary-box .summary-config-desc .modulo6 {
    white-space: nowrap;
}
#configure-plan .plan-summary-box .summary-config-desc .modulo6-note {
    font-weight: 300;
}


.plan-form .access-billing-content .tooltip-wrapper .tooltip-box { top: 100%; left: 50%; transform: translate(-50%, 10%); -webkit-transform: translate(-50%, 10%); }
.access-billing-content .tooltip-wrapper .tooltip-box::before { top: -28px; left: 50%; transform: translateX(-50%); border-bottom: 29px solid var(--white); border-right: 20px solid transparent; border-left: 20px solid transparent; border-top: none; }


/* ── ZONA 16: Páginas legales ── */
.terms-privacy-wrapper { background: var(--gray); padding: 80px 0px 133px; }
.terms-privacy-content {  max-width: 734px; margin: 0px auto; }
.terms-privacy-content .title { margin-bottom: 18px; }
.terms-privacy-content .desc { margin-bottom: 20px; font-weight: 300; }
.terms-privacy-content .desc b { font-weight: 600; }
.terms-privacy-content .desc:last-child { margin-bottom: 0px; }
.terms-privacy-content ul, .terms-privacy-content ol  {  margin: 0px 0px 20px 0px; padding: 0px 0px 0px 30px; }
.terms-privacy-content ul:last-child, .terms-privacy-content ol:last-child { margin-bottom: 0px; }
.terms-privacy-content ul li, .terms-privacy-content ol li { list-style-type: disc; margin-bottom: 10px; font-weight: 300; font-size: 24px; line-height: 34px; }
.terms-privacy-content ol li { list-style-type: decimal; }
.terms-privacy-content ul li:last-child, .terms-privacy-content ol li:last-child { margin-bottom: 0px; }
.terms-privacy-content h2 { margin-bottom: 10px; }
/* ── ZONA 17: Media Queries (responsive) ── */

@media (max-width: 1549px){
    .solution-list { padding: 0px 16px; }
    /* .main-wrapper:has(> .solution-section) .top-section { padding-top: 110px; }
    .solution-list { margin-top: 0px; } */
}

@media screen and (max-width: 1399px) {

    body {
        font-size: 24px;
    }
    .heading-style-1 {
        font-size: 45px;
    }
    .heading-style-2 { font-size: 40px; }
    .heading-style-3 {
        font-size: 32px;
    }
    .heading-style-4 {
        font-size: 26px;
    }
    .heading-style-5 {
        font-size: 21px;
    }
    .heading-style-6 {
        font-size: 30px;
    }
    .heading-style-7 {
        font-size: 26px;
    }
    .form-control, .form-select {
        font-size: 21px;
    }
    .country-code-prefix {
        font-size: 21px;
    }
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 21px;
    }
    .select2-container--default .select2-results__option {
        font-size: 21px;
    }

    /*************** Banner Section ******************/
    .home-banner-content .home-banner-title {
        font-size: 40px;
    }
    .home-banner-content .home-banner-subtitle {
        font-size: 22px;
    }
    .home-banner-content .home-banner-list li {
        font-size: 20px;
    }
    .home-banner-list li::before {
        width: 22px;
        height: 22px;
    }
    .home-banner-highlight {
        font-size: 40px;
    }

    .banner-btn {
        padding: 16px 30px;
        font-size: 20px;
    }
    
    /*************** Banner Section Ends ******************/

    .testimonials-section {
        max-width: 1200px;
    }
    .container {
        max-width: 1140px;
    }

    .navbar-nav { 
        gap:30px;
        padding-right: 30px;
    }
    .header-actions {
        gap: 30px;
    }
    .header-actions .my-space {
        padding-inline: 30px;
    }

    .main-footer {
        border-radius: 20px 20px 0 0;
    }
    .footer-left {
        gap:40px;
    }

    .about-us-slogan-section h2 {
        font-size: 36px;
    }
    .about-us-section-2 .about-us-content h2 {
        line-height: 34px;
    }

    /************** Solutions Page ******************/
    /* .main-wrapper:has(> .solution-section) .top-section { padding-top: 110px; } */
    .solution-list-item .solution-content { padding: 80px 60px; }
    .solution-list-item .solution-content .solution-desc p { font-size: 22px; line-height: 30px; }
    .solution-list-item .btn { min-width: 48px; height: 48px; }
    .solution-list-item .btn img { width: 24px; height: 24px; }

    /***************** Plans Page ******************/
    .plans-title-wrap { padding: 40px 30px;}
    .plans-title-wrap .plans-title { font-size: 44px; }
    .plans-price { font-size: 36px; }
    .plans-price span { font-size: 26px; }
    .plans-features-wrap { padding: 30px 0 60px; }
    .plans-features-list li { font-size: 20px; padding: 10px 20px; }
    .plan-form .tooltip-wrapper .tooltip-box {  transform: translate(42%, -100%); -webkit-transform: translate(42%, -100%);}


    /*************** Terms Privacy Page ******************/
    .terms-privacy-content ul li, .terms-privacy-content ol li { font-size: 20px; line-height: 30px; }
    
}

@media screen and (max-width: 1199px) {
    body {
        font-size: 22px;
    }
    .heading-style-1 {
        font-size: 42px;
    }
    .heading-style-2 { font-size: 36px; }

    .heading-style-3 {
        font-size: 30px;
    }
    .heading-style-4 {
        font-size: 24px;
    }
    .heading-style-5 {
        font-size: 19px;
    }
    .heading-style-6 {
        font-size: 28px;
    }
    .heading-style-7 {
        font-size: 24px;
    }

    .form-control, .form-select {
        font-size: 19px;
    }
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 19px;
    }
    .select2-container--default .select2-results__option {
        font-size: 19px;
    }


    .container {
        max-width: 980px;
    }


    /*************** Banner Section ******************/
    .home-banner-section { margin-top: 50px;}
    .home-banner-content .home-banner-title {
        font-size: 34px;
    }
    .home-banner-content .home-banner-subtitle {
        font-size: 20px;
    }
    .home-banner-content .home-banner-list li {
        font-size: 19px;
    }
    .home-banner-list li::before {
        width: 20px;
        height: 20px;
    }
    .home-banner-highlight {
        font-size: 28px;
    }
    .home-banner-list {
        margin-bottom: 30px;
    }
    /*************** Banner Section Ends ******************/

    .navbar-nav { 
        gap:22px;
        padding-right: 22px;
    }
    .header-actions {
        gap: 22px;
    }
    .header-actions .my-space {
        padding-inline: 22px;
    }


    .why-choose-section {
        --feature-card-min-height: 380px;
    }
    .why-choose-section .feature-card {
        padding: 32px 26px 28px;
    }
    .why-choose-section .feature-card .card-icon {
        min-height: 60px;
        margin-bottom: 18px;
    }
    .why-choose-section .feature-card .feature-icon-normal,
    .why-choose-section .feature-card .feature-icon-hover {
        max-height: 56px;
    }
    .why-choose-section .feature-card h3.heading-style-4 {
        font-size: 23px;
        margin-bottom: 12px;
    }
    .why-choose-section .feature-card-content .heading-style-5 {
        font-size: 17px;
    }
    .why-choose-section .feature-card-content .plus-icon {
        padding-top: 18px;
    }
    .feature-card {
        padding: 26px 24px 22px;
    }
    .form-col-wrap {
        column-gap: 30px;
    }
    .form-col { width: calc(50% - 15px); }

    .telephone-wrap .select2-container {
        width: 250px !important;
    }
    .country-code-prefix {
        font-size: 19px;
    } 
    .telephone-wrap .form-control {
        padding-left: 100px;
        padding-right: 20px;
    }
    #configure-plan .confirmation-content .telephone-wrap .form-control.phone-input {
        padding: 0 20px 0 100px !important;
    }
    .author-avatar {
        width: 90px;
        height: 90px;
    }

     /* testimonials */
    .testimonials-inner .container {
        padding: 0 20px;
     }
     .testimonial-card {
        padding: 0 10px;
     }
     .our-clients-slider {
        padding: 0 0px;
     }
     .testimonial-text {
        font-size: 18px;
     }
 

    .footer-left {
        gap:30px;
        flex-direction: column;
    }
    .social-icons {
        gap: 12px;
    }

    .contact-section {
        padding-top: 50px;
    }

    /* about us */
    .about-us-section {
        padding: 50px 40px 70px;
    }
    .about-us-slogan-section h2 {
        font-size: 34px;
    }
    .about-us-section-2 {
        padding: 70px 40px 70px;
    }
    .about-us-slogan-section {
        padding-bottom: 70px;
    }

    /************** Solutions Page ******************/
    .main-wrapper:has(> .solution-section) .top-section { padding-top: 140px; }
    .solution-list-item .solution-content { padding: 60px 40px; }
    .solution-list-item .solution-content .solution-desc p { font-size: 18px; line-height: 26px; }
    .solution-list-item .btn { min-width: 44px; height: 44px; }
    .solution-list-item .btn img { width: 18px; height: 18px; }

    /***************** Plans Page ******************/
    .plans-section { padding: 50px 0 70px; }
    .plans-title-wrap { padding: 30px 20px;}
    .plans-title-wrap .plans-title { font-size: 36px; }
    .plans-price { font-size: 28px; }
    .plans-price span { font-size: 20px; }
    .plans-features-wrap { padding: 20px 0 40px; }
    .plans-features-list li { font-size: 18px; padding: 8px 16px; }

    /**********Plan End Form ***********/
    .custom-radiobox, .custom-checkbox { padding-block: 16.5px; }
    .custom-radiobox.with-arrow-bg { background-size: 20px;}
    .plan-form label { font-size: 19px; }
    .customized-app-question-title { margin: 18px 0px; }
    .modules-content .modules-content-title { margin: 24px 0px; }
    .custom-checkbox { background-size: 20px; }
    .custom-checkbox span { font-size: 14px;}
    .plan-form .tooltip-wrapper .tooltip-box { width: 462px; padding: 26px; }
    .plan-form .plan-summary-box { padding: 26px; }
    .plan-form .tooltip-wrapper .tooltip-box::before { left: -24px; border-top: 16px solid transparent; border-bottom: 16px solid transparent; border-right: 25px solid var(--white); }
    .access-billing-content .tooltip-wrapper .tooltip-box::before { top: -40px; left: 50%;  border-bottom: 25px solid var(--white); border-right: 16px solid transparent; border-left: 16px solid transparent; }
    .plan-form .tooltip-wrapper .tooltip-box .desc {    font-size: 18px; margin-bottom: 20px; }
    .plan-form .tooltip-wrapper .tooltip-box .plans-price { font-size: 34px; margin-bottom: 10px; }
    .plan-form .tooltip-wrapper .tooltip-box .end-box p { font-size: 14px; }
    .plan-form .tooltip-wrapper .tooltip-box  { transform: translate(40%, -110%); -webkit-transform: translate(40%, -110%); }
    

    /*************** Terms Privacy Page ******************/
    .terms-privacy-wrapper { padding: 60px 0px 100px; }
    .terms-privacy-content ul li, .terms-privacy-content ol li { font-size: 18px; line-height: 28px; }


}

@media screen and (max-width: 991px) {
    body {
        font-size: 20px;
    }
    html {
        scroll-padding-top: 85px;
    }
    .heading-style-1 {
        font-size: 40px;
    }
    .heading-style-2 { font-size: 34px; }
    .heading-style-3 {
        font-size: 28px;
    }
    .heading-style-4 {
        font-size: 22px;
    }
    .heading-style-5 {
        font-size: 17px;
    }
    .heading-style-6 {
        font-size: 26px;
    }
    .heading-style-7 {
        font-size: 22px;
    }


    .form-control, .form-select {
        font-size: 17px;
        padding-inline:20px;
    }
    .select2-container--default .select2-selection--single {
        padding-inline:20px;
    }
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 17px;
    }
    .select2-container--default .select2-results__option {
        font-size: 17px;
    }
    .contact-form .select2-container--default .select2-selection--single .select2-selection__rendered,
    .contact-form .select2-container--default .select2-results__option {
        font-size: 17px;
    }
    .demo-form .rc-label,
    .recaptcha-like .rc-label,
    #configure-plan .recaptcha-like .rc-label,
    .demo-form .btn-submit.btn-primary,
    .plan-form .btn-submit.btn-primary {
        font-size: 17px !important;
        font-weight: 600;
    }

    .container {
        max-width: 760px;
    }
    .top-section {
        padding-top:80px ;
    }

    /* header */
    .navbar .logo img {
        height: 36px;
    }
    .main-header {
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .navbar-collapse {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(51, 24, 64, 0.88);
        padding: 20px;
        height: calc(100dvh - 80px);
        /* backdrop-filter: blur(5px); */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        overflow: auto;
        gap: 30px;
        border-radius: 20px 20px 0 0;
        max-height: 20000px;
        transition-duration: 0.3s !important;
        
    }

    .navbar-collapse.collapsing {
        transition: none !important;
    }


    .navbar-nav {
        gap: 0px;
        margin: 0 !important;
        padding: 0;
        /* align-items: flex-start !important; */
        align-items: center !important;
    }
    .sub-menu .dropdown-menu ul {
        background: transparent;
        box-shadow: none;
        padding: 0;
        min-width: auto;
    }
    .sub-menu .dropdown-menu ul::before {
        display: none;
    }
    .nav-item .nav-link {
        color: var(--white);
    }
    .sub-menu:hover .dropdown-menu {
        display: none;
        opacity: 0;
    }
    /* .sub-menu.mobile-open .dropdown-menu,
    .sub-menu .dropdown-menu.active {
        display: block;
        opacity: 1;
        animation: slideDown 0.3s ease;
    } */
    .sub-menu .dropdown-menu {
        position: relative;
        top:-5px;
        left: 0;
        padding: 0;
        transform: none;
        animation: none !important;
        opacity: 0;
        display: none;
        text-align: center;
        margin-top:0px;
    }
    .sub-menu.mobile-open .dropdown-menu,
    .sub-menu .dropdown-menu.active {
        display: block;
        opacity: 1;
        animation: slideDown 0.3s ease;
    }
    .sub-menu .dropdown-toggle::after {
        font-size: 10px;
        margin-left: 5px;
        border: 0;
        display: inline-block !important;
        transition: transform 0.3s ease;
        background: url(../images/dropdown-arrow.svg) no-repeat center bottom;
        background-size: cover;
        /* border-right: solid 2px var(--white);
        border-bottom: solid 2px var(--white); */
         padding: 0px;
         width: 14px;
        height: 10px;
        margin: 0 0 0 10px;
        top: 0px;
        position: relative;
    }
    .sub-menu.mobile-open .dropdown-toggle::after {
        transform: rotate(180deg);
        top: 1px;
    }
    .nav-item .nav-link {
        font-size: 18px;
        text-align: center;
        color: var(--green-500);
    }
    .sub-menu .dropdown-item {
        font-size: 18px;
        color: var(--white);
        padding: 10px 0px;
    }
    .sub-menu .dropdown-item:hover,
    .sub-menu .dropdown-item.active {
        color: var(--color-primary);
    }

    .header-actions .my-space {
        border: none;
        padding: 0;
    }
    .header-actions .my-space span   {
        display: none;
    }
    .header-actions .my-space img {
        display: block;
        width: 24px;
    }
    .navbar-toggler .bar {
        background-color: var(--purple-500);
    }
    .my-space-box-container {
        top: calc(100% + 10px);
    }

    /*************** Banner Section ******************/
    .home-banner-content .home-banner-title {
        font-size: 30px;
    }
    .home-banner-content .home-banner-subtitle {
        font-size: 19px;
    }
    .home-banner-content .home-banner-list li {
        font-size: 18px;
    }
    .home-banner-list li::before {
        width: 20px;
        height: 20px;
    }
    .home-banner-highlight {
        font-size: 22px;
    }
    .home-banner-list {
        margin-bottom: 10px;
    }

    /* .banner-btn {
        padding: 14px 26px;
        font-size: 16px;
    } */
    /*************** Banner Section Ends ******************/


    /* feature */
    .feature-card-content {
        max-width: inherit;
    }

    /* testimonials */
    .testimonials-inner {
        padding: 60px 0;
    }
    .testimonials-slider {
       padding: 0 10px;
    }
    .testimonials-slider .slick-prev {
        left: -10px;
    }
    .testimonials-slider .slick-next {
        right: -10px;
    }
    .testimonials-slider .slick-slide.slick-current ~ .slick-slide {
        border-right: var(--gray);
    }
    .author-avatar {
        width: 80px;
        height: 80px;
    }
    .testimonial-text {
        font-size: 16px;
    }

    /* our clients slider */
    

    /* demo form */
    .form-col-wrap {
        column-gap: 20px;
    } 
    .form-col {
        width: calc(50% - 10px);
    }
    .demo-form-section {
        padding: 150px 0 100px;
    }
    .inner-page-form {
        padding-top:80px ;
    }
    .testimonials-section .our-clients-section {
        max-width: 70%;
    }
    .testimonials-section ~ .demo-form-section.inner-page-form#demo {
        padding-top: calc(85px + 72px);
        margin-top: 0;
    }
    .telephone-wrap .select2-container {
        width: 177px !important;
    }
    .country-code-prefix {
        font-size: 17px;
        left: 48px;
    }
    .telephone-wrap .form-control {
        padding-left: 88px;
        padding-right: 20px;
    }
    #configure-plan .confirmation-content .telephone-wrap .form-control.phone-input {
        padding: 0 20px 0 88px !important;
    }
    #configure-plan .confirmation-content .telephone-wrap .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: var(--plan-field-height) !important;
    }
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        width: 18px;
        height: 46px;
    }
    .demo-form .form-check {
        padding-inline: 20px;
    }

    /* footer */
    .footer-wrapper { gap: 20px;}
    .social-icons {
        gap: 10px;
    }
    .social-icon {
        width: 38px;
        height: 38px;
    }
    .footer-right {
        padding-left: 20px;
    }

    .contact-content {
        padding-bottom: 0;
    }
    .contact-banner-section {
        margin-bottom: 40px;
    }

    .about-us-slogan-section h2 {
        font-size: 32px;
    }

    .about-us-section {
        flex-direction: column-reverse;
        gap: 40px;
    }
    .about-us-section .about-us-content {
        width: 100%;
    }
    .about-us-section .about-us-image {
        width: 100%;
    }

    .about-us-section-2 {
        flex-direction: column;
        gap: 40px;
    }
    .about-us-section-2 .about-us-content {
        width: 100%;
    }
    .about-us-section-2 .about-us-image {
        width: 100%;
    }
    .about-us-section-2 .about-us-content h2 {
        line-height: 32px;
    }


    /************** Solutions Page ******************/
    .main-wrapper:has(> .solution-section) .top-section {
        padding-top: 115px;
        padding-bottom: 30px;
    }
    .solution-list { padding: 0;}
    .solution-list-item { flex-direction: column; -webkit-flex-direction: column; }
    .solution-list-item.even-grid { flex-direction: column; -webkit-flex-direction: column; }
    .solution-list-item .solution-img, .solution-list-item .solution-content {
        width: 100%;
    }
    .solution-list-item .solution-img,
    .solution-list-item.even-grid .solution-img, .solution-list-item.even-grid .solution-img img,
    .solution-list-item .solution-img img { border-radius: 16px 16px 0px 0px; }
    .solution-list-item .solution-content { padding: 30px; }
    .solution-list-item .solution-content .solution-desc p { font-size: 18px; line-height: 26px; margin-bottom: 20px; }

    .solution-list-item .btn { min-width: 44px; height: 44px; left: 50%; top: 100%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); }
    .solution-list-item.even-grid .btn { left: 50%; top: 100%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); }
    .solution-list-item .btn img { width: 18px; height: 18px; display: none; }
    .solution-list-item .btn .btn-text { opacity: 1; max-width: 200px;padding: 0 12px;}

    /***************** Plans Page ******************/
    .plans-section { padding: 50px 0 70px; }
    .plans-list-item { width: calc((100% / 2) - 13px); height: auto; }
    .plans-title-wrap { padding: 30px 20px;}
    .plans-title-wrap .plans-title { font-size: 36px; }
    .plans-price { font-size: 28px; }
    .plans-price span { font-size: 20px; }
    .plans-features-wrap { padding: 20px 0 40px; }
    .plans-features-list li { font-size: 18px; padding: 8px 16px; }
    .plan-list-end-txt { max-width: 100%; text-align: center; margin-top: 20px; }


    /**********Plan End Form ***********/
    .customized-app-question-title, .modules-content .modules-content-title,
    .confirmation-content .confirmation-content-title, .confirmation-content .confirmation-content-title { padding: 0px 20px; }
    .custom-radiobox.with-arrow-bg { padding-inline: 20px; }
    .custom-radiobox, .custom-checkbox { padding-block: 17.5px; padding-inline: 20px; }
    .custom-radiobox.with-arrow-bg { background-size: 16px;}
    .plan-form label { font-size: 17px; }
    .customized-app-question-title { margin: 18px 0px; }
    .modules-content .modules-content-title { margin: 24px 0px; }
    .custom-checkbox { background-size: 16px; }
    .custom-checkbox span { font-size: 14px;}
    .plan-form .tooltip-wrapper .tooltip-box { width: 342px; padding: 26px; }
    .plan-form .tooltip-wrapper .tooltip-box::before { left: -24px;  border-top: 16px solid transparent; border-bottom: 16px solid transparent; border-right: 25px solid var(--white);   }
    .access-billing-content .tooltip-wrapper .tooltip-box::before { top: -40px; left: 50%;  border-bottom: 25px solid var(--white); border-right: 16px solid transparent; border-left: 16px solid transparent; }
    .plan-form .tooltip-wrapper .tooltip-box .desc {    font-size: 18px; margin-bottom: 20px; }
    .plan-form .tooltip-wrapper .tooltip-box .plans-price { font-size: 34px; margin-bottom: 10px; }
    .plan-form .tooltip-wrapper .tooltip-box .end-box p { font-size: 14px; }
    .plan-form .tooltip-wrapper .tooltip-box  { transform: translate(38%, -97%); -webkit-transform: translate(38%, -97%); }

    

    /*************** Terms Privacy Page ******************/
    .terms-privacy-wrapper { padding: 50px 0px 80px; }
    .terms-privacy-content ul li, .terms-privacy-content ol li { font-size: 18px; line-height: 28px; }
    
}

@media screen and (max-width: 767px) {
    .top-section {
        padding-top: 70px;
    }
    body {
        font-size: 18px;
    }
    html {
        scroll-padding-top: 75px;
    }
    .heading-style-1 {
        font-size: 32px;
    }

    .heading-style-2 { font-size: 30px; }
    
    .heading-style-3 {
        font-size: 26px;
    }
    .heading-style-4 {
        font-size: 20px;
    }
    .heading-style-5 {
        font-size: 16px;
    }
    .heading-style-6 {
        font-size: 24px;
    }
    .heading-style-7 {
        font-size: 20px;
    }

    .form-control, .form-select {
        font-size: 16px;
    }
    /* Móvil: mismo tamaño de letra en captcha y botones de envío */
    .demo-form .rc-label,
    .recaptcha-like .rc-label,
    #configure-plan .recaptcha-like .rc-label,
    .demo-form .btn-submit.btn-primary,
    .plan-form .btn-submit.btn-primary {
        font-size: 16px !important;
        font-weight: 600;
    }
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 16px;
    }
    .select2-container--default .select2-results__option {
        font-size: 16px;
    }
    .country-code-prefix {
        font-size: 16px;
    }
    .contact-form .select2-container--default .select2-selection--single .select2-selection__rendered,
    .contact-form .select2-container--default .select2-results__option {
        font-size: 16px;
    }
    .contact-form .telephone-wrap .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 52px;
    }
    .demo-form .form-check:has(.recaptcha-like),
    .contact-form .form-check:has(.recaptcha-like) {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 13px 20px;
        border-radius: 60px;
        background-color: var(--color-surface-subtle);
        margin: 0;
        min-height: 53px;
        box-sizing: border-box;
    }
    .contact-form .recaptcha-like,
    .demo-form .form-check:has(.recaptcha-like) .recaptcha-like {
        max-width: 100%;
        width: 100%;
        min-height: 0;
        height: auto;
        max-height: none;
        border-radius: 0;
        background: transparent;
        display: flex;
        align-items: center;
    }
    .contact-form .recaptcha-like .rc-anchor,
    .demo-form .form-check:has(.recaptcha-like) .recaptcha-like .rc-anchor {
        width: 100%;
        padding: 0;
        gap: 10px;
        box-sizing: border-box;
    }
    .contact-form .rc-checkbox {
        width: 28px;
        height: 28px;
        border-radius: 14px;
        flex-shrink: 0;
    }
    .contact-form .rc-spinner {
        top: 3px;
        left: 3px;
        width: 20px;
        height: 20px;
    }
    .contact-form .rc-check {
        top: -2px;
        left: 4px;
        font-size: 20px;
    }
    .contact-form .btn-submit.btn-primary {
        padding: 10px 28px;
        display: block;
        width: fit-content !important;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .contact-form .contact-submit-wrap {
        display: flex;
        justify-content: center;
    }
    .contact-form .row > .col-md-6:has(.contact-submit-wrap) {
        justify-content: center;
    }

    .demo-form .form-group:has(.btn-submit.btn-primary) {
        display: flex;
        justify-content: center;
    }
    .demo-form .btn-submit.btn-primary {
        display: block;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .demo-form .rc-checkbox {
        width: 28px;
        height: 28px;
        border-radius: 14px;
        flex-shrink: 0;
    }
    .demo-form .rc-spinner {
        top: 3px;
        left: 3px;
        width: 20px;
        height: 20px;
    }
    .demo-form .rc-check {
        top: -2px;
        left: 4px;
        font-size: 20px;
    }

    #configure-plan .confirmation-content .form-check:has(.recaptcha-like) {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 13px 20px;
        border-radius: 60px;
        background-color: var(--color-surface-subtle);
        min-height: var(--plan-field-height);
        height: auto;
        margin: 0;
    }
    #configure-plan .confirmation-content .recaptcha-like {
        min-height: 0;
        height: auto;
        max-height: none;
        border-radius: 0;
        background: transparent;
    }
    #configure-plan .confirmation-content .recaptcha-like .rc-anchor {
        padding: 0;
        gap: 10px;
    }
    #configure-plan .confirmation-content .rc-checkbox {
        width: 28px;
        height: 28px;
        border-radius: 14px;
        flex-shrink: 0;
    }
    #configure-plan .confirmation-content .rc-spinner {
        top: 3px;
        left: 3px;
        width: 20px;
        height: 20px;
    }
    #configure-plan .confirmation-content .rc-check {
        top: -2px;
        left: 4px;
        font-size: 20px;
    }

    .navbar .logo img {
        height: 45px;
    }
    /* .nav-item .nav-link {
        font-size: 16px;
    }
    .sub-menu .dropdown-item {
        font-size: 14px;
    } */


    .demo-btn-wrap-mobile {
        display: block;
        text-align: center;
        background-color: rgba(236, 236, 236, 0.75);
        width: 100%;
        padding: 50px 0;
        border-radius: 20px;
    }
    .header-actions {
        gap: 15px;
    }
    .header-actions .btn{
        display: none;
    }
    .navbar-collapse { 
        top: 70px;
        height: calc(100dvh - 70px);
    }
    .my-space-box-wrapper .btn {
        display: inline-block;
    }

    .search-wrap {
        position: unset;
    }
    .search-box-container {
        left: -20px;
        top: 100%;
        min-width: 100vw;
        transform: translateX(0) translateY(10px);
    }
    .search-box-container::before {
        left: auto;
        right: 95px;
        transform: none;
    }
    .search-box-container::after {
        right: 96px;
        left: auto;
        transform: none;
    }
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(30px) translateX(0%);
        }
        to {
            opacity: 1;
            transform: translateY(10px) translateX(0%);
        }
    }

    .header-actions .my-space {
        position: unset;
    }
    .my-space-box-container {
        top: 100%;
        left: auto;
        /* right: -60px; */
        left: -21px;
        min-width: 100vw;
        transform: translateX(0vw) translateY(10px);
    }
    .my-space-box-container::before {
        left: auto;
        right: 116px;
    }
    .my-space-box-container::after {
        left: auto;
        right: 117px;
    }
    .language-menu {
        /* left: auto;
        right: -10px; */
        left: -40px;
        transform: translateX(0) translateY(10px);
    }
    /* .language-menu::before {
        left: auto;
        right: -7px;
    }
    .language-menu::after {
        left: auto;
        right: -7px;
    } */
    /* .btn {
        font-size: 12px;
        padding: 10px 14px;
    } */

    /************** Banner Section ******************/
    .home-banner-section {
        padding:  0;
        margin-top: 20px;
    }
    .home-banner {
        background: var(--white);
        padding: 0px;
        border-radius: 12px;
    }
    .home-banner-slider-wrapper { display: none; }
    .home-banner-content {
        position: static;
        transform: translate(0px);
        left: unset;
        top: unset;
        padding: 24px clamp(18px, 5vw, 40px) 0;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-banner-img img {
        width: 100%;
        height: auto;
        border-radius: 0 0 12px 12px;
    }

    @media (orientation: portrait) {
        .home-banner-content {
            --home-banner-copy-width: 250px;
            display: grid;
            justify-items: center;
            align-items: start;
            padding: 24px 15px 0;
            width: 100%;
            box-sizing: border-box;
        }
        .home-banner-copy {
            position: static;
            left: auto;
            transform: none;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-self: center;
            width: min(var(--home-banner-copy-width), 100%);
            max-width: 100%;
            margin-inline: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .home-banner-content .home-banner-title {
            font-size: clamp(26px, 7.5vw, 30px);
            margin-left: 0;
            padding-left: 0;
            text-align: left;
            width: auto;
            max-width: 100%;
        }
        .home-banner-list:not(.home-banner-list--tagline) {
            margin-bottom: 10px;
            margin-left: 0;
            margin-right: 0;
            width: 100%;
            min-width: 0;
            max-width: 100%;
            box-sizing: border-box;
            padding-inline: 0;
        }
        .home-banner-content .home-banner-subtitle {
            margin-left: 0;
            text-align: left;
        }
        .home-banner-content .home-banner-list:not(.home-banner-list--tagline) li {
            display: grid;
            grid-template-columns: 16px 1fr;
            column-gap: 10px;
            align-items: start;
            font-size: clamp(13px, 3.6vw, 15px);
            overflow-wrap: break-word;
            word-break: normal;
        }
        .home-banner-list--tagline {
            margin-left: 0;
            margin-top: 4px;
            margin-right: 0;
            width: 100%;
            min-width: 0;
            max-width: 100%;
        }
    }

    .banner-btn {
        padding: 14px 26px;
        width: max-content;
    }
    .mobile-banner-img {
        margin-top: -22px;
    }

    .home-banner-content .home-banner-subtitle {
        font-size: 16px;
    }
    .home-banner-content .home-banner-list:not(.home-banner-list--tagline) li {
        font-size: 15px;
    }
    .home-banner-list li::before {
        width: 16px;
        height: 16px;
    }
    .home-banner-highlight {
        font-size: 28px;
    }

    /*************** Banner Section Ends ******************/

    .home-growth-tagline {
        padding: 22px 16px 26px;
        border-radius: 0 0 12px 12px;
        max-width: 100%;
    }
    .home-growth-tagline__inner {
        max-width: 240px;
        gap: 4px;
    }
    .home-banner-list--tagline {
        margin-top: 4px;
    }
    .home-growth-tagline__brace {
        font-size: 56px;
    }
    .home-banner-content .home-banner-list--tagline .home-growth-tagline__line--1 {
        font-size: 17px;
    }
    .home-banner-content .home-banner-list--tagline .home-growth-tagline__line--2 {
        font-size: 27px;
    }

    @media (orientation: landscape) {
        .home-banner-content {
            padding: 20px 0 0 6px;
            margin: 0;
            max-width: calc(100% - 12px);
            align-items: flex-start;
        }
        .home-banner-content {
            display: flex;
            justify-items: unset;
        }
        .home-banner-copy {
            left: auto;
            transform: none;
            justify-self: auto;
            width: 100%;
            max-width: none;
            margin-inline: 0;
            margin-left: -5px;
            padding: 0;
        }
        .home-banner-content .home-banner-title {
            font-size: 26px;
            margin-left: 0;
        }
        .home-banner-list {
            margin-left: 0;
        }
        .home-banner-content .home-banner-subtitle {
            margin-left: 0;
        }
        .home-banner-content .home-banner-list li {
            font-size: 12px;
        }
        .home-banner-list li::before {
            width: 14px;
            height: 14px;
        }
        .home-banner-content .home-banner-list--tagline .home-growth-tagline__line--1 {
            font-size: 15px;
        }
        .home-banner-content .home-banner-list--tagline .home-growth-tagline__line--2 {
            font-size: 24px;
        }
    }

    .form-col-wrap {
        flex-direction: column;
    }
    .form-col {
        width: 100% !important;
    }
    
    .why-choose-section { padding: 60px 0 0; }
    .testimonials-section    {
        --demo-logo-overlap: 24px;
        padding: 40px 0 0;
        margin: 0 auto calc(-1 * var(--demo-logo-overlap)) auto;
    }
   
    
    .client-logos {
        flex-direction: column;
    }
    
    /* Our Clients Slider */
    .our-clients-section {
        padding: 25px 0;
    }
    .our-clients-slider .our-client-item {
        margin: 0;
    }
    .our-client-item img {
        transform: scale(0.7);
    }
    .our-clients-slider {
        padding: 0 10px;
    }
    
    
    /* Testimonials */
    .testimonial-card {
        padding: 0;
    }
    .testimonials-slider .slick-slide {
        border: none;
    }
    
    /* Demo Form - Mobile Responsive */
    .demo-form-section {
        padding: 120px 0px 80px;
    }
    .inner-page-form {
        padding-top: 50px;
    }
    .testimonials-section .our-clients-section {
        max-width: 100%;
    }
    .testimonials-section ~ .demo-form-section.inner-page-form#demo {
        padding-top: calc(24px + 72px);
        margin-top: 0;
    }
    
    /* Footer - Mobile Responsive */
    .main-footer {
        padding: 40px 0px;
    }
    .footer-wrapper {
        flex-wrap: wrap;
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-about-us {
        grid-row: span 2 / span 2;
    }
    .footer-logo {
        width: auto;
    }
    .footer-logo img {
        height: 75px;
        width: auto;
    }
    .footer-left {
        width: 100%;
        margin-bottom: 20px;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        grid-column: span 2;
    }
    .footer-heading {
        font-size: 15px;
        margin-bottom: 14px;
    }
    .footer-links a {
        font-size: 13px;
    }
    .footer-links li {
        margin-bottom: 8px;
    }
    .footer-links .footer-heading {
        margin-bottom: 8px;
    }
    .footer-heading-spacing {
        margin-top: 14px;
    }
    /* .footer-middle-left,
    .footer-middle-right {
        width: 36%;
    } */
    .footer-middle-right .footer-heading-spacing {
        margin-bottom: 0;
    }
    .footer-divider {
        width: 100%;
        height: 1px;
        margin: 20px 0;
    }
    .footer-right {
        align-items: start;
        align-self: start;
        padding: 25px 0 0 0;
    }
    .footer-right::before {
       width: 0%;
       height: 1px;
       margin:0;
    }

    .footer-right .footer-links { position: relative; }
    .footer-right .footer-links::before {
        content: '';
        position: absolute;
        top: -25px;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--color-primary);
        border-radius: 0px;
    }

    .footer-right .footer-links li {
        margin-bottom: 10px;
    }
    .footer-right .footer-links li:last-child {
        margin-bottom: 0;
    }
    /* .footer-right .footer-links {
        display: flex;
        flex-wrap: wrap;
        column-gap: 20px;
        justify-content: center;
    } */
    .footer-copyright {
        display: block;
        margin-top: 14px;
        padding-top: 0;
        font-size: 14px;
    }

    .contact-section {
        padding-top: 40px;
        padding-bottom: 70px;
    }

    .contact-content p { 
        line-height: 26px;
    }

    .about-us-slogan-section h2 {
        font-size: 30px;
    }
    .about-us-section {
        padding: 40px 20px 50px;
    }
    .about-us-section-2 {
        padding: 50px 20px 50px;
    }
    .about-us-slogan-section {
        padding-bottom: 40px;
        padding-inline: 20px;
    }
    .about-us-section-2 .about-us-content h2 {
        line-height: 30px;
    } 


    /************** Solutions Page ******************/
    .main-wrapper:has(> .solution-section) .top-section { padding-top: 105px; }
    

    /***************** Plans Page ******************/
    .plans-content p {
        line-height: 1.35;
        margin: 4px 0 8px;
    }
    .plans-list-item { width: 100%; border-radius: 16px; }
    .plans-title-wrap { padding: 25px 15px; border-radius: 16px; }
    .plans-title-wrap::after { bottom: -16px;}
    .plans-title-wrap .plans-title { font-size: 32px; }
    .plans-price { font-size: 24px; }
    .plans-price span { font-size: 18px; }
    .plans-features-wrap { padding: 15px 0 30px; }
    .plans-features-list li { font-size: 16px; }

    /**********Plan End Form ***********/
    .mobile-application-content-inner,
    .access-billing-content-inner {
        display: none;
    }
    /* Móvil: selectores → resumen → Siguiente → texto email → campos */
    #configure-plan .plan-form--split .form-col-wrap.plan-form-align-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    #configure-plan .plan-form--split .plan-form-row {
        display: contents;
    }
    #configure-plan .plan-form--split .plan-form-row--summary {
        display: block;
        order: 2;
        width: 100%;
        margin: 4px 0 12px;
        padding: 0;
    }
    #configure-plan .plan-form--split .plan-form-row--summary:not(:has(.plan-summary-box.active)) {
        display: none;
        margin: 0;
    }
    #configure-plan .plan-form--split .plan-form-row--summary .plan-form-cell--full {
        position: static;
        transform: none;
        left: auto;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        padding: 0;
        margin: 0;
    }
    #configure-plan .plan-form--split .plan-form-row--titles .plan-form-cell--left {
        order: 0;
        width: 100%;
    }
    #configure-plan .plan-form--split .plan-form-cell--left {
        order: 1;
        width: 100%;
    }
    #configure-plan .plan-form--split .plan-form-row--submit .plan-form-cell--left {
        order: 3;
    }
    #configure-plan .plan-form--split .plan-form-row--titles .plan-form-cell--right {
        order: 4;
        width: 100%;
        align-self: auto;
        scroll-margin-top: 24px;
    }
    #configure-plan .plan-form--split .plan-form-row--titles .plan-form-cell--right .confirmation-content-title {
        margin: 8px 0 20px;
        padding-inline: 0;
    }
    #configure-plan .plan-form--split .plan-form-cell--right {
        order: 5;
        width: 100%;
    }
    #configure-plan .plan-form--split .confirmation-content {
        scroll-margin-top: 24px;
    }
    .plan-form .form-col-wrap { row-gap: 20px; }
    .customized-app-question .form-group , 
    .modules-content-list .form-group, .confirmation-content .form-group{ margin-bottom: 20px; }
    .custom-radiobox, .custom-checkbox { padding-block: 17.5px; }
    .custom-radiobox.with-arrow-bg { background-size: 16px; background-position: 96% center;  } 
    .custom-checkbox { background-position: 96% center; }
    .plan-form label { font-size: 17px; }
    .customized-app-question-title { margin: 18px 0px; }
    .modules-content .modules-content-title { margin: 24px 0px; }
    .custom-checkbox { background-size: 16px; }
    .custom-checkbox span { font-size: 14px;}
    #configure-plan .plan-form--split .plan-form-cell--left .custom-checkbox:has(span) {
        height: auto;
        min-height: var(--plan-field-height);
        max-height: none;
        padding: 10px 20px;
        gap: 3px;
        align-items: flex-start;
        justify-content: center;
    }
    #configure-plan .plan-form--split .plan-form-cell--left .custom-checkbox:has(span) label {
        line-height: 1.15;
    }
    #configure-plan .plan-form--split .plan-form-cell--left .custom-checkbox:has(span) span {
        line-height: 1.2;
        margin-top: 0;
    }
    .plan-form .tooltip-wrapper { text-align: center;}
    .plan-form .tooltip-wrapper .tooltip-box { width: 100%; max-width: 320px; padding: 16px; top: auto; left: auto; right: auto; transform: none; position: relative; margin: 20px auto 30px; display: none; }
    .plan-form .plan-summary-box { padding: 16px; margin-top: 12px; }
    #configure-plan .plan-form--split .plan-form-row--summary .plan-summary-box {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    #configure-plan .plan-summary-box .summary-config-desc .modulo6 {
        white-space: normal;
        overflow-wrap: break-word;
        word-break: normal;
        display: block;
    }
    #configure-plan .plan-summary-box .summary-config-desc .modulo6-note {
        display: block;
        font-size: clamp(11px, 3.2vw, 14px);
        line-height: 1.35;
        margin-top: 4px;
        white-space: normal;
        overflow-wrap: break-word;
    }
    .plan-form .tooltip-wrapper .tooltip-box::before,
    .access-billing-content .tooltip-wrapper .tooltip-box::before { top: -19px; left: 50%; transform: translateX(-50%); border-bottom: 25px solid var(--white); border-right: 16px solid transparent; border-left: 16px solid transparent; border-top: none; }
    .plan-form .tooltip-wrapper .tooltip-box .desc,
    .plan-form .plan-summary-box .desc { font-size: 14px; margin-bottom: 20px; }
    .plan-form .tooltip-wrapper .tooltip-box .plans-price,
    .plan-form .plan-summary-box .plans-price { font-size: 34px; margin-bottom: 10px; }
    .plan-form .tooltip-wrapper .tooltip-box .end-box p,
    .plan-form .plan-summary-box .end-box p { font-size: 14px; }
    .plan-form .tooltip-wrapper .tooltip-box,
    .plan-form .access-billing-content .tooltip-wrapper .tooltip-box { display: none; position: relative; top: unset; left: unset; transform: translate(0% , 10%); margin-bottom: 30px; }
    .plan-form .tooltip-wrapper .tooltip-box.active,
    .plan-form .plan-summary-box.active { display: block; opacity: 1; pointer-events: auto; }

    /*************** Terms Privacy Page ******************/
    .terms-privacy-wrapper { padding: 40px 0px 60px; }
    .terms-privacy-content ul li, .terms-privacy-content ol li { font-size: 16px; line-height: 26px; }
    .terms-privacy-content ul, .terms-privacy-content ol { padding-left: 25px; }

    /******************** Añadido por mi*****************/
    
    .bootbox-close-button {
        border: 0px !important;
        background-color: transparent !important;
    }  
    /**********************Captcha**************************************/
    .recaptcha-like {
            max-width: 304px;
            width: 100%;
            background: var(--color-surface-subtle);
            /*border: 1px solid #d3d3d3;*/
            border-radius: 3px;
            /*padding: 10px;
            font-family: Arial, sans-serif;*/
            box-sizing: border-box;
        }

        .rc-anchor {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }

        .rc-checkbox {
            width: 56px;
            height: 56px;
            border: 2px solid var(--color-border-strong);
            border-radius: 28px;
            background: var(--white);
            position: relative;
            flex-shrink: 0;
        }

        /*.rc-spinner {
            position: absolute;
            top: 4px;
            left: 4px;
            width: 18px;
            height: 18px;
            border: 2px solid #ccc;
            border-top-color: #1a73e8;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            display: none;
        }*/
        .rc-spinner {
          position: absolute;
          top: 6px;
          left: 6px;
          width: 40px;
          height: 40px;
          border: 2px solid var(--gray-300);
          border-top-color: var(--color-primary);
          border-radius: 50%;
          animation: spin 1s linear infinite;
          display: none;
        }

        /*.rc-check {
            position: absolute;
            top: 2px;
            left: 6px;
            font-size: 20px;
            color: #1e8e3e;
            display: none;
        }*/
        .rc-check {
          position: absolute;
          top: 0px;
          left: 10px;
          font-size: 40px;
          color: var(--color-primary);
          display: none;
        }

        .rc-label {
            font-size: 16px;
            color: var(--purple-500);
            user-select: none;
            line-height: 1.25;
        }

        .verified .rc-spinner {
            display: none;
        }

        .verified .rc-check {
            display: block;
        }

        .verifying .rc-spinner {
            display: block;
        }

        .verifying .rc-check {
            display: none;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }


   

}

.footer-br-landscape {
    display: none;
}

/* Salto de línea solo en móvil apaisado */
@media screen and (orientation: landscape) and (max-height: 520px),
       screen and (max-width: 767px) and (orientation: landscape) {
    .home-banner-br-landscape,
    .footer-br-landscape {
        display: inline;
    }
    #configure-plan .plan-form--split .plan-form-cell--left .custom-checkbox:has(span) span {
        line-height: 1.05;
    }
}

/* Móvil apaisado (ancho > 767px): mismo banner; texto más pequeño y más a la izquierda */
@media screen and (orientation: landscape) and (max-height: 520px) {
    .home-banner-content {
        left: calc(clamp(10px, 2.5vw, 28px) + 170px);
        width: min(290px, 44%);
        max-width: 290px;
    }
    .home-banner-copy {
        margin-left: -5px;
    }
    .home-banner-content .home-banner-title {
        font-size: 26px;
    }
    .home-banner-content .home-banner-subtitle {
        font-size: 16px;
    }
    .home-banner-content .home-banner-list li {
        font-size: 15px;
    }
    .home-banner-list li::before {
        width: 17px;
        height: 17px;
    }
    .home-banner-content .home-banner-list--tagline .home-growth-tagline__line--1 {
        font-size: 17px;
    }
    .home-banner-content .home-banner-list--tagline .home-growth-tagline__line--2 {
        font-size: 26px;
    }
}

