:root {
    /* Color de Fondo */
    --fondo_1: #e3f2fd;
    --fondo_2: #a2bdf0;
    --fondo_3: #e8f0fb;
    /* Fondo Primario */
    --fondo_4: #F3F6FD;

    /* Color Secundario */
    --secundario: #1347BA;
    /* Color de Botones */
    --boton: #1347BA;
    /* Color de Hover de Botones */
    --boton_hover: #1313BA;
    /* ===== NOTIFICACIONES TOAST ===== */
    --exito: #3ab65c;
    --error: #bf333b;
    --info: #1898c0;
    --warning: #bc8c12;
    interpolate-size: allow-keywords;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg,
            var(--fondo_4) 0%,
            var(--fondo_3) 100%);
    background-repeat: no-repeat;
    background-size: cover;
}

a {
    text-decoration: none;
}

/* ===== HEADER ===== */
header {
    display: flex;
    min-height: 175px;
    background: var(--secundario);
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo_img {
    height: auto;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo_img img {
    display: block;
    max-width: 100%;
    max-height: 150px;
    height: auto;
    width: auto;
}

/* ===== PRESENTACIÓN Y FORMULARIO ===== */
.hero-section {
    padding: 60px 150px;
    /* background-color: var(--fondo_1); */
    /* background-color: var(--fondo_2); */
    background: linear-gradient(180deg,
            var(--fondo_4) 0%,
            var(--fondo_3) 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

/* Contenido de presentación */
.hero-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(55, 97, 238, 0.1);
}

.hero-title {
    font-size: 2.5rem;
    color: var(--secundario);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.hero-video {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--secundario);
    box-shadow: 0 4px 16px rgba(55, 97, 238, 0.15);
}

.hero-video video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Formulario */
.hero-form-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 40px;
}

.form-title {
    font-size: 2rem;
    color: var(--secundario);
    margin-bottom: 10px;
    font-weight: 700;
}

.form-subtitle {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.5;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d9e0;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--secundario);
}

.form-input.full-width {
    grid-column: 1 / -1;
}

.phone-input-wrapper {
    display: flex;
    gap: 10px;
}

.country-code {
    padding: 14px 12px;
    border: 1px solid #d1d9e0;
    border-radius: 6px;
    font-size: 0.9rem;
    background-color: #f8f9fa;
    cursor: pointer;
    min-width: 20px;
}

.phone-number {
    flex: 1;
}

.iti {
    width: 100%;
    display: block;
}

.iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: auto;
    left: 0;
    padding: 1px;
}

.iti__selected-flag {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 12px;
}

.phone-input-wrapper .form-input {
    padding-left: 60px;
}

.form-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d9e0;
    border-radius: 6px;
    font-size: 0.95rem;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.3s;
}

.form-select:focus {
    outline: none;
    border-color: var(--secundario);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #5a6c7d;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.form-checkbox label {
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--secundario);
    text-decoration: underline;
}

.form-submit {
    padding: 16px 32px;
    /* background-color: #3761ee; */
    background-color: var(--boton);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
}

.form-submit:hover {
    /* background-color: #1347BA; */
    background-color: var(--boton_hover);
    transform: translateY(-2px);
}

.form-submit:active {
    transform: translateY(0);
}

/* ===== BOTOENES =====*/

.contenedor-toast {
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    z-index: 9999;
}

.toast {
    background: #ccc;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation-name: apertura;
    animation-duration: 200ms;
    animation-timing-function: ease-out;
    position: relative;
}

.toast.exito {
    background-color: var(--exito);
}

.toast.error {
    background-color: var(--error);
}

.toast.warning {
    background-color: var(--warning);
}

.toast.info {
    background-color: var(--info);
}

.toast .contenido {
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0 15px;
    padding: 15px;
    flex: 1;
}

.toast .contenido .icono {
    grid-row: 1 / 3;
    grid-column: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast .contenido .icono svg {
    width: 80%;
    height: 80%;
    color: rgba(0, 0, 0, 0.4);
}

.toast .texto-notificacion {
    display: none;
}

.toast .titulo-notificacion {
    grid-column: 2;
    grid-row: 1;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: white;
}

.toast .descripcion-notificacion {
    grid-column: 2;
    grid-row: 2;
    font-size: 15px;
    margin: 0;
    color: white;
    line-height: 1.4;
}

.toast .btn-cerrar {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease all;
    background: rgba(0, 0, 0, 0.1);
}

.toast .btn-cerrar:hover {
    background: rgba(0, 0, 0, 0.2);
}

.toast .btn-cerrar .icono {
    width: 20px;
    height: 20px;
}

.toast .btn-cerrar .icono svg {
    width: 100%;
    height: 100%;
    fill: white;
}

@keyframes apertura {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.toast.cerrando {
    animation-name: cierre;
    animation-duration: 200ms;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes cierre {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(100% + 40px));
    }
}

.toast.autoCierre::after {
    content: "";
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    animation-name: autoCierre;
    animation-duration: 5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes autoCierre {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

/* ===== CAROUSEL CLIENTES ===== */
#clientes {
    padding: 60px 150px;
    background: linear-gradient(180deg,
            var(--fondo_4) 0%,
            var(--fondo_3) 100%);
    text-align: center;
}

#clientes h2 {
    font-size: 2em;
    color: var(--secundario);
    margin-bottom: 40px;
}

.logo-carousel {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.glide__track {
    overflow: hidden;
}

.glide__slides {
    height: 170px;
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.glide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.glide__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Boton whatsapp */

.whatsapp-button {
    position: fixed;
    width: 40px;
    height: 10px;
    line-height: 65px;
    bottom: 60px;
    right: 20px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 50px;
    height: 50px;
}

/* ===== MÓDULOS Y HERRAMIENTAS ===== */
.modulos-herramientas {
    padding: 80px 150px 60px;
    background: linear-gradient(180deg,
            var(--fondo_3) 0%,
            var(--fondo_3) 40%,
            var(--fondo_4) 100%);
}

.modulos-container {
    max-width: 1400px;
    margin: 0 auto;
}

.modulos-title {
    font-size: 2.5em;
    color: var(--secundario);
    text-align: center;
    margin-bottom: 80px;
    font-weight: 700;
}

.modulos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.modulo-card {
    position: relative;
    background: white;
    padding: 60px 30px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modulo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* acaaaaaaaaaa */
.modulo-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: var(--secundario);

    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(55, 97, 238, 0.15);
}

.modulo-icon img {
    width: 45px;
    height: 45px;
}

.modulo-titulo {
    font-size: 1.3rem;
    color: var(--secundario);
    margin-bottom: 12px;
    font-weight: 600;
}

.modulo-descripcion {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.5;
}

.modulos-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-agendar {
    display: inline-block;
    padding: 16px 50px;
    background-color: var(--boton);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-agendar:hover {
    background-color: var(--boton_hover);
    transform: translateY(-6px);
}

/* ===== BENEFICIOS ===== */
.beneficios-section {
    padding: 60px 150px;
    background: linear-gradient(180deg,
            var(--fondo_4) 0%,
            var(--fondo_3) 100%);
}

.beneficios-container {
    max-width: 1400px;
    margin: 0 auto;
}

.beneficios-title {
    font-size: 2.5em;
    color: var(--secundario);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.beneficio-titulo {
    font-size: 1.1em;
    color: var(--secundario);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.beneficio-card {
    position: relative;
    background: #f8f9fa;
    padding: 30px 20px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.beneficio-descripcion {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 80px;
}

.beneficio-imagen {
    width: 100%;
    height: auto;
    background-color: #e3f2fd;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beneficio-imagen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.beneficio-numero {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background-color: var(--secundario);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(55, 97, 238, 0.3);
}

/* ===== CARRUSEL DE RESEÑAS ===== */
.reviews-section {
    padding: 60px 150px;
    background: linear-gradient(180deg,
            var(--fondo_3) 100%,
            #ffffff 100%);
    overflow: hidden;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-title {
    font-size: 2.5em;
    color: var(--secundario);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

#reviews-splide {
    padding: 40px 0;
}

.splide__track {
    overflow: visible !important;
}

.splide__list {
    align-items: center;
}

.splide__slide {
    display: flex;
    justify-content: center;
}

/* Card de reseña */
.review-slide {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.85);
    opacity: 0.6;
    width: 100%;
    max-width: 400px;
}

.splide__slide.is-active .review-slide {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 8px 24px rgba(55, 97, 238, 0.15);
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid var(--secundario);
    transition: all 0.3s ease;
}

.splide__slide.is-active .review-avatar {
    width: 100px;
    height: 100px;
    border-width: 4px;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-author {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secundario);
    margin-bottom: 5px;
}

.splide__slide.is-active .review-author {
    font-size: 1.2rem;
}

.review-company {
    font-size: 0.9rem;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.review-stars {
    margin-bottom: 20px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-stars img {
    height: 100%;
    width: auto;
}

.splide__slide.is-active .review-stars {
    height: 30px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a6c7d;
    font-style: italic;
    flex: 1;
    display: flex;
    align-items: center;
}

.splide__slide.is-active .review-text {
    font-size: 1rem;
}

/* Ocultar paginación */
.splide__pagination {
    display: none !important;
}

/* Botones Splide */
.splide__arrows {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.splide__arrow {
    position: static !important;
    width: 40px;
    height: 40px;
    background: var(--secundario) !important;
    border-radius: 50%;
    opacity: 1 !important;
    transform: none !important;
}

.splide__arrow:hover:not(:disabled) {
    background: #2849cc !important;
}

.splide__arrow svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* ===== PREGUNTAS FRECUENTES ===== */
.faq-section {
    background: linear-gradient(180deg,
            var(--fondo_3) 0%,
            var(--fondo_4) 100%);
    padding: 40px;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-title {
    font-size: 2.5em;
    color: var(--secundario);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .faq-item:hover {
        box-shadow: 0 4px 16px rgba(19, 71, 186, 0.15);
    }
}

.faq-item summary {
    padding: 20px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--secundario);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item[open] summary {
    background-color: var(--fondo_3);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

@media (hover: hover) {
    .faq-item summary:hover {
        background-color: var(--fondo_3);
    }
}

.faq-content {
    padding: 0 30px 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
    box-sizing: border-box;
    transition: padding-bottom 0.6s ease;
}

.faq-item[open] .faq-content {
    padding-bottom: 5px;
}

details {
    interpolate-size: allow-keywords;
}

details::details-content {
    display: block;
    height: 0;
    overflow: hidden;
    content-visibility: hidden;
    transition: height 0.6s ease, content-visibility 0.6s allow-discrete;
}

details[open]::details-content {
    height: auto;
    content-visibility: visible;
}

/* ===== FOOTER ===== */

footer {
    background: linear-gradient(180deg, #d4e9f7 0%, #e8f4fd 100%);
    padding: 70px 20px 50px;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 0;
}

.footer-title {
    font-size: 3rem;
    color: #1e40af;
    margin-bottom: 50px;
    font-weight: 400;
    line-height: 1.3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.footer-title b {
    font-weight: 700;
    color: #1e3a8a;
}

footer .modulos-cta {
    position: relative;
    z-index: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {

    /* header */
    header {
        padding: 20px;
    }

    /* Presentacion y Formulario */
    .hero-section {
        padding: 30px 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content {
        padding: 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-form-container {
        padding: 30px;
    }

    .form-title {
        font-size: 1.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .phone-input-wrapper {
        flex-direction: column;
    }

    .country-code {
        width: 100%;
    }

    /* Carousel */
    #clientes {
        padding: 30px 20px;
    }

    #clientes h2 {
        font-size: 1.75em;
    }

    .glide__slide {
        height: 100px;
    }

    /* Modulos y herramientas */
    .modulos-herramientas {
        padding: 60px 20px 40px;
    }

    .modulos-title {
        font-size: 2em;
        margin-bottom: 60px;
    }

    .modulos-grid {
        max-width: 750px;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin: 0 auto;
    }

    .modulo-card {
        padding: 50px 25px 25px;
    }

    .modulo-card:nth-child(9) {
        grid-column: 1 / -1;
        max-width: 350px;
        margin: 0 auto;
    }

    .modulo-icon {
        width: 60px;
        height: 60px;
        top: -25px;
    }

    /* aaaaaaaaaa */
    .modulo-icon img {
        width: 30px;
        height: 30px;
    }

    .modulo-titulo {
        font-size: 1.2rem;
    }

    .modulo-descripcion {
        font-size: 0.9rem;
    }

    /* Modulo de Beneficios */
    .beneficios-section {
        padding: 40px 20px 60px;
    }

    .beneficios-title {
        font-size: 2em;
        margin-bottom: 50px;
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        max-width: 800px;
        margin: 0 auto;
    }

    .beneficio-descripcion {
        font-size: 1rem;
        min-height: auto;
    }

    .beneficio-imagen {
        height: auto;
    }

    /* Carrusel Reseña */

    .reviews-section {
        padding: 40px 20px;
    }

    .review-slide {
        transform: scale(1);
        opacity: 1;
    }

    .splide__slide.is-active .review-slide {
        transform: scale(1);
    }

    .review-avatar {
        width: 80px;
        height: 80px;
    }

    .splide__slide.is-active .review-avatar {
        width: 80px;
        height: 80px;
        border-width: 3px;
    }

    .review-author {
        font-size: 1.1rem;
    }

    .splide__slide.is-active .review-author {
        font-size: 1.1rem;
    }

    .review-stars {
        height: 25px;
    }

    .splide__slide.is-active .review-stars {
        height: 25px;
    }

    /* Footer */
    footer {
        padding: 100px 20px;
    }

    .footer-title {
        font-size: 2.5rem;
    }
}

/* Alerta de Mensaje */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 350px;
    font-family: Arial, sans-serif;
    animation: fadeIn .3s ease-in-out;
}

.close {
    cursor: pointer;
    float: right;
    font-size: 22px;
    font-weight: bold;
}

@keyframes fadeIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


@media (max-width: 800px) {

    /* Presentacion y Formulario */
    .hero-content {
        padding: 25px;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-form-container {
        padding: 25px;
    }

    .form-title {
        font-size: 1.6rem;
    }

    /* Carousel */
    #clientes h2 {
        font-size: 1.6em;
    }

    .glide__slide {
        height: 90px;
    }

    /* Modulos y herramientas */
    .modulos-grid {
        max-width: 400px;
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .modulo-card:nth-child(9) {
        grid-column: 1;
        max-width: 100%;
    }

    /* Modulo de Beneficios */
    .beneficios-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 50px;
    }

    .beneficio-imagen {
        height: 250px;
    }

    /* Carrusel Reseña */
    .reviews-section {
        padding: 35px 20px;
    }

    /* Footer */
    footer {
        padding: 50px 20px;
    }

    .footer-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 20px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-form-container {
        padding: 20px;
    }

    .form-title {
        font-size: 1.5rem;
    }

    #clientes h2 {
        font-size: 1.5em;
    }

    .logo-carousel {
        padding: 15px;
    }

    .glide__slide {
        height: 80px;
    }

    /* Modulo de Beneficios */
    .beneficios-title {
        font-size: 1.75em;
    }

    .beneficio-card {
        padding: 25px 15px 15px;
    }

    .beneficio-descripcion {
        font-size: 0.9rem;
    }

    .beneficio-imagen {
        height: 200px;
    }

    .beneficio-numero {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    /* Footer */
    footer {
        padding: 40px 20px;
    }

    .footer-title {
        font-size: 2rem;
    }
}