@font-face {
    font-family: proximanova-bold;
    src: url("../font/proximanova_bold.otf");
    font-display: swap;
}

@font-face {
    font-family: proximanova-regular;
    src: url("../font/proximanova_regular.ttf");
    font-display: swap;
}

@font-face {
    font-family: skia;
    src: url("../font/skia.ttf");
    font-display: swap;
}

/* Acelerar animaciones en 1/3 (de 1s a ~0.67s) */
:root {
    --animate-duration: 0.67s;
}

* {
    margin: 0;
    padding: 0;
    color: white;
    font-family: proximanova-regular;
    box-sizing: border-box;
}



html {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    width: 100%;
    margin: 0;
    user-select: none;
    -webkit-user-select: none;
    cursor: default;
}

a,
button {
    cursor: pointer;
}

ul,
li {
    list-style: none;
}

.text_blue_primary {
    color: #2aafe5;
}

.text_blue_secondary {
    color: #06486D;
}

.bg_blue_primary {
    background-color: #2aafe5;
}

.bg_blue_secondary {
    background-color: #06486D;
}

.bg_white {
    background-color: white;
}

.bg-gradient-volume {
    background: linear-gradient(135deg, #06486D, #2aafe5);
    box-shadow: 0 6px 24px rgba(42, 175, 229, 0.35);
}

.card {
    width: 33.3%;
    text-align: center;
    display: inline-block;
}

.card__circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1em auto;
    background: linear-gradient(135deg, #eaf6fb, #d0eaf5);
    box-shadow: 0 6px 24px rgba(42, 175, 229, 0.3), inset 0 2px 8px rgba(255, 255, 255, 0.5);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.card__circle::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2aafe5, #06486D);
    z-index: -1;
}

.card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.card__image--zeissen {
    transform: scale(1.01);
    object-position: center center;
    transition: transform 0.3s;
}

.card h3 {
    font-family: proximanova-bold;
    font-size: 24px;
}

.card p {
    color: black;
    font-weight: 600;
    font-family: proximanova-regular;
}

.card_service {
    width: 28em;
    margin: auto;
    margin-top: 0.5em;
    /* antes: 1em */
    margin-bottom: 1em;
    /* antes: 3em */
    display: flex;
}

.card_service__column_1 {
    text-align: center;
}

.card_service__column_1 span {
    height: 50%;
    background-color: black;
    width: 1px;
    display: block;
    margin: auto;
    margin-right: 4em;
}

.card_service__column_2 {
    padding-left: 0.8em;
    margin-bottom: 1em;
}

.card_service__column_2 h2 {
    font-family: proximanova-bold;
}

.navbar {
    width: 100%;
    height: 8em;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    font-size: 14px;
}

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

.navbar.navbar-visible {
    transform: translateY(0);
}

.logo {
    height: 7em;
    display: inline-block;
    margin-left: 4em;
    margin-top: 1em;
    margin-bottom: auto;
}

.white-bar {
    background-color: white;
}

.white-bar ul {
    position: absolute;
    right: 5em;
    width: fit-content;
    margin-left: auto;
    display: inline-flex;
    height: 100%;
    top: 0;
}

.white-bar ul li {
    display: inline-block;
    padding: 2em 1em 2em 1em;
    transition: 0.3s all;
    height: 100%;
    line-height: 2em;
    display: flex;
    align-items: center;
}

.white-bar ul li a {
    text-decoration: none;
    color: #06486D;
    cursor: pointer;
    font-size: 1.2em;
    /* aumentado para mayor tamaño de texto */
}

.white-bar ul li:hover a {
    text-decoration: none;
    color: #2aafe5;
    transition: 0.3s all;
}

.btn-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2aafe5, #06486D);
    color: #fff !important;
    font-family: proximanova-bold, sans-serif;
    font-size: 1.25em;
    font-weight: 500;
    border: none;
    border-radius: 2em;
    padding: 0.6em 1.5em 0.6em 1.5em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(42, 175, 229, 0.3);
    gap: 0.5em;
    vertical-align: middle;
    line-height: 1.2;
}

.btn-blue:hover {
    color: #fff;
    box-shadow: 0 6px 24px rgba(42, 175, 229, 0.45);
    transform: scale(1.05);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06486D, #2aafe5);
    color: #fff !important;
    font-family: proximanova-bold, sans-serif;
    font-size: 1.25em;
    font-weight: 500;
    border: none;
    border-radius: 2em;
    padding: 0.6em 1.5em 0.6em 1.5em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(6, 72, 109, 0.3);
    gap: 0.5em;
    vertical-align: middle;
    line-height: 1.2;
}

.btn-cta--primary {
    background: linear-gradient(135deg, #06486D 0%, #2aafe5 100%);
    box-shadow: 0 4px 15px rgba(6, 72, 109, 0.4);
    border: none;
}

.btn-cta--primary:hover {
    background: linear-gradient(135deg, #2aafe5 0%, #06486D 100%);
    box-shadow: 0 6px 20px rgba(42, 175, 229, 0.5);
    transform: translateY(-2px);
}

.btn-cta--secondary {
    background: rgba(6, 72, 109, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta--secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #06486D !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-cta--secondary:hover .btn-cta__icon {
    fill: #06486D;
}

.btn-cta:hover {
    color: #fff;
    box-shadow: 0 6px 24px rgba(42, 175, 229, 0.45);
    transform: scale(1.05);
}

.btn-cta__icon {
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    margin-left: 0.2em;
    vertical-align: middle;
    fill: #fff;
    transition: transform 0.2s;
}

.btn-cta:hover .btn-cta__icon {
    transform: translateX(4px);
}

.section_1 {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 8em;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.section_1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url("../img/background.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    animation: fadeInBackground 2s ease-in-out forwards;
}

@keyframes fadeInBackground {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.section_1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.section_1__banner {
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.section_1__actions {
    position: absolute;
    bottom: 2em;
    display: flex;
    gap: 2em;
    z-index: 10;
    justify-content: center;
    width: 100%;
}

.section_1__action {
    position: relative;
    bottom: auto;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    z-index: 1;
    animation: simple-pulse 2s infinite;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    border-radius: 2em;
    /* Ensure shadow follows button shape */
}

.section_1__action:hover h3 {
    color: #06486D;
    transition: 0.3s;
}

.section_1__action:hover .section_1__icon {
    fill: #06486D;
    transition: 0.3s;
}

.section_1__action h3 {
    font-size: 1em;
    font-weight: 400;
}

.section_1__icon {
    width: 4em;
    fill: white;
    height: 4em;
}

.section_1__title_1 {
    font-weight: 500;
    font-size: 1.5em;
    font-family: skia;
}

.section_1__subtitle_top {
    font-family: skia;
    font-size: 1.2em;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 0 30px rgb(255, 255, 255), 0 0 60px rgba(255, 255, 255, 0.858), 0 2px 16px #06486D55;
    margin: 0 auto;
}

.section_1__subtitle_bottom {
    font-family: skia;
    font-size: 1.2em;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 0 15px rgb(255, 255, 255), 0 0 30px rgb(255, 255, 255), 0 2px 16px #06486D55;
    width: 70%;
    margin: 0 auto 0 auto;
}

.section_1__title_2 {
    font-weight: 900;
    font-family: proximanova-bold;
    font-size: 6.5em;
    line-height: 0.8;
    margin: 0.5em auto 0.1em auto;
    color: #00e5ff;
    /* Fallback color para asegurar visibilidad */
    background: linear-gradient(#06486D 53%, #00e5ff 161%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-font-smoothing: antialiased;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 10px rgba(255, 255, 255, .7));
}

.section_1__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.8em auto 0.8em auto;
    width: 100%;
    position: relative;
    filter: drop-shadow(0 0 20px rgb(255, 255, 255)) drop-shadow(0 0 15px rgb(255, 255, 255));
}

.section_1__divider__line {
    height: 2px;
    background: linear-gradient(to right, #06486D 0%, #06486D 20%, #00e5ff 100%);
}

.section_1__divider__line:nth-child(3) {
    background: linear-gradient(to right, #00e5ff 0%, #06486D 80%, #06486D 100%);
}

.section_1__divider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2aafe5, #06486D);
    box-shadow: 0 0 12px rgba(42, 175, 229, 0.5);
    margin: 0 10px;
    flex-shrink: 0;
}

.section_1__title_3 {
    display: none;
}

@keyframes simple-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float-pulse {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(5px, -5px) scale(1.01);
    }

    66% {
        transform: translate(-3px, 3px) scale(0.99);
    }
}

.section_1__circle_wrapper_1 {
    position: absolute;
    top: 3em;
    left: -8em;
    /* Adjusted for smaller size */
    height: 13em;
    width: 13em;
    z-index: 0;
}

.section_1__circle_1 {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: float-pulse 8s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    /* Delay para desfasar la animación continua de la de entrada si se desea, 
       o simplemente arranca tras el render */
}

.section_1__circle_wrapper_2 {
    position: absolute;
    top: 21em;
    right: 0;
    height: 16em;
    /* Smaller size */
    width: 8em;
    /* Smaller size */
    z-index: 0;
    /* Ajustado para que no tape textos importantes si coincidieran, 
       pero el usuario pidió section 1, similar a section 2 */
}

.section_1__circle_2 {
    display: block;
    width: 100%;
    height: 100%;
    border-top-left-radius: 100% 50%;
    border-bottom-left-radius: 100% 50%;
    animation: float-pulse 9s ease-in-out infinite reverse;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.section_2 {
    width: 100%;
    height: 100vh;
    background-color: white;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 8em;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.section_2__circle_1 {
    position: absolute;
    top: 6em;
    left: -16em;
    height: 24em;
    width: 24em;
    border-radius: 50%;
}

.section_2__circle_2 {
    position: absolute;
    top: 6em;
    right: 0;
    height: 28em;
    width: 14em;
    border-top-left-radius: 100% 50%;
    border-bottom-left-radius: 100% 50%;
}

.section_2__image {
    position: absolute;
    border-radius: 20em;
    height: 38vh;
    /* Use vh for responsive height */
    max-height: 400px;
    right: 15%;
    /* Use percentage for responsiveness */
    width: auto;
    object-fit: cover;
    object-position: center;
    /* Center vertically */
    top: 50%;
    transform: translateY(-50%);
}

.section_2__title_1 {
    width: auto;
    /* antes: width: 5em; */
    margin-top: 2em;
    margin-left: -1em;
    font-weight: 900;
    font-family: proximanova-bold;
    font-size: 3em;
    white-space: nowrap;
    /* fuerza que no haga salto de línea */
}

.section_2__title_1 span {
    font-family: proximanova-bold;
}

.section_2__banner {
    width: 45%;
    min-width: 300px;
    margin: 0;
    /* Reset margins to allow flex centering */
    padding-right: 0;
    margin-right: 10%;
    /* Space for the image */
}

.section_2__banner p {
    color: black;
    font-size: 1em;
    font-weight: 200;
}

.section_2__list {
    font-size: 1.8em;
}

.section_2__list li,
.section_2__list li span {
    font-family: proximanova-bold;
    font-weight: 500;
}

.section_3 {
    width: 100%;
    height: 100vh;
    /* Strict height */
    min-height: 100vh;
    background: linear-gradient(180deg, #fff 0%, #dae4e6 30%, #dae4e6 70%, #fff 100%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Center items vertically */
    gap: 4em;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding-top: 14em;
    /* Reserve space for sticker */
    padding-bottom: 0;
}

.section_3__sticker {
    box-sizing: content-box;
    position: absolute;
    top: 9em;
    /* Position inside padding area */
    /* Inside the section */
    right: 4em;
    font-weight: 900;
    font-family: proximanova-bold;
    line-height: 0.9em;
    border-radius: 2em;
    width: 4.5em;
    height: 1.5em;
    text-align: center;
    font-size: 2.5em;
    padding: 1em;
    background-color: white;
    box-shadow: 0 4px 16px rgba(28, 89, 154, 0.3);
    z-index: 10;
}

.section_3__sticker span {
    font-weight: 900;
    font-family: proximanova-bold;
}

.section_3__icon_1 {
    fill: #2aafe5;
    width: 6em;
    height: 6em;
}

.section_3__columna_1 {
    margin-top: 0;
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section_3__columna_2 {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 0;
}

.section_4 {
    width: 100%;
    min-height: 100vh;
    position: relative;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 16em;
    padding-top: 12em;
    padding-bottom: 12em;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding-top: 10em;
}

.section_4__image {
    position: absolute;
    height: 24em;
    border-radius: 50%;
    top: 8em;
    left: 10em;
}

.section_4__content {
    margin-top: -10em;
    width: 40%;
    margin-left: 10em;
}

.section_4__content h1 {
    font-family: proximanova-bold;
    line-height: 0.9em;
    margin-bottom: 1em;
    font-weight: 900;
    font-size: 3.2em;
}

.section_4__content h1 span {
    font-family: proximanova-bold;
}

.section_4__content p {
    color: black;
}

.section_4__circle_1 {
    position: absolute;
    top: 6em;
    left: -7em;
    height: 38em;
    width: 38em;
    border-radius: 50%;
}

.section_5 {
    width: 100%;
    height: 100vh;
    position: relative;
    background: linear-gradient(180deg, #fff 0%, #dae4e6 30%, #dae4e6 70%, #fff 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10em;
    padding-bottom: 2em;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.section_5__sticker {
    box-sizing: content-box;
    position: absolute;
    top: 9em;
    /* Moved inside padding */
    left: 4em;
    font-weight: 900;
    font-family: proximanova-bold;
    line-height: 0.9em;
    border-radius: 2em;
    width: 4em;
    height: 1.5em;
    text-align: center;
    font-size: 2.5em;
    padding: 1em;
    background-color: white;
    box-shadow: 0 4px 16px rgba(28, 89, 154, 0.3);
}

.section_5__sticker span {
    font-weight: 900;
    font-family: proximanova-bold;
}

.section_5__arrow_left,
.section_5__arrow_right {
    display: none;
}

.section_5__content {
    width: 70%;
    height: 18em;
    white-space: nowrap;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.section_6 {
    width: 100%;
    min-height: 100vh;
    /* Resta la altura de la navbar */
    position: relative;
    justify-content: center;
    padding-top: 8em;
    padding-bottom: 4em;
    display: flex;
    flex-direction: column;
    scroll-snap-align: end;
    scroll-snap-stop: always;
}

.section_6__content {
    display: flex;
    width: 100%;
}

.section_6__logo {
    height: 40em;
    margin: 0;
}

.section_6__column_1 {
    width: 50%;
    padding-left: 7em;
    display: inline-block;
}

.section_6__column_2 {
    width: 50%;
    padding-right: 7em;
    display: inline-block;
}

.section_6__row_1 {
    width: 100%;
    display: table;
}

.row_1__column_1 {
    width: 45%;
    border-bottom: 2px solid white;
    display: inline-block;
    margin-right: 5%;
}

.row_1__column_2 {
    border-bottom: 2px solid white;
    width: 50%;
    display: inline-block;
}

.section_6__row_2 {
    border-bottom: 2px solid white;
}

input,
textarea {
    margin-top: 5px;
    width: 100%;
    background-color: transparent;
    border: none;
    color: white;
    font-weight: 100;
    font-size: 1.1em;
    font-family: proximanova-regular !important;
    outline: none;
}

textarea {
    max-width: 100%;
}

.section_6__row_3 {
    text-align: right;
}

.section_6__row_3 input {
    width: auto;
    padding-left: 2em;
    padding-right: 2em;
    padding-top: 0.1em;
    padding-bottom: 0.1em;
}

.footer {
    color: white;
    bottom: 1em;
    margin: 2em auto 0 auto;
    padding-bottom: 1em;
    width: 100%;
    text-align: center;
}

.visibility-hidden {
    visibility: hidden;
}

.visibility-visible {
    visibility: visible;
}

@media screen and (max-width: 1024px) {
    html {
        scroll-padding-top: 5em;
    }

    /* Navbar */
    .navbar {
        height: 5em;
    }

    .logo {
        height: 5em;
        margin-left: 0.5em;
        margin-top: 0;
    }

    .navbar ul {
        right: 1em;
    }

    .navbar ul li {
        display: none;
    }

    .navbar ul li:nth-child(6) {
        display: flex;
        padding: 1em 0.5em;
    }

    /* Section 1 - Hero */
    .section_1__title_2 {
        font-size: 5em;
        line-height: 0.8;
    }

    .section_1__subtitle_top {
        font-size: 1.3em;
    }

    .section_1__subtitle_bottom {
        font-size: 1.3em;
        width: 80%;
    }

    .section_1__banner {
        margin-top: -6em;
    }

    .section_1__circle_wrapper_1,
    .section_1__circle_wrapper_2 {
        display: none;
    }

    /* Section 2 - Quienes Somos */
    .section_2 {
        height: 92vh;
    }

    .section_2__circle_1 {
        top: 6em;
        left: -16em;
        height: 24em;
        width: 24em;
    }

    .section_2__circle_2 {
        top: 6em;
        right: 0;
        height: 26em;
        width: 13em;
    }

    .section_2__image {
        right: 1em;
        width: 12em;
        height: 22em;
        object-fit: fill;
        object-position: center;
    }

    .section_2__banner {
        width: 50%;
        margin: 4em 0em 10em -1em;
        padding-right: 4em;
    }

    .section_2__title_1 {
        font-size: 2.5em;
        margin-top: 2em;
        margin-left: -1em;
    }

    .section_2__list {
        font-size: 1.5em;
    }

    /* Section 3 - Servicios */
    .section_3 {
        height: auto;
        min-height: 80vh;
        display: flex;
        justify-content: center;
        gap: 2em;
        padding: 0em 2em;
        position: relative;
    }

    .section_3__sticker {
        position: relative;
        top: 0;
        right: auto;
        font-size: 2em;
        text-align: center;
        margin-bottom: 3em;
        position: absolute;
        top: -2em;
        left: 50%;
        transform: translateX(-50%);
    }

    .section_3__columna_1,
    .section_3__columna_2 {
        width: 45%;
        display: flex;
        flex-direction: column;
        gap: 1em;
        margin-top: 7em;
    }

    .card_service {
        width: 100%;
        margin: 0;
        display: flex;
    }

    .card_service__column_1 span {
        display: none;
    }

    .card_service__column_2 h2 {
        font-size: 1.2em;
    }

    /* Section 4 - Precios */
    .section_4 {
        height: auto;
        min-height: 80vh;
        padding: 4em 2em;
    }

    .section_4__content--pricing {
        width: 90%;
        max-width: none;
    }



    .pricing-calculator-row {
        flex-direction: column;
        align-items: stretch;
        gap: 2em;
        width: 100%;
    }

    .pricing-calculator-row__cta {
        width: 100%;
        justify-content: center;
    }

    /* Section Testimonios */
    .section_testimonios {
        height: auto;
        min-height: 80vh;
        padding: 0em 2em 6em 2em;
    }



    .testimonios-container {
        display: flex;
        justify-content: center;
        align-items: center !important;
        gap: 1.5em;
        flex-wrap: wrap;
    }

    .testimonio-card {
        flex: 1 1 280px;
        max-width: 350px;
    }

    /* Section 5 - Equipo */
    .section_5 {
        height: auto;
        min-height: 60vh;
        padding: 0em 2em;
    }

    .section_5__sticker {
        position: absolute;
        top: 0em;
        left: 50%;
        transform: translateX(-50%);
        font-size: 2em;
    }

    .section_5__arrow_left {
        display: none;
    }

    .section_5__content {
        width: 100%;
        height: auto;
        overflow: visible;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 1em;
        white-space: normal;
    }

    .section_5__arrow_right {
        display: none;
    }


    /* Section 6 - Contacto */
    .section_6 {
        height: auto;
        min-height: 80vh;
        padding-bottom: 2em;
    }

    .section_6__header {
        flex-direction: column;
        padding: 2em;
        gap: 2em;
        text-align: center;
        align-items: center;
        margin-left: 0 I !important;
    }

    .section_6__logo-container {
        order: 1;
    }

    .section_6__logo {
        height: 10em;
        margin-left: -0em !important;
        display: block;
    }

    .section_6__contact-info {
        order: 2;
        max-width: none;
        width: 100%;
    }

    .section_6__contact-info h4 {
        font-size: 1.4em;
    }

    .contact-details {
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-item {
        justify-content: center;
        align-content: center;
        text-align: center;
        font-size: 1em;
    }

    .section_6__info {
        text-align: center;
        padding: 2em;
    }

    .contact-actions h3 {
        font-size: 1.8em;
    }

    .social-media h4 {
        font-size: 1.4em;
    }

    .social-icons {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    html {
        scroll-padding-top: 4em;
        /* Ajustado para móviles */
        scrollbar-width: none;
        /* Firefox */
    }

    html::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    .btn-cta {
        font-size: clamp(0.8em, 2vw, 0.9em);
        padding: 0.5em 1em;
        white-space: nowrap;
    }

    .section_2 {
        height: 80vh;
    }

    .section_3 {
        height: auto;
        min-height: 80vh;
        background: linear-gradient(180deg, #fff 0%, #dae4e6 30%, #dae4e6 70%, #fff 100%);
        padding: -1em 1em;
        display: block;
    }

    .section_3__sticker {
        font-size: 1.5em;
        margin-bottom: 2em;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }

    .section_3__columna_1,
    .section_3__columna_2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1em;
        margin-top: 0;
    }


    .card_service {
        width: 100%;
        margin: 0;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        align-items: center;
    }

    .card_service__column_1 {
        transform: scale(0.6);
        margin-left: -1em;
        margin-top: 0;
        display: flex;
        align-items: center;
    }

    .card_service__column_2 {
        padding-top: 0;
        padding-left: inherit;
        /* margin-left: -1em; */
    }

    .card_service__column_2 h2 {
        font-size: 1.1em;
    }

    .card_service__column_2 p {
        font-size: 0.85em;
    }

    .section_4 {
        min-height: auto;
        height: auto;
    }

    .section_4--pricing {
        height: auto;
        min-height: auto;
        overflow: visible;
        padding: 7em 1em 2em 1em;
        align-items: flex-start;
    }

    .section_4__content--pricing {
        padding: 0 0.5em;
        gap: 0.8em;
    }

    .pricing-bottom {
        flex-direction: column;
        gap: 0.5em;
    }

    .pricing-benefit {
        width: 100%;
        justify-content: center;
    }

    .pricing-cta {
        width: 100%;
    }

    .section_5 {
        /* height: 60vh; removed */
        background: linear-gradient(180deg, #fff 0%, #dae4e6 30%, #dae4e6 70%, #fff 100%);
    }

    .section_6 {
        height: 100vh;
    }

    .navbar {
        height: 5em;
    }

    .logo {
        height: 5em;
        margin-top: 0;
    }

    .navbar ul {
        right: 1em;
    }

    .navbar ul li:nth-child(6) {
        margin-right: 0;
        padding: 1em 0.5em;
    }

    .btn-cta {
        font-size: 0.85em;
        padding: 0.5em 1em;
    }

    .section_1__banner {
        /* margin-top: 3.5em; removed */
    }

    .section_1__title_2 {
        font-size: clamp(1.8rem, 11vw, 3em) !important;
    }

    .section_1__subtitle_top {
        font-size: 0.85em !important;
    }

    .section_1__subtitle_bottom {
        font-size: 0.85em !important;
    }

    .section_1__title_3 {
        font-size: 0.85em;
    }

    .section_2__image {
        width: auto;
        height: 12em;
        margin-top: -12em;
        border-radius: 20em;
        object-fit: fill;
        object-position: center;
    }

    .section_2__circle_1 {
        left: -14em;
        height: 15em;
        width: 15em;
    }

    .section_2__circle_2 {
        height: 12em;
        width: 6em;
    }

    .section_2__title_1 {
        margin-left: 0em !important;
        font-size: 1.8em;
    }

    .section_2__list {
        margin-top: 0em;
        font-size: 1.8em;
    }

    .section_2__banner p {
        font-size: 0.85em;
    }

    .section_3__sticker {
        font-size: 1.5em;
    }

    .section_4 {
        padding-bottom: 4em;
        margin-top: 3em;
    }

    .section_4__circle_1 {
        left: -17em;
        height: 25em;
        width: 25em;
        border-radius: 50%;
    }

    .section_4__image {
        height: 12em;
    }

    .section_4__content {
        margin-top: 18em;
    }

    .section_4__content h1 {
        margin-bottom: 1em;
        font-size: 1.8em;
    }

    .section_4__content p {
        font-size: 0.85em;
    }

    .section_5__sticker {
        font-size: 1.5em;
    }

    .section_5__content {
        /* gap: 0.5em; removed to use 1024px gap */
    }

    /* .card styles removed to maintain consistent size */

    .section_6__logo {
        height: 7em !important;
        display: block;
    }

    .section_6__contact-info h4 {
        font-size: 1.1em;
    }

    .contact-actions h3 {
        font-size: 1.4em;
    }

    .contact-actions p {
        font-size: 0.9em;
    }

    .footer {
        font-size: 0.8em;
    }

    .section-header__title {
        font-size: 2.2em;
    }

    .section-header__subtitle {
        font-size: 1em;
    }

    .testimonio-info h4 {
        font-size: 1em;
    }

    .testimonio-social span {
        font-size: 0.75em;
    }

    .testimonio-content p {
        font-size: 0.85em;
    }

    /* Responsive para el modal */
    .modal-content {
        width: 95%;
        margin: 0 auto;
        padding: 1.5em;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

    .contact-option {
        padding: 1.2em;
    }

    .contact-icon {
        width: 2.5em;
        height: 2.5em;
    }

    .section_6__info {
        padding: 0
    }

    .section_6__header {
        padding: 2em 2em 0 2em;
        gap: 1.5em;
        margin-left: 0 !important;
    }

    .section_6__logo {
        height: 25em;
        align-self: center;
    }

    .section_6__contact-info h4 {
        font-size: 1.4em;
    }

    .contact-item {
        font-size: 0.95em;
    }

    .social-icons {
        gap: 1em;
    }

    .social-icon {
        width: 3em;
        height: 3em;
    }

    .social-icon svg {
        width: 1.5em;
        height: 1.5em;
    }

    .section_testimonios {
        padding: 3em 1.5em 5em 1.5em;
    }

    .section_testimonios__header h2 {
        font-size: 1.6em;
    }

    .section_testimonios__header p {
        font-size: 1em;
    }

    .testimonios-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .testimonio-card {
        max-width: 100%;
        width: 100%;
    }
}

/* =============================================
   SECCIÓN DE PRECIOS — Rediseño completo
   ============================================= */

.section_4--pricing {
    background: linear-gradient(180deg, #fff 50%, #eaf6fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-height: 100vh;
    height: auto;
    /* Compensar altura del navbar para centrado visual real */
    padding-top: 10em;
    padding-bottom: 3em;
    box-sizing: border-box;
}

.section_4__content--pricing {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2em 1em 2em;
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}

.section_4__content>div:nth-child(1) {
    margin-bottom: 1em;
}

/* --- Global Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 3em;
    width: 100%;
    padding: 0 1em;
}

.section-header__title {
    font-size: 2.8em;
    color: #06486D;
    font-family: proximanova-bold;
    font-weight: 900;
    margin-bottom: 0.15em;
    line-height: 1.15;
}

.section-header__subtitle {
    color: #06486D;
    font-size: 1.1em;
    opacity: 0.7;
    margin: 0;
}

/* --- Calculator row: Calculator + CTA side by side --- */
.pricing-calculator-row {
    display: flex;
    align-items: center;
    gap: 1.5em;
}

.pricing-calculator-row__cta {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* --- Calculadora — layout horizontal --- */
.pricing-calculator {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2em;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(42, 175, 229, 0.15);
    border-radius: 1.2em;
    padding: 1.2em 2em;
    box-shadow: 0 4px 24px rgba(6, 72, 109, 0.06);
}

.pricing-calculator__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8em;
}

.pricing-calculator__slider-group {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.pricing-calculator__input-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}

.pricing-calculator__step-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #2aafe5;
    background: rgba(255, 255, 255, 0.85);
    color: #06486D;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
}

.pricing-calculator__step-btn:hover {
    background: #2aafe5;
    color: #fff;
    box-shadow: 0 2px 10px rgba(42, 175, 229, 0.35);
}

.pricing-calculator__step-btn:active {
    transform: scale(0.92);
}

.pricing-calculator__number-input {
    width: 5em;
    text-align: center;
    font-size: 1.4em;
    font-weight: 700;
    color: #2aafe5;
    border: 2px solid rgba(42, 175, 229, 0.25);
    border-radius: 0.6em;
    padding: 0.3em 0.2em;
    background: rgba(255, 255, 255, 0.85);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -moz-appearance: textfield;
    appearance: textfield;
}

.pricing-calculator__number-input::-webkit-outer-spin-button,
.pricing-calculator__number-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pricing-calculator__number-input:focus {
    border-color: #2aafe5;
    box-shadow: 0 0 0 3px rgba(42, 175, 229, 0.15);
}

.pricing-calculator__label {
    font-size: 1em;
    color: #06486D;
    font-weight: 600;
}

.pricing-calculator__slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, #2aafe5, #06486D);
    outline: none;
    cursor: pointer;
}

.pricing-calculator__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #2aafe5;
    box-shadow: 0 2px 8px rgba(42, 175, 229, 0.35);
    cursor: pointer;
    transition: box-shadow 0.2s ease;
}

.pricing-calculator__slider::-webkit-slider-thumb:hover {
    box-shadow: 0 2px 16px rgba(42, 175, 229, 0.55);
}

.pricing-calculator__slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #2aafe5;
    box-shadow: 0 2px 8px rgba(42, 175, 229, 0.35);
    cursor: pointer;
}

.pricing-calculator__value {
    font-size: 0.95em;
    color: #06486D;
    text-align: center;
}

.pricing-calculator__number {
    font-weight: 700;
    font-size: 1.25em;
    color: #2aafe5;
}

/* Toggle mensual/anual */
.pricing-calculator__toggle-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7em;
}

.pricing-calculator__toggle-label {
    font-size: 0.95em;
    color: #999;
    font-weight: 600;
    transition: color 0.2s;
}

.pricing-calculator__toggle-label--active {
    color: #06486D;
}

.pricing-calculator__toggle {
    position: relative;
    width: 44px;
    height: 24px;
    border-radius: 12px;
    background: #dae4e6;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}

.pricing-calculator__toggle--active {
    background: linear-gradient(90deg, #2aafe5, #06486D);
}

.pricing-calculator__toggle-knob {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-calculator__toggle--active .pricing-calculator__toggle-knob {
    transform: translateX(20px);
}

/* Resultado */
.pricing-calculator__result {
    flex-shrink: 0;
    text-align: center;
    background: linear-gradient(135deg, #06486D, #2aafe5);
    border-radius: 1em;
    padding: 1.2em 2em;
    min-width: 220px;
}

.pricing-calculator__result-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-calculator__result-price span {
    font-size: 1.8em;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.pricing-calculator__result-price small {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.15em;
}

.pricing-calculator__result-total {
    font-size: 0.88em;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.35em;
}

.pricing-calculator__result-total strong {
    color: #fff;
}

.pricing-calculator__result-savings {
    font-size: 0.85em;
    color: #a0f0c0;
    font-weight: 600;
    margin-top: 0.25em;
}

/* --- Tier Cards --- */
.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2em;
}

.pricing-tier {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid transparent;
    border-radius: 1em;
    padding: 1em 1em;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(6, 72, 109, 0.04);
}

.pricing-tier:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(42, 175, 229, 0.12);
}

.pricing-tier--active {
    border-color: #2aafe5;
    background: rgba(234, 246, 251, 0.85);
    box-shadow: 0 4px 20px rgba(42, 175, 229, 0.18);
}

.pricing-tier--popular {
    border-color: #2aafe5;
}

.pricing-tier__badge {
    position: absolute;
    top: -0.6em;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #2aafe5, #06486D);
    color: #fff;
    font-size: 0.7em;
    font-weight: 700;
    padding: 0.2em 0.7em;
    border-radius: 1em;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-tier__badge--discount {
    background: linear-gradient(90deg, #f59e0b, #d97706);
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.pricing-tier__range {
    font-size: 1.05em;
    color: #06486D;
    font-weight: 700;
    margin-bottom: 0.5em;
}

.pricing-tier__prices {
    display: flex;
    flex-direction: column;
    gap: 0.4em;
}

.pricing-tier__price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92em;
    gap: 0.4em;
}

.pricing-tier__price-label {
    color: #888;
    font-size: 0.92em;
}

.pricing-tier__price-value {
    font-weight: 700;
    color: #06486D;
    font-size: 1em;
}

.pricing-tier__price-row--annual {
    background: rgba(42, 175, 229, 0.08);
    border-radius: 0.4em;
    padding: 0.25em 0.4em;
}

.pricing-tier__price-value--annual {
    color: #2aafe5;
}

/* --- Bottom strip: Benefits + CTA --- */
.pricing-bottom-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    width: 100%;
    margin-top: 1em;
}

.pricing-bottom__title {
    font-size: 1.1em;
    color: #06486D;
    font-family: proximanova-bold;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.pricing-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    width: 100%;
}

.pricing-bottom__benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1em;
    width: 100%;
}

.pricing-benefit {
    display: flex;
    align-items: center;
    gap: 0.8em;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0.8em;
    padding: 0.8em 1em;
    border: 1px solid rgba(42, 175, 229, 0.1);
    position: relative;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pricing-benefit:hover {
    background: rgba(42, 175, 229, 0.08);
    border-color: rgba(42, 175, 229, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 72, 109, 0.1);
}

/* --- Tooltip CSS-only --- */
.pricing-benefit[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 0.6em);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #06486D;
    color: #fff;
    font-size: 0.8em;
    line-height: 1.4;
    padding: 0.6em 0.8em;
    border-radius: 0.5em;
    white-space: normal;
    width: max-content;
    max-width: 220px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(6, 72, 109, 0.25);
}

.pricing-benefit[data-tooltip]::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 0.1em);
    left: 50%;
    transform: translateX(-50%);
    border: 0.35em solid transparent;
    border-top-color: #06486D;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    pointer-events: none;
    z-index: 10;
}

.pricing-benefit[data-tooltip]:hover::after,
.pricing-benefit[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.pricing-benefit--discount {
    background: linear-gradient(135deg, rgba(42, 175, 229, 0.08), rgba(6, 72, 109, 0.05));
    border-color: rgba(42, 175, 229, 0.2);
}

.pricing-benefit__icon {
    width: 1.4em;
    height: 1.4em;
    flex-shrink: 0;
    stroke: #2aafe5;
}

.pricing-benefit__text {
    display: flex;
    flex-direction: column;
    gap: 0.1em;
}

.pricing-benefit strong {
    font-size: 0.88em;
    color: #06486D;
    line-height: 1.3;
}

.pricing-benefit span {
    font-size: 0.82em;
    color: #777;
    line-height: 1.3;
}

/* CTA */
.pricing-bottom__actions {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4em;
}

.pricing-cta__button {
    background: linear-gradient(90deg, #2aafe5, #06486D);
    color: #fff;
    border: none;
    border-radius: 2em;
    padding: 0.75em 2em;
    font-size: 0.95em;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(42, 175, 229, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: pricingPulse 3s ease-in-out infinite;
    white-space: nowrap;
}

.pricing-cta__button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(42, 175, 229, 0.45);
    animation-play-state: paused;
}

@keyframes pricingPulse {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(42, 175, 229, 0.3);
    }

    50% {
        box-shadow: 0 4px 24px rgba(42, 175, 229, 0.5);
    }
}

.pricing-note {
    text-align: center;
    color: #999;
    font-size: 0.82em;
    margin: 0;
}

/* Estilos para la sección de contacto */
.section_6__header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_6__logo-container {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.section_6__logo {
    height: 10em;
}

.section_6__contact-info {
    flex-shrink: 0;
    max-width: 400px;
}

.section_6__contact-info h4 {
    font-family: proximanova-bold;
    font-size: 1.8em;
    margin-bottom: 1.5em;
    color: white;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1em;
    color: white;
    font-size: 1.1em;
    line-height: 1.4;
}

.contact-detail-icon {
    width: 1.5em;
    height: 1.5em;
    fill: #2aafe5;
    flex-shrink: 0;
    margin-top: 0.1em;
}

.section_6__info {
    width: 100%;
    text-align: center;
}

.contact-actions h3 {
    font-family: proximanova-bold;
    font-size: 2em;
    margin-bottom: 0.5em;
}

.contact-actions p {
    font-size: 1.2em;
    margin-bottom: 1em;
}

/* Estilos para las redes sociales */

.social-media h4 {
    font-family: proximanova-bold;
    font-size: 1.5em;
    margin-bottom: 1em;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5em;
    height: 3.5em;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.social-icon svg {
    width: 1.8em;
    height: 1.8em;
    fill: white;
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-icon.linkedin {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.social-icon.youtube {
    background: linear-gradient(135deg, #ff0000, #ff4444);
}

.social-icon.tiktok {
    background: linear-gradient(135deg, #000000, #333333);
}

/* Estilos para el modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 0 auto;
    padding: 2em;
    border-radius: 1em;
    width: 90%;
    max-width: 500px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-60%);
    }

    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 1em;
    top: 0.5em;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: #06486D;
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 0.5em;
    font-family: proximanova-bold;
    font-size: 2em;
}

.modal-content p {
    text-align: center;
    margin-bottom: 1.5em;
    font-size: 1.1em;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.contact-option {
    display: flex;
    align-items: center;
    padding: 1.5em;
    border-radius: 0.8em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.email-option {
    background: linear-gradient(135deg, #2aafe5, #06486D);
    color: white;
}

.whatsapp-option {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.contact-icon {
    width: 3em;
    height: 3em;
    margin-right: 1em;
    fill: white;
    flex-shrink: 0;
}

.contact-option div h3 {
    margin: 0 0 0.3em 0;
    font-family: proximanova-bold;
    font-size: 1.3em;
}

.contact-option div {
    min-width: 0;
    flex: 1;
}

.contact-option div p {
    margin: 0;
    font-size: 1em;
    opacity: 0.9;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Estilos específicos para footer con fondo blanco */
.section_6.bg_white {
    color: #06486D;
}

.section_6.bg_white h3 {
    color: #06486D;
}

.section_6.bg_white h4 {
    color: #06486D;
}

.section_6.bg_white p {
    color: #06486D;
}

.section_6.bg_white .footer {
    color: #06486D;
}

.gestion-title {
    margin-top: 0.15em;
    line-height: 1.1;
}

.copropietario-title {
    line-height: 0.8;
    margin-top: -0.3em;
}


/* SECCIÓN DE TESTIMONIOS */
.section_testimonios {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(180deg, #eaf6fb 0%, #fff 100%);
    padding: 8em 4em 10em 4em;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}




.testimonios-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2em;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonio-card {
    background: white;
    border-radius: 1.2em;
    padding: 2em;
    box-shadow: 0 4px 20px rgba(6, 72, 109, 0.1);
    transition: all 0.3s ease;
    flex: 1 1 300px;
    max-width: 350px;
    border: 2px solid transparent;
}

.testimonio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(42, 175, 229, 0.2);
    border-color: #2aafe5;
}

.testimonio-header {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-bottom: 1.5em;
}

.testimonio-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #2aafe5, #06486D);
    background-origin: border-box;
    background-clip: content-box, border-box;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(42, 175, 229, 0.25);
}

.testimonio-info h4 {
    color: #06486D;
    font-family: proximanova-bold;
    font-size: 1.2em;
    margin-bottom: 0.3em;
}

.testimonio-social {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.testimonio-social span {
    color: #888;
    font-size: 0.9em;
}

.social-badge {
    width: 1.2em;
    height: 1.2em;
}

.facebook-badge {
    fill: #1877f2;
}

.instagram-badge {
    fill: url(#instagram-gradient);
}

.linkedin-badge {
    fill: #0077b5;
}

.testimonio-content {
    color: #333;
}

.testimonio-stars {
    color: #ffa500;
    font-size: 1.2em;
    margin-bottom: 0.8em;
}

.testimonio-content p {
    color: #555;
    font-size: 1em;
    line-height: 1.6;
    font-style: italic;
}

/* Responsive para testimonios */
@media screen and (max-width: 1024px) {
    .section_testimonios {
        padding: 4em 2em 6em 2em;
    }

    .section_testimonios__header h2 {
        font-size: 2em;
    }

    .testimonios-container {
        gap: 1.5em;
    }

    .testimonio-card {
        flex: 1 1 280px;
    }

    /* Requested adjustments */
    .navbar {
        height: 6em;
    }

    .logo {
        height: 6em;
        margin-top: 0.3em;
    }

    .section_3__sticker {
        top: 0.5em;
    }

    .section_3__columna_1,
    .section_3__columna_2 {
        /* margin-top: 12em; removed per request */
    }

    .section_2__image {
        top: 23%;
    }

    .section_2__title_1 {
        margin-top: -1em;
    }

    .section_6__info,
    .section_6__header {
        padding-top: 0;
        padding-bottom: 0;
    }

    .section_5 {
        padding: 10em 2em;
        min-height: 100vh;
    }

    .section_5__sticker {
        top: 3em;
    }

    .section_5__content {
        /* flex-direction: column; removed to apply only to <768px */
        gap: 0em;
    }

    .card h3,
    .card p {
        white-space: nowrap;
        text-align: center;
    }
}


@media screen and (max-width: 768px) {
    .section-header__title {
        font-size: 2em;
    }

    .section-header__subtitle {
        font-size: 0.9em;
    }

    .section-header {
        margin-bottom: 2.5em;
    }

    .testimonio-card {
        padding: 1.5em;
    }

    .testimonio-header {
        flex-direction: column;
        text-align: center;
    }

    .card_service {
        width: 100%;
        max-width: 100%;
    }

    .section_2__circle_1 {
        width: 15em;
        display: none;
    }

    .section_2__banner {
        margin: 2em 0em 10em -3em;
    }

    .section_2__circle_2 {
        /* right: -85px; removed */
    }

    .section_2__image {
        right: 1em;
        top: 24em;
    }

    .btn-cta {
        font-size: .9em;
    }

    .section_2 {
        height: 100vh;
        padding-top: 6em;
    }

    .section_3__columna_1,
    .section_3__columna_2 {
        gap: 0em;
    }

    .section_5 {
        height: auto;
        padding-top: 6em;
        padding-bottom: 6em;
    }

    .section_5__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2em;
        height: auto;
        white-space: normal;
    }

    .section_5__content .card {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .pricing-calculator__label {
        font-size: 0.85em;
    }

    .pricing-calculator__result-price span {
        font-size: 1.4em;
    }

    .pricing-tier__badge {
        font-size: 0.65em;
    }

    .pricing-benefit strong {
        font-size: 0.75em;
    }

    .pricing-benefit span {
        font-size: 0.68em;
    }

    .pricing-note {
        font-size: 0.72em;
    }

    /* Layout mobile — override post-base */
    .section_4--pricing {
        height: auto;
        min-height: auto;
        overflow: visible;
        padding: 7em 1em 2em 1em;
        align-items: flex-start;
    }

    .section_4__content--pricing {
        padding: 0 0.5em;
        gap: 0.8em;
    }



    .pricing-calculator-row {
        flex-direction: column;
        align-items: stretch;
        gap: 1.2em;
        width: 100%;
    }

    .pricing-calculator-row__cta {
        width: 100%;
        justify-content: center;
    }

    .pricing-calculator {
        flex-direction: column;
        padding: 1.5em 1.2em;
        gap: 1.5em;
    }

    .pricing-calculator__result {
        width: 100%;
        min-width: unset;
    }

    .pricing-tiers {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8em;
    }

    .pricing-bottom__title {
        font-size: 1.05em;
    }

    .pricing-bottom__benefits {
        grid-template-columns: 1fr;
    }

    .pricing-bottom {
        flex-direction: column;
        gap: 0.5em;
    }

    .pricing-benefit {
        width: 100%;
        justify-content: flex-start;
    }

    .pricing-cta {
        width: 100%;
    }
}

@media screen and (min-width: 1025px) {
    .section_2__circle_1 {
        top: 7em;
    }

    .section_2__circle_2 {
        top: 8em;
    }

    .section_2__title_1 {
        margin-top: 0em;
    }

    .section_2__image {
        height: 51vh;
        right: 11%;
        top: 30%;
    }

    .section_3__sticker {
        top: 4em;
        left: 2em;
        font-size: 2.2em;
    }

    .section_4--pricing {
        padding-top: 10em;
    }

    .section_testimonios {
        padding-top: 12em;
    }

    .section_5__sticker {
        top: 4em;
        font-size: 2.2em;
    }

    .section_5__content {
        width: 76%;
        height: 25em;
    }

    .card__circle {
        width: 200px;
        height: 200px;
    }

    .section_1__banner {
        margin-top: -6em;
    }

    .section_1__circle_wrapper_1 {
        top: 6em;
    }

    .section_1__circle_wrapper_2 {
        top: 29em;
    }
}

/* =============================================
   SECCIÓN DE SERVICIOS — Rediseño completo
   ============================================= */

.services {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(180deg, #fff 0%, #eaf6fb 30%, #eaf6fb 70%, #fff 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10em 4em 6em;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}



.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5em;
    max-width: 1200px;
    width: 100%;
}

.services__card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(42, 175, 229, 0.12);
    border-radius: 1.2em;
    padding: 2em 1.5em;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(6, 72, 109, 0.06);
    position: relative;
    overflow: hidden;
}

.services__card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.2em;
    padding: 2px;
    background: linear-gradient(135deg, transparent 0%, rgba(42, 175, 229, 0.3) 50%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.services__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(42, 175, 229, 0.18);
    border-color: rgba(42, 175, 229, 0.25);
}

.services__card:hover::before {
    opacity: 1;
}

.services__card-icon {
    width: 3.5em;
    height: 3.5em;
    margin: 0 auto 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2aafe5, #06486D);
    border-radius: 50%;
    padding: 0.7em;
    box-shadow: 0 4px 16px rgba(42, 175, 229, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services__card:hover .services__card-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(42, 175, 229, 0.45);
}

.services__card-icon svg {
    width: 100%;
    height: 100%;
    stroke: #fff;
}

.services__card-title {
    font-family: proximanova-bold;
    font-size: 1.1em;
    color: #06486D;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.services__card-text {
    color: #555;
    font-size: 0.88em;
    line-height: 1.5;
}

/* =============================================
   BOTÓN FLOTANTE (FAB) + PANEL
   ============================================= */

.fab {
    position: fixed;
    bottom: 2em;
    right: 2em;
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 0.6em;
    background: linear-gradient(135deg, #06486D, #2aafe5);
    color: #fff;
    border: none;
    border-radius: 3em;
    padding: 0.9em 1.4em;
    cursor: pointer;
    box-shadow: 0 6px 30px rgba(6, 72, 109, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fabPulse 3s ease-in-out infinite;
    font-family: proximanova-bold;
    font-size: 0.95em;
}

.fab:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(42, 175, 229, 0.5);
    animation-play-state: paused;
}

.fab--active {
    animation: none;
    background: linear-gradient(135deg, #2aafe5, #06486D);
    border-radius: 50%;
    padding: 0.9em;
}

.fab__icon {
    width: 1.6em;
    height: 1.6em;
    stroke: #fff;
    flex-shrink: 0;
}

.fab__label {
    white-space: nowrap;
    font-weight: 600;
}

@keyframes fabPulse {

    0%,
    100% {
        box-shadow: 0 6px 30px rgba(6, 72, 109, 0.4);
    }

    50% {
        box-shadow: 0 6px 40px rgba(42, 175, 229, 0.6), 0 0 0 8px rgba(42, 175, 229, 0.1);
    }
}

/* --- Overlay --- */
.fab-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 2999;
}

.fab-overlay--enter {
    transition: opacity 0.3s ease;
}

.fab-overlay--enter-start {
    opacity: 0;
}

.fab-overlay--enter-end {
    opacity: 1;
}

.fab-overlay--leave {
    transition: opacity 0.25s ease;
}

.fab-overlay--leave-start {
    opacity: 1;
}

.fab-overlay--leave-end {
    opacity: 0;
}

/* --- Panel lateral --- */
.fab-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 3001;
    background: linear-gradient(180deg, #ffffff 0%, #f0f8fc 100%);
    box-shadow: -8px 0 40px rgba(6, 72, 109, 0.15);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.fab-panel--enter {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-panel--enter-start {
    transform: translateX(100%);
}

.fab-panel--enter-end {
    transform: translateX(0);
}

.fab-panel--leave {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-panel--leave-start {
    transform: translateX(0);
}

.fab-panel--leave-end {
    transform: translateX(100%);
}

.fab-panel__close {
    position: absolute;
    top: 1em;
    right: 1em;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3em;
    border-radius: 50%;
    transition: background 0.2s;
    z-index: 1;
}

.fab-panel__close:hover {
    background: rgba(6, 72, 109, 0.08);
}

.fab-panel__close svg {
    width: 1.5em;
    height: 1.5em;
    stroke: #06486D;
}

/* Panel Header */
.fab-panel__header {
    text-align: center;
    padding: 2.5em 2em 1.5em;
    background: linear-gradient(135deg, #06486D, #2aafe5);
    color: #fff;
    flex-shrink: 0;
}

.fab-panel__header-icon {
    width: 3em;
    height: 3em;
    margin: 0 auto 0.8em;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6em;
}

.fab-panel__header-icon svg {
    width: 100%;
    height: 100%;
    stroke: #fff;
}

.fab-panel__title {
    font-family: proximanova-bold;
    font-size: 1.6em;
    font-weight: 900;
    margin-bottom: 0.3em;
    color: #fff;
}

.fab-panel__subtitle {
    font-size: 0.9em;
    opacity: 0.85;
    color: #fff;
}

/* Panel Body */
.fab-panel__body {
    flex: 1;
    padding: 1.5em;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.6em;
}

/* Accordion */
.fab-accordion {
    border: 1px solid rgba(42, 175, 229, 0.12);
    border-radius: 0.8em;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.fab-accordion:hover {
    box-shadow: 0 2px 12px rgba(42, 175, 229, 0.1);
}

.fab-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 1.2em;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    gap: 0.5em;
}

.fab-accordion__trigger:hover {
    background: rgba(234, 246, 251, 0.6);
}

.fab-accordion__trigger-left {
    display: flex;
    align-items: center;
    gap: 0.7em;
}

.fab-accordion__trigger-left span {
    font-family: proximanova-bold;
    font-size: 0.92em;
    color: #06486D;
    font-weight: 700;
    text-align: left;
}

.fab-accordion__icon {
    width: 1.5em;
    height: 1.5em;
    flex-shrink: 0;
    stroke: #2aafe5;
}

.fab-accordion__chevron {
    width: 1.2em;
    height: 1.2em;
    flex-shrink: 0;
    stroke: #999;
    transition: transform 0.3s ease;
}

.fab-accordion__chevron--open {
    transform: rotate(180deg);
}

.fab-accordion__content {
    padding: 0 1.2em 1em;
}

.fab-accordion__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.fab-accordion__list li {
    color: #555;
    font-size: 0.85em;
    line-height: 1.4;
    padding-left: 1.2em;
    position: relative;
}

.fab-accordion__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2aafe5, #06486D);
}

/* Panel Footer */
.fab-panel__footer {
    padding: 1.5em 2em;
    text-align: center;
    flex-shrink: 0;
    border-top: 1px solid rgba(42, 175, 229, 0.1);
    background: #fff;
}

.fab-panel__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    background: linear-gradient(135deg, #06486D, #2aafe5);
    color: #fff;
    border: none;
    border-radius: 2em;
    padding: 0.85em 2em;
    font-family: proximanova-bold;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(42, 175, 229, 0.35);
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.fab-panel__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(42, 175, 229, 0.5);
}

.fab-panel__cta svg {
    width: 1.2em;
    height: 1.2em;
    stroke: #fff;
    transition: transform 0.2s;
}

.fab-panel__cta:hover svg {
    transform: translateX(4px);
}

.fab-panel__note {
    color: #999;
    font-size: 0.75em;
    margin-top: 0.6em;
}

/* =============================================
   RESPONSIVE — Servicios + FAB
   ============================================= */

@media screen and (max-width: 1024px) {
    .services {
        padding: 6em 2em 4em;
        min-height: auto;
    }

    .services__title {
        font-size: 2.2em;
    }

    .services__header {
        margin-bottom: 2em;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2em;
    }

    .services__card {
        padding: 1.5em 1.2em;
    }

    /* Precios — override post-base para corregir cascada */

    .pricing-tier__badge {
        font-size: 0.65em;
    }

    .pricing-note {
        font-size: 0.72em;
    }

    .fab__label {
        display: none;
    }

    .fab {
        border-radius: 50%;
        padding: 1em;
    }

    .fab-panel {
        width: 380px;
    }
}

@media screen and (max-width: 768px) {
    .services {
        padding: 5em 1.2em 3em;
    }



    .services__grid {
        grid-template-columns: 1fr;
        gap: 1em;
        max-width: 400px;
    }

    .services__card {
        padding: 1.5em;
    }

    .services__card-title {
        font-size: 1em;
        margin-bottom: 0.2em;
    }

    .services__card-text {
        font-size: 0.82em;
    }

    /* Precios — override post-base para corregir cascada */

    .pricing-calculator__label {
        font-size: 0.85em;
    }

    .pricing-calculator__result-price span {
        font-size: 1.4em;
    }

    .pricing-tier__badge {
        font-size: 0.65em;
    }

    .pricing-benefit strong {
        font-size: 0.75em;
    }

    .pricing-benefit span {
        font-size: 0.68em;
    }

    .pricing-note {
        font-size: 0.72em;
    }

    .fab {
        bottom: 1.2em;
        right: 1.2em;
        padding: 0.8em;
    }

    .fab__icon {
        width: 1.4em;
        height: 1.4em;
    }

    .fab-panel {
        width: 100vw;
    }

    .fab-panel__header {
        padding: 2em 1.5em 1.2em;
    }

    .fab-panel__title {
        font-size: 1.4em;
    }

    .fab-panel__body {
        padding: 1em;
    }
}

/* --- FAB Panel — Premium Content Styles --- */

/* Team Cards */
.fab-team {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
    margin-bottom: 1.5em;
}

.fab-team__card {
    display: flex;
    align-items: center;
    gap: 1em;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(42, 175, 229, 0.15);
    border-radius: 1em;
    padding: 1em;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fab-team__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(6, 72, 109, 0.12);
}

.fab-team__avatar {
    width: 4em;
    height: 4em;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #2aafe5, #06486D) border-box;
    box-shadow: 0 4px 12px rgba(42, 175, 229, 0.2);
}

.fab-team__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.fab-team__info {
    flex: 1;
    min-width: 0;
}

.fab-team__name {
    font-family: proximanova-bold;
    font-size: 0.95em;
    color: #06486D;
    margin: 0;
    font-weight: 700;
}

.fab-team__role {
    display: inline-block;
    background: linear-gradient(135deg, #06486D, #2aafe5);
    color: #fff;
    font-size: 0.68em;
    padding: 0.15em 0.7em;
    border-radius: 1em;
    font-weight: 600;
    margin: 0.3em 0;
    letter-spacing: 0.03em;
}

.fab-team__exp {
    display: flex;
    align-items: center;
    gap: 0.4em;
    font-size: 0.78em;
    color: #666;
    margin: 0;
}

.fab-team__exp-icon {
    width: 1em;
    height: 1em;
    stroke: #2aafe5;
    flex-shrink: 0;
}

/* Value Proposition */
.fab-value {
    background: linear-gradient(135deg, #06486D 0%, #0a6f9e 100%);
    border-radius: 1.2em;
    padding: 1.2em;
    margin-bottom: 1.5em;
    color: #fff;
}

.fab-value__title {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-family: proximanova-bold;
    font-size: 1em;
    font-weight: 700;
    margin: 0 0 1em;
    color: #fff;
}

.fab-value__title-icon {
    width: 1.2em;
    height: 1.2em;
    stroke: #fbbf24;
    flex-shrink: 0;
}

.fab-value__items {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
}

.fab-value__item {
    display: flex;
    align-items: flex-start;
    gap: 0.8em;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.8em;
    padding: 0.8em;
    transition: background 0.2s;
}

.fab-value__item:hover {
    background: rgba(255, 255, 255, 0.18);
}

.fab-value__item-icon {
    width: 2em;
    height: 2em;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.35em;
    flex-shrink: 0;
}

.fab-value__item-icon svg {
    width: 100%;
    height: 100%;
    stroke: #7dd3fc;
}

.fab-value__item strong {
    display: block;
    font-size: 0.85em;
    margin-bottom: 0.15em;
    color: #fff;
}

.fab-value__item p {
    font-size: 0.78em;
    margin: 0;
    opacity: 0.85;
    line-height: 1.3;
    color: #d4ecf7;
}

/* Timeline */
.fab-timeline {
    margin-bottom: 1.5em;
}

.fab-timeline__title {
    font-family: proximanova-bold;
    font-size: 1.05em;
    color: #06486D;
    margin: 0 0 1em;
    font-weight: 700;
}

.fab-timeline__track {
    position: relative;
    padding-left: 2.3em;
}

.fab-timeline__track::before {
    content: '';
    position: absolute;
    left: 0.85em;
    top: 0.5em;
    bottom: 2em;
    width: 2px;
    background: linear-gradient(180deg, #2aafe5 0%, #06486D 100%);
    border-radius: 1px;
}

.fab-timeline__item {
    display: flex;
    align-items: flex-start;
    gap: 0.8em;
    margin-bottom: 1em;
    position: relative;
}

.fab-timeline__item:last-child {
    margin-bottom: 0;
}

.fab-timeline__marker {
    position: absolute;
    left: -2em;
    top: 0;
}

.fab-timeline__marker span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.7em;
    height: 1.7em;
    background: linear-gradient(135deg, #06486D, #2aafe5);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75em;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(42, 175, 229, 0.3);
}

.fab-timeline__content {
    flex: 1;
    padding: 0.2em 0;
}

.fab-timeline__content strong {
    display: block;
    font-size: 0.88em;
    color: #06486D;
    margin-bottom: 0.1em;
}

.fab-timeline__content p {
    font-size: 0.78em;
    color: #777;
    margin: 0;
    line-height: 1.3;
}

/* Brochure Download */
.fab-brochure {
    display: flex;
    align-items: center;
    gap: 0.8em;
    background: #fff;
    border: 2px solid rgba(42, 175, 229, 0.2);
    border-radius: 1em;
    padding: 0.8em 1em;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-top: auto;
}

.fab-brochure:hover {
    border-color: #06486D;
    box-shadow: 0 4px 16px rgba(6, 72, 109, 0.12);
    transform: translateY(-2px);
}

.fab-brochure__icon {
    width: 2.5em;
    height: 2.5em;
    background: linear-gradient(135deg, #2aafe5, #06486D);
    border-radius: 0.6em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4em;
    flex-shrink: 0;
}

.fab-brochure__icon svg {
    width: 100%;
    height: 100%;
    stroke: #fff;
}

.fab-brochure__text {
    flex: 1;
}

.fab-brochure__text strong {
    display: block;
    font-size: 0.88em;
    color: #06486D;
}

.fab-brochure__text span {
    display: block;
    font-size: 0.75em;
    color: #888;
}

.fab-brochure__arrow {
    width: 1.4em;
    height: 1.4em;
    stroke: #2aafe5;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.fab-brochure:hover .fab-brochure__arrow {
    transform: translateX(4px);
}

/* --- Presentation Modal Styles --- */
.presentation-modal {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.presentation-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.presentation-modal__controls {
    position: absolute;
    bottom: 2em;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4002;
    background: rgba(6, 72, 109, 0.85);
    /* Azul oscuro de la app con transparencia */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.5em 1em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.presentation-modal__controls button {
    background: transparent;
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.presentation-modal__controls button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.presentation-modal__controls span {
    color: #fff;
    font-weight: 600;
    font-size: 0.9em;
    min-width: 4.5ch;
    text-align: center;
    user-select: none;
}

.presentation-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    z-index: 4003;
}

.presentation-modal__close:hover {
    background: rgba(255, 50, 50, 0.8);
    transform: scale(1.1);
}

.presentation-modal__viewport {
    position: relative;
    z-index: 4001;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Hide overflow, pan via transform */
}

.presentation-modal__image {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    /* Prevent native image drag action */
    will-change: transform;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    border-radius: 4px;
}