/**
 * Sumpays Landing Page - Estilos Personalizados
 * Diseño basado en Figma con fuente Mulish
 */

:root {
    /* Colores de Figma */
    --primary-blue: #013ed7;
    --secondary-blue: #0e6aa4;
    --primary-yellow: #ffcf52;
    --dark-blue: #003366;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text-primary: #1c1c1c;
    --text-gray: #6C6C72;
    --neutral-gray: #4D4D4D;
}

/* Global */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Menu Uruware Superior */
.menu-uruware {
    background-color: #0072b9;
    opacity: 0.8;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.menu-uruware.hidden {
    transform: translateY(-100%);
}

.menu-uruware .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.menu-uruware-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
}

.menu-uruware-item {
    margin: 0;
    padding: 0;
}

.menu-uruware-link {
    color: #ffffff;
    font-family: 'Mulish', sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.menu-uruware-link:hover {
    color: #ffffff;
    opacity: 0.85;
    text-decoration: none;
}

.menu-uruware-link span {
    display: inline-block;
}

.flag-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: block;
    margin-right: 0;
}

.menu-uruware-logo {
    padding-right: 8px;
}

.menu-uruware-logo a {
    padding: 8px 13px;
    display: flex;
    align-items: center;
}

.logo-uruware {
    height: auto;
    width: 100px;
    display: block;
}

/* Header Principal */
.header-main {
    padding: 24.5px 0;
    position: fixed;
    top: 36px; /* Altura del menu-uruware (padding 8px * 2 + texto ~20px) */
    left: 0;
    right: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.header-main .container {
    max-width: 1440px;
    padding-left: 129px;
    padding-right: 129px;
    margin: 0 auto;
}

.header-main.scrolled {
    top: 0;
}

.header-main::before {
    content: "";
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: background-color 0.3s ease;
}

.header-main.scrolled::before {
    background-color: #052361;
}

.logo-sumpays {
    height: 40px;
    width: 190px;
    display: block;
}

.header-main .navbar {
    padding: 0;
    min-height: 40px;
    position: relative;
    z-index: 1;
}

.navbar-brand {
    margin-right: 0;
    padding: 0;
    position: relative;
    height: 40px;
    width: 190px;
}

.navbar-collapse {
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.navbar-nav {
    align-items: center;
    position: relative;
    z-index: 1;
}

.navbar-nav .nav-item {
    padding: 0;
    margin: 0;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-family: 'Mulish', sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 22px !important;
    text-align: center;
    padding: 0 !important;
    margin: 0 28px !important;
    transition: color 0.3s, opacity 0.3s;
    display: inline-block;
}

.navbar-nav .nav-link:hover {
    opacity: 0.8;
}

.header-main.scrolled .navbar-nav .nav-link {
    color: #ffffff !important;
}

.navbar-nav .nav-item:first-child .nav-link {
    margin-left: 0 !important;
}

.navbar-nav .nav-item:last-child {
    margin-right: 0 !important;
}

.navbar-nav .nav-item:last-child .nav-link {
    margin-right: 0 !important;
    padding-right: 0 !important;
}

.navbar-nav .nav-item.ml-3 {
    margin-left: 1.5rem !important;
}

.navbar-nav .nav-item.ml-2 {
    margin-left: 0.5rem !important;
}

.social-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    padding: 0 !important;
    margin: 0 !important;
    width: 24px !important;
    height: 24px !important;
    line-height: 1 !important;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-icon img {
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
}

/* Banner Principal */
.banner-section {
    position: relative;
    width: 100%;
    height: 722px; /* 605px original + 117px del header */
    overflow: hidden;
    background-color: var(--primary-blue);
    padding-top: 117px; /* Compensar altura del menu-uruware + header fijo (36px + 81px) */
}

.banner-bg-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-blue);
    z-index: 0;
}

/* Decoraciones de fondo */
.banner-decoration-right {
    position: absolute;
    right: 0;
    bottom: 0; /* Alineado al fondo del banner */
    width: 661.98px;
    height: 545.475px;
    mix-blend-mode: color-burn;
    overflow: hidden;
    z-index: 0;
}

.banner-decoration-right .decoration-img {
    width: 100%;
    height: 100%;
    transform: rotate(180deg);
    object-fit: contain;
}

.banner-decoration-left {
    position: absolute;
    left: 0;
    bottom: 0; /* Alineado al fondo del banner */
    width: 634.71px;
    height: 527px;
    mix-blend-mode: color-burn;
    overflow: hidden;
    z-index: 0;
}

.banner-decoration-left .decoration-img {
    width: 100%;
    height: 100%;
    transform: scaleY(-1);
    object-fit: contain;
}

.banner-container {
    position: relative;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    z-index: 1;
}

/* Contenido izquierda */
.banner-content-left {
    position: absolute;
    left: 129px;
    top: 207px;
}

.banner-title {
    color: var(--white);
    font-family: 'Mulish', sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 50px;
    margin: 0 0 30px 0;
    width: 479px;
}

.btn-demo {
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 16px 0;
    width: 180px;
    height: 52px;
    border-radius: 40px;
    font-family: 'Mulish', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.48px;
    border: 2px solid var(--white);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-demo:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Speech bubble */
.speech-bubble {
    position: absolute;
    left: 710px; /* Posición exacta desde Figma */
    top: 110px; /* Posición exacta desde Figma */
    width: 190px; /* Ancho exacto desde Figma */
    height: 94px; /* Alto exacto desde Figma */
    z-index: 2;
}

.speech-bubble-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Phone mockup */
.phone-mockup {
    position: absolute;
    left: 926px; /* Posición exacta desde Figma */
    top: 55px; /* Posición exacta desde Figma */
    width: 261px; /* Ancho exacto desde Figma */
    height: 518px; /* Alto exacto desde Figma */
    z-index: 1;
}

.phone-complete-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Body 1 - Facturación electrónica */
.section-body1 {
    background-color: #e8f0ff; /* Celeste claro exacto de Figma */
    height: 798px; /* Altura exacta desde Figma */
    padding-top: 103px; /* Espacio desde el top según Figma */
    padding-bottom: 50px; /* Margen inferior */
    position: relative;
    overflow: hidden;
}

.body1-background-video {
    position: absolute;
    top: 180px; /* Empezar el video más abajo para dejar espacio al título */
    left: 0;
    width: 100%;
    height: calc(100% - 180px); /* Ajustar altura del video */
    object-fit: cover;
    z-index: 0;
}

.section-body1 .container {
    position: relative;
    z-index: 1;
}

.body1-title {
    font-family: 'Mulish', sans-serif;
    font-size: 40px;
    font-weight: 500; /* Medium */
    line-height: 50px;
    color: #000000;
    text-align: center;
    margin: 0 0 80px 0; /* Margen inferior para separar del contenido del video */
}

.body1-title .text-highlight {
    color: #0a4bd2;
    font-weight: 700; /* Bold */
}

/* Sections */
.section-light {
    background-color: var(--white);
    padding: 80px 0;
}

.section-gray {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.section-blue {
    background-color: var(--primary-blue);
    padding: 80px 0 350px;
    position: relative;
    overflow: visible;
}

.section-blue::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58%;
    height: 70%;
    background-image: url('./images/decoration-bg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0.08;
    pointer-events: none;
}

.section-title {
    font-family: 'Mulish', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    color: var(--text-primary);
    margin-bottom: 50px;
    text-align: center;
}

/* Body 0 - Conocé todo lo que podés hacer */
.section-body0 {
    background-color: var(--white);
    padding: 80px 0;
}

.body0-title {
    font-family: 'Mulish', sans-serif;
    font-size: 40px;
    font-weight: 500; /* Medium weight */
    line-height: 50px;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
}

.logo-sumpays-inline {
    display: inline-block;
    width: 178px; /* Ancho exacto desde Figma */
    height: 36.74px; /* Alto exacto desde Figma */
    vertical-align: middle;
    margin-left: 5px;
}

.body0-features-row {
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.body0-desktop {
    display: flex;
}

.body0-mobile-slider {
    display: none;
}

.body0-feature {
    text-align: center;
    padding: 0 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.body0-feature:hover {
    transform: translateY(-10px);
}

.body0-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(-60px 60px 100px rgba(16, 45, 97, 0.08));
    transition: all 0.3s ease;
}

.body0-feature:hover .body0-icon {
    transform: scale(1.1);
    filter: drop-shadow(-60px 60px 120px rgba(16, 45, 97, 0.15));
}

.body0-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.body0-text {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #000000;
    margin: 0;
}

.body0-text strong {
    font-weight: 700;
    line-height: 22px;
}

/* Body 2 - Control Total */
.section-body2 {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.body2-bg-decoration {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 65%;
    height: 92%;
    background-image: url('images/bg-body2-decoration.svg');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.body2-illustration {
    position: absolute;
    left: -30px;
    top: 320px;
    width: 320px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.body2-illustration img {
    width: 100%;
    height: auto;
    display: block;
}

/* Ilustración más grande en pantallas grandes (≥1300px) */
@media (min-width: 1300px) {
    .body2-illustration {
        width: 550px;
        left: -100px;
    }
}

/* Ocultar ilustración en pantallas menores o iguales a 1400px */
@media (max-width: 1400px) {
    .body2-illustration {
        display: none;
    }
}

.section-body2 .container {
    position: relative;
    z-index: 1;
}

.section-body2 .row {
    align-items: stretch;
}

.section-body2 .col-lg-5 {
    display: flex;
}

.body2-title {
    font-family: 'Mulish', sans-serif;
    font-size: 40px;
    font-weight: 400; /* Regular */
    line-height: 50px;
    color: #1c1c1c;
    text-align: center;
    margin-bottom: 60px;
}

.body2-title strong {
    color: #013ed7;
    font-weight: 700; /* Bold */
}

.body2-card-wrapper {
    position: relative;
    padding-top: 55px; /* Espacio para el icono flotante */
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.body2-card-wrapper:hover {
    transform: translateY(-10px);
}

.body2-icon-top {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    filter: drop-shadow(-60px 60px 100px rgba(16, 45, 97, 0.08));
    transition: all 0.3s ease;
}

.body2-card-wrapper:hover .body2-icon-top {
    transform: translateX(-50%) translateY(-5px);
    filter: drop-shadow(-60px 60px 120px rgba(16, 45, 97, 0.15));
}

.body2-icon-top img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.body2-card {
    background-color: #052361;
    border-radius: 27px;
    box-shadow: 0px 10px 100px 0px rgba(0, 0, 0, 0.1);
    padding: 80px 40px 50px;
    min-height: 480px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.body2-card-wrapper:hover .body2-card {
    box-shadow: 0px 15px 120px 0px rgba(0, 0, 0, 0.15);
}

.body2-card-title {
    font-family: 'Mulish', sans-serif;
    font-size: 25px;
    font-weight: 400; /* Regular */
    line-height: 30px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.body2-card-title strong {
    font-weight: 700; /* Bold */
}

.body2-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.body2-check-list li {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.body2-check-list .check-icon-white {
    width: 24px;
    height: 24px;
    margin-top: 0;
    flex-shrink: 0;
}

/* Body 3 - Simplificá la suscripción y el cobro */
.section-body3 {
    background-color: #0a4bd2;
    padding: 80px 0;
    position: relative;
}

.body3-bg-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1320px;
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.body3-circles-img {
    width: 100%;
    height: auto;
    opacity: 0.2;
    display: block;
    filter: brightness(1.3);
}

.section-body3 .container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
}

.body3-title {
    font-family: 'Mulish', sans-serif;
    font-size: 40px;
    line-height: 50px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0;
}

.body3-title-bold {
    font-weight: 700;
}

.body3-title-medium {
    font-weight: 500;
}

.section-body3 .row.justify-content-center {
    gap: 60px;
    margin: 0 auto;
    margin-top: 50px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
}

.section-body3 .col-lg-5 {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
    padding: 0;
    position: relative;
    z-index: 2;
    display: flex;
}

.body3-box {
    background-color: #ffffff;
    border-radius: 27px;
    box-shadow: 0px 10px 100px 0px rgba(0, 0, 0, 0.2);
    padding: 60px 40px;
    position: relative;
    width: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.body3-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 120px 0px rgba(0, 0, 0, 0.25);
}

.body3-box-left {
    border: 1px solid #eeeeee;
}

.body3-box-right {
    border: none;
    overflow: hidden;
}

.body3-box-decoration {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.08;
}

.body3-box-decoration-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mix-blend-mode: multiply;
}

.body3-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    width: 100%;
}

.body3-content-vertical {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

.body3-header-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.body3-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(-60px 60px 100px rgba(16, 45, 97, 0.08));
}

.body3-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.body3-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: flex-start;
}


.body3-feature-group {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 0;
    text-align: left;
}

.body3-feature-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.body3-feature-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.body3-feature-content {
    flex: 1;
}

.body3-box-title {
    font-family: 'Mulish', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    color: #052361;
    margin: 0;
    text-align: left;
}

.body3-box-title strong,
.body3-box-title .text-primary {
    font-weight: 700; /* Bold */
}

.body3-subtitle {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #052361;
    margin-bottom: 8px;
    margin-top: 0;
}

.body3-feature-content .body3-subtitle {
    margin-bottom: 8px;
}

.body3-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.body3-check-list li {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #052361;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.body3-check-list .check-icon {
    width: 28px;
    height: 28px;
    margin-top: 0;
    flex-shrink: 0;
    object-fit: contain;
}

.body3-check-list-small .check-icon-small {
    width: 10px;
    height: 10px;
    margin-top: 4px;
    margin-right: 0;
    flex-shrink: 0;
    object-fit: contain;
}

.body3-check-list-small li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.body3-description {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #052361;
    margin: 0;
}

.body3-description strong {
    font-weight: 700;
}

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

/* Feature Cards */
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h4 {
    font-family: 'Mulish', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    color: var(--text-primary);
    margin-top: 15px;
}

.feature-card p {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: var(--text-gray);
    margin-top: 10px;
}

/* Info Boxes */
.info-box {
    background-color: var(--dark-blue);
    border-radius: 20px;
    padding: 40px;
    color: var(--white);
    height: 100%;
    position: relative;
}

.info-box h3 {
    font-family: 'Mulish', sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 30px;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.info-box ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
}

.info-box-light {
    background-color: var(--white);
    border: 2px solid #e9ecef;
}

.info-box-light h3,
.info-box-light ul li {
    color: var(--dark-blue);
}

/* Icon Boxes */
.icon-box {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

/* Cards */
.card-custom {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-custom h3 {
    font-family: 'Mulish', sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.card-custom p {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: var(--text-gray);
}

/* Video Section */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Pagination Dots */
.section-blue .pagination-dots {
    text-align: center;
    padding: 20px 0;
}

.section-blue .pagination-dots .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.section-blue .pagination-dots .dot.active {
    background-color: rgba(255, 255, 255, 1);
    width: 10px;
    height: 10px;
}

/* Stacked Slider */
.stacked-slider-container {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto 40px;
    height: 360px;
}

.stacked-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.stacked-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 540px;
    height: 310px;
    background: white;
    border-radius: 10px;
    padding: 30px 30px;
    box-shadow: 0px 10px 100px 0px rgba(0, 0, 0, 0.24);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stacked-card.active {
    transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
    z-index: 3;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
}

.stacked-card.prev {
    transform: translate(-50%, -50%) translateX(-120px) translateY(0) scale(0.85);
    opacity: 1;
    visibility: visible;
    z-index: 1;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
}

.stacked-card.next {
    transform: translate(-50%, -50%) translateX(120px) translateY(0) scale(0.85);
    opacity: 1;
    visibility: visible;
    z-index: 2;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
}

.stacked-card h3 {
    font-family: 'Mulish', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.stacked-card p {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Video Section Overlap */
.video-section-overlap {
    position: relative;
    background: linear-gradient(to bottom, transparent 0%, transparent 50%, var(--light-gray) 50%, var(--light-gray) 100%);
    padding: 0 0 80px 0;
    margin-top: -300px;
    z-index: 10;
}

/* Video Body 1 - inside gray section */
.video-body1-container {
    margin-top: 40px;
}

/* Contact Section New Design */
.contact-section-new {
    background-color: var(--light-gray);
    padding: 80px 0 0;
    position: relative;
    z-index: 100;
}

.contact-card {
    background-color: #011c2a;
    background-image: url('./images/micelanea bg.png'), url('./images/contact-bg.png');
    background-size: contain, cover;
    background-position: right center, center;
    background-repeat: no-repeat, no-repeat;
    border-radius: 20px;
    padding: 50px 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    transform: translateY(60px);
    z-index: 999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon-left {
    width: 182px;
    height: 150px;
    flex-shrink: 0;
    margin-right: 60px;
}

.contact-icon-left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(-60px 60px 100px rgba(16, 45, 97, 0.08));
}

.contact-content {
    flex: 1;
    color: #fff;
    margin-left: 40px;
}

.contact-content h2 {
    font-family: 'Mulish', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 20px;
}

.contact-content h4 {
    font-family: 'Mulish', sans-serif;
    font-size: 25px;
    font-weight: 400;
    font-style: italic;
    line-height: 30px;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.3s;
}

.contact-item:hover {
    opacity: 0.8;
}

.contact-item > img {
    width: 24px;
    height: 24px;
    margin-right: 14px;
    object-fit: contain;
}

.contact-item span {
    font-family: 'Mulish', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
}

.contact-whatsapp-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-right: 14px;
    flex-shrink: 0;
}

.contact-whatsapp-icon img {
    width: 16px;
    height: 16px;
    display: block;
}



/* Utility Classes */
.opacity-40 {
    -webkit-opacity: 0.4;
    -moz-opacity: 0.4;
    opacity: 0.4;
}

.gpt-6 {
    padding-top: 120px !important;
}

.gpb-4 {
    padding-bottom: 64px !important;
}

.gpt-3 {
    padding-top: 48px !important;
}

.align-items-end {
    align-items: flex-end !important;
}

/* Footer */
.footer {
    background-color: #0072b9;
    color: #ffffff;
    padding: 0;
    position: relative;
    z-index: 1;
}

.footer .container {
    position: relative;
}

.footer-content {
    position: relative;
}

.footer-contact {
    text-align: center;
}

.footer-contact-item {
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .footer-contact {
        text-align: left;
    }
}

.footer-contact-item strong {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
}

.footer-contact-item a {
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: #ffffff;
    text-decoration: none;
}

.footer-column {
    text-align: center;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .footer-column {
        text-align: left;
    }
}

.footer-column h5 {
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 10px;
    margin-top: 0;
    text-transform: none;
}

.footer-column h5 a {
    color: #ffffff;
    text-decoration: none;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
    line-height: 1.8;
}

.footer-column ul li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo {
    height: auto;
    width: auto;
    max-height: 50px;
    margin-left: 0;
}

.footer-bottom {
    position: relative;
}

.footer-bottom-left {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-left {
        text-align: left;
    }
}

.footer-policy {
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 10px;
}

.footer-policy a {
    color: #ffffff;
    text-decoration: none;
}

.footer-policy a:hover {
    opacity: 0.6;
}

.footer-copyright {
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    color: #ffffff;
    margin-bottom: 0;
}

.footer-bottom-right {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-right {
        text-align: right;
    }
}

.footer-design {
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 0;
}

.footer-design a {
    color: #ffffff;
    text-decoration: none;
}

.footer-design a:hover {
    opacity: 0.6;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
    display: none;
}

/* Menu Mobile */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none !important;
    width: 30px;
    height: 20px;
    position: relative;
    display: inline-block;
}

.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    display: block;
    position: absolute;
    left: 0;
}

.navbar-toggler-icon::before {
    top: 0;
}

.navbar-toggler-icon::after {
    bottom: 0;
}

.navbar-toggler:not([aria-expanded="true"]) .navbar-toggler-icon::before {
    box-shadow: 0 9px 0 #ffffff;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 8px;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #052361;
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        padding: 100px 40px 40px;
        transition: right 0.35s ease-in-out;
        z-index: 999;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.4);
        overflow-y: auto;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-collapse.collapsing {
        right: -100%;
        transition: right 0.35s ease-in-out;
        height: 100vh;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start !important;
        width: 100%;
        gap: 0;
    }

    .navbar-nav .nav-item {
        width: 100%;
        margin: 0 !important;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-item:first-child {
        padding-top: 0;
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-item:hover {
        padding-left: 10px;
    }

    .navbar-nav .nav-link {
        color: #ffffff !important;
        font-size: 20px !important;
        font-weight: 600 !important;
        text-align: left !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100%;
        transition: color 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        color: #ffcf52 !important;
        opacity: 1;
    }

    .navbar-toggler {
        position: relative;
        z-index: 1001;
    }

    .menu-uruware {
        display: none;
    }

    .header-main {
        top: 0;
        padding: 20px 0;
    }

    .header-main.scrolled::before {
        background-color: #052361;
    }

    .header-main .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .logo-sumpays {
        height: 32px;
        width: auto;
    }

    .navbar-brand {
        height: auto;
        width: auto;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .section-body3 .row.justify-content-center {
        gap: 30px;
    }

    .section-body3 .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 15px;
    }

    .body3-box {
        height: auto;
    }

    .body3-content {
        gap: 20px;
    }

    .body3-icon {
        width: 80px;
        height: 80px;
    }
}

/* Hide slider pagination dots on desktop */
.slider-pagination-dots {
    display: none;
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .header-main .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .banner-section {
        height: auto;
        min-height: 450px;
        padding: 10px 0 40px;
    }

    /* Body 0 Mobile - Lista Vertical */
    .section-body0 {
        padding: 40px 0 60px;
    }

    .body0-title {
        font-size: 24px;
        font-weight: 500;
        line-height: auto;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .body0-desktop {
        display: none !important;
    }

    .body0-mobile-slider {
        display: block;
        width: 100%;
        padding: 0 20px;
    }

    .body0-slider-track {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .body0-slide-item {
        width: 100%;
    }

    .body0-feature {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 20px;
        background-color: #F8F8F8;
        border-radius: 10px;
        text-align: left;
    }

    .body0-icon {
        width: 40px;
        height: 40px;
        margin: 0;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .body0-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .body0-text {
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
        color: #000000;
        margin: 0;
        flex: 1;
    }

    .body0-text strong {
        font-weight: 600;
    }

    .body0-slider-dots {
        display: none;
    }

    .section-body1 {
        height: auto;
        min-height: 600px;
        padding-top: 60px;
        padding-bottom: 150px;
    }

    .body1-background-video {
        top: 200px;
        height: calc(100% - 200px);
    }

    .body1-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .banner-container {
        position: relative;
        width: 100%;
        height: 480px;
        padding: 0 20px;
    }

    .banner-content-left {
        position: static;
        width: auto;
        z-index: 3;
    }

    .banner-title {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: calc(60% - 20px);
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 0;
        text-align: left;
        z-index: 3;
    }

    .btn-demo {
        position: absolute;
        left: 50%;
        bottom: 20px;
        transform: translateX(-50%);
        width: 70%;
        margin: 0;
        z-index: 3;
    }

    .speech-bubble {
        display: none;
    }

    .phone-mockup {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 35%;
        max-width: 140px;
        height: auto;
        z-index: 2;
        left: auto;
    }

    .banner-decoration-right,
    .banner-decoration-left {
        opacity: 0.2;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .info-box {
        margin-bottom: 30px;
    }

    .contact-info {
        margin-bottom: 30px;
    }

    .body3-title {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 50px;
    }

    .body3-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }

    .body3-content-vertical {
        align-items: center;
        gap: 20px;
    }

    .body3-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 0;
    }

    .body3-text-content {
        padding-top: 0;
    }

    .body3-box {
        padding: 30px 25px;
    }

    .section-body3 .row.justify-content-center {
        gap: 20px;
    }

    .body3-feature-group {
        gap: 10px;
        margin-bottom: 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.7s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.7s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

/* Elementos que esperan scroll */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-up-scroll {
    transform: translateY(30px);
}

.fade-up-scroll.animated {
    transform: translateY(0);
}

.fade-left-scroll {
    transform: translateX(-30px);
}

.fade-left-scroll.animated {
    transform: translateX(0);
}

.fade-right-scroll {
    transform: translateX(30px);
}

.fade-right-scroll.animated {
    transform: translateX(0);
}

.scale-up-scroll {
    transform: scale(0.9);
}

.scale-up-scroll.animated {
    transform: scale(1);
}

/* Body 4 - Automatización */
.section-body4 {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
}

.section-body4 .container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
}

.body4-title {
    font-family: 'Mulish', sans-serif;
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    margin-bottom: 0;
}

.body4-title-blue {
    color: #013ed7;
    font-weight: 700;
}

.body4-title-black {
    color: #1c1c1c;
    font-weight: 500;
}

.section-body4 .row.justify-content-center {
    gap: 60px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-body4 .col-lg-5 {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
    padding: 0;
    position: relative;
    z-index: 2;
}

.body4-box {
    background-color: #052361;
    border-radius: 27px;
    box-shadow: 0px 10px 100px 0px rgba(0, 0, 0, 0.2);
    padding: 80px 50px 50px 50px;
    position: relative;
    height: 100%;
    z-index: 3;
    transition: all 0.3s ease;
}

.body4-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 120px 0px rgba(0, 0, 0, 0.25);
}

.body4-box-left {
    border: none;
    overflow: visible;
}

.body4-box-right {
    border: none;
    overflow: visible;
}

.body4-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    width: 100%;
}

.body4-content-vertical {
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.body4-icon {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(-60px 60px 100px rgba(16, 45, 97, 0.08));
    z-index: 4;
}

.body4-icon-invoice {
    width: 130px;
    height: auto;
}

.body4-icon-accounts {
    width: 90px;
    height: auto;
}

.body4-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.body4-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: flex-start;
}

.body4-text-content {
    flex: 1;
    padding-top: 0;
    width: 100%;
}

.body4-feature-group {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 0;
    text-align: left;
}

.body4-feature-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.body4-feature-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.body4-feature-content {
    flex: 1;
}

.body4-box-title {
    font-family: 'Mulish', sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 30px;
    color: #fcfcfc;
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
}

.body4-header-group .body4-box-title {
    margin-bottom: 0;
}

.body4-box-title strong {
    font-weight: 700;
}

.body4-subtitle {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: #ffffff;
    margin-bottom: 8px;
    margin-top: 0;
}

.body4-description {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: #ffffff;
    margin: 0;
}

.body4-description strong {
    font-weight: 700;
}

.body4-bullet-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
}

.body4-bullet-list li {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: #ffffff;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.body4-bullet-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive Body 4 */
@media (max-width: 991px) {
    .section-body4 .row.justify-content-center {
        gap: 30px;
    }

    .section-body4 .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 15px;
    }

    .body4-box {
        height: auto;
    }

    .body4-content {
        gap: 20px;
    }

    .body4-icon {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .body4-title {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 50px;
    }

    .body4-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }

    .body4-content-vertical {
        align-items: center;
        gap: 20px;
    }

    .body4-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 0;
    }

    .body4-text-content {
        padding-top: 0;
    }

    .body4-box {
        padding: 50px 25px 30px;
    }

    .section-body4 .row.justify-content-center {
        gap: 20px;
    }

    .body4-feature-group {
        gap: 10px;
        margin-bottom: 15px;
    }
}

/* Body 5 - Carousel Funcionalidades */
.section-body5 {
    position: relative;
    padding: 250px 0 250px;
    overflow: hidden;
}

.body5-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/bg-funcionalidades.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.body5-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.section-body5 .container {
    position: relative;
    z-index: 2;
}

.body5-title {
    font-family: 'Mulish', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0;
}

/* Carousel Container */
.body5-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.body5-carousel-wrapper {
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    max-width: 816px;
    margin: 0 auto;
    padding: 10px 0;
}

.body5-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

/* Botones de navegación */
.body5-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.body5-carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.body5-carousel-prev {
    left: 10px;
}

.body5-carousel-next {
    right: 10px;
}

/* Cards */
.body5-card {
    flex: 0 0 252px;
    height: 242px;
    background: transparent;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 1);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.body5-card:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.body5-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.body5-card-icon img,
.body5-card-icon svg {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.body5-card-icon img {
    filter: brightness(0) invert(1);
}

.body5-card-title {
    font-family: 'Mulish', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    color: #ffffff;
    text-align: center;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .section-body5 {
        padding: 80px 0 100px;
    }

    .body5-title {
        font-size: 32px;
        line-height: 40px;
    }

    .body5-carousel-container {
        padding: 0 60px;
    }

    .body5-card {
        flex: 0 0 250px;
        height: 200px;
        padding: 30px 20px;
    }

    .body5-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .section-body5 {
        padding: 60px 0 80px;
    }

    .body5-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 40px;
    }

    .body5-carousel-container {
        padding: 0 55px;
        max-width: 100%;
    }

    .body5-carousel-wrapper {
        width: 260px;
        max-width: 260px;
        overflow: hidden;
        margin: 0 auto;
        padding: 10px 0;
    }

    .body5-carousel-track {
        display: flex;
        align-items: center;
        gap: 0;
        transition: transform 0.5s ease-in-out;
    }

    .body5-card {
        flex: 0 0 260px;
        min-width: 260px;
        width: 260px;
        height: 220px;
        padding: 30px 20px;
        gap: 18px;
        margin: 0 30px 0 0;
    }

    .body5-card-icon {
        width: 65px;
        height: 65px;
    }

    .body5-card-icon img,
    .body5-card-icon svg {
        max-width: 65px;
        max-height: 65px;
    }

    .body5-card-title {
        font-size: 17px;
        line-height: 21px;
    }

    .body5-carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .body5-carousel-prev {
        left: 5px;
    }

    .body5-carousel-next {
        right: 5px;
    }

    /* Body 4 Mobile */
    .section-body4 {
        padding: 40px 0 60px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .body4-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 15px;
        padding: 0 20px;
    }

    .section-body4 .row.justify-content-center {
        gap: 30px;
        padding: 0;
    }

    .section-body4 .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 10%;
        margin: 0;
    }

    .body4-box {
        padding: 50px 30px 40px 30px;
        min-height: auto;
        max-width: 343px;
        margin: 0 auto;
    }

    .body4-icon {
        width: 80px;
        height: 80px;
        top: -40px;
    }

    .body4-icon-invoice {
        width: 100px;
        height: auto;
    }

    .body4-icon-accounts {
        width: 80px;
        height: auto;
    }

    .body4-content {
        gap: 15px;
    }

    .body4-content-vertical {
        gap: 20px;
    }

    .body4-feature-group {
        gap: 12px;
    }

    .body4-text-content h3 {
        font-size: 16px;
        line-height: 22px;
    }

    .body4-text-content p {
        font-size: 12px;
        line-height: 18px;
    }

    /* Stacked Cards Mobile */
    .section-blue {
        overflow: hidden;
    }

    .stacked-slider-container {
        height: auto !important;
        padding: 0 10% !important;
        position: relative;
    }

    .stacked-slider-container::before {
        content: '';
        position: absolute;
        top: 30px;
        bottom: 30px;
        left: -10%;
        width: 120%;
        background-color: #ffffff;
        z-index: 1;
    }

    .stacked-slider {
        position: relative;
        z-index: 10;
    }

    .stacked-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 343px !important;
        height: 250px !important;
        margin: 0 auto 20px auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 10;
    }

    .stacked-card.active {
        transform: none !important;
    }

    .stacked-card.prev,
    .stacked-card.next {
        display: none !important;
    }

    .pagination-dots {
        position: relative;
        z-index: 10;
    }

    /* Contact Section Mobile */
    .contact-section-new {
        padding: 40px 20px 0;
    }

    .contact-card {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
        transform: translateY(40px);
    }

    .contact-icon-left {
        width: 100px;
        height: 80px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .contact-content h2 {
        font-size: 28px;
    }

    .contact-content h4 {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .contact-info {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
    }

    .contact-item span {
        font-size: 16px;
    }


    /* Footer Mobile */
    .footer {
        min-height: auto !important;
    }

    .footer .gpt-6 {
        padding-top: 140px !important;
    }

    .footer-content {
        flex-direction: column;
        padding: 60px 30px 40px !important;
        gap: 40px;
    }

    .footer-contact {
        width: 100% !important;
        margin-right: 0 !important;
    }

    .footer-column {
        width: 100% !important;
        margin-right: 0 !important;
    }

    .footer-bottom {
        flex-direction: column;
        padding: 0 30px 30px !important;
        gap: 20px;
    }

    .footer-bottom-right {
        justify-content: flex-start;
    }

    /* Body 2, 3, 4 Mobile Sliders */
    .section-body2 .row.justify-content-center,
    .section-body3 .row.justify-content-center,
    .section-body4 .row.justify-content-center {
        position: relative;
        overflow: visible;
    }

    .section-body2 .col-lg-5,
    .section-body3 .col-lg-5,
    .section-body4 .col-lg-5 {
        display: none;
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 10%;
    }

    .section-body2 .col-lg-5.slider-active,
    .section-body3 .col-lg-5.slider-active,
    .section-body4 .col-lg-5.slider-active {
        display: block;
    }

    /* Body 2 Mobile Slider */
    .section-body2 {
        padding: 60px 0;
    }

    /* Hide decorations in mobile */
    .body2-bg-decoration,
    .body2-illustration {
        display: none;
    }

    .body2-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .body2-card-wrapper {
        max-width: 343px;
        margin: 0 auto;
        padding-top: 40px;
    }

    .body2-icon-top {
        width: 100px;
        height: 100px;
        top: -20px;
    }

    .body2-card {
        padding: 60px 30px 40px;
    }

    .body2-check-list .check-icon-white {
        width: 20px;
        height: 20px;
        min-width: 20px;
        margin-top: 0;
    }

    .body2-check-list li {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 15px;
    }

    /* Body 3 Mobile Slider */
    .section-body3 {
        padding: 40px 0 60px;
    }

    .body3-bg-circles {
        top: 25%;
        transform: translate(-50%, -50%);
    }

    .body3-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 15px;
        padding: 0 20px;
    }

    .body3-box {
        max-width: 343px;
        margin: 0 auto;
        padding: 40px 30px;
        text-align: left;
    }

    .body3-header-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .body3-box-title {
        text-align: center;
    }

    /* Pagination Dots for Sliders */
    .slider-pagination-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 30px;
        position: relative;
        z-index: 10;
    }

    .slider-pagination-dots .slider-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .slider-pagination-dots .slider-dot.active {
        background-color: #1E3A8A;
        width: 12px;
        height: 12px;
    }

    /* For Body 2 - use dark dots since background is light in mobile */
    .section-body2 .slider-pagination-dots .slider-dot {
        background-color: rgba(0, 0, 0, 0.2);
    }

    .section-body2 .slider-pagination-dots .slider-dot.active {
        background-color: #1E3A8A;
    }
}


