/*
Theme Name: Mudanzas Arboleda by SANTACONCHA
Theme URI: https://santaconcha.com
Author: SANTACONCHA Digital Performance
Author URI: https://santaconcha.com
Version: 1.0
*/

:root {
    --bs-primary: #00CCD7 !important;
    --bs-primary-rgb: 0, 204, 215 !important;
    --bs-blue: #00CCD7 !important;
    --bs-btn-color: #fff;
    --bs-btn-bg: #00CCD7;
    --bs-btn-border-color: #00CCD7;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #00a6af;
    --bs-btn-hover-border-color: #00a6af;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #00a6af;
    --bs-btn-active-border-color: #00a6af;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #00CCD7;
    --bs-btn-disabled-border-color: #00CCD7;
}

html {
    overflow-x: hidden !important;
}

body {
    /* font-family: 'Inter', sans-serif; */
    font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Oswald', sans-serif;
}

h1,
.h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2,
.h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
}

h3,
.h3 {
    font-size: clamp(1.5rem, 5vw, 1.8rem);
}

h4,
.h4 {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
}

h5,
.h5 {
    font-size: clamp(1rem, 5vw, 1.2rem);
}

h6,
.h6,
p,
li {
    font-size: clamp(0.8rem, 5vw, 1rem);
}

.container-big {
    max-width: 1700px !important;
}

.wpcf7-form a,
.wpcf7-form a:hover {
    font-weight: bold;
    color: var(--bs-primary);

}

.btn-primary,
.btn-hero {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--bs-primary);
    color: white;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover,
.btn-hero:hover {
    color: white;
    text-decoration: none;
    background: #05a2aa;
}

.btn-outline-primary {
    background: transparent;
    color: var(--bs-primary);
    border: 2px solid var(--bs-primary);
    padding: 10px 25px;
    font-size: 14px;
}

.btn-outline-primary:hover {
    background: var(--bs-primary);
    color: #fff;
    border: 2px solid var(--bs-primary);
}


.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: var(--bs-primary);
    color: #fff;
}

.btn-outline-white {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-white:hover {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

.btn-outline-black {
    display: inline-block;
    background: transparent;
    color: #000;
    border: 1px solid #000;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-black:hover {
    background: var(--bs-primary);
    color: #fff;
    border: 1px solid var(--bs-primary);
}

.btn.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: var(--bs-primary);
    color: white;
    border: none;
}


/* ===== NAVBAR ===== */
nav.navbar {
    padding: 25px 0;
    background: transparent;
    transition: all 0.5s ease;
}

nav.navbar.bg-blanco {
    background: #fff;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
}

nav.navbar.menu-fijado {
    background: #fff;
    position: fixed;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
}

a.navbar-brand {
    padding-bottom: 10px;
    padding-top: 5px;
}

a.navbar-brand img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

nav.navbar.bg-blanco a.navbar-brand img,
nav.navbar.menu-fijado a.navbar-brand img {
    filter: brightness(0);
}

a.nav-link {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.5s ease;
}

a.nav-link:focus {
    color: white;
}

nav.navbar.bg-blanco a.nav-link,
nav.navbar.menu-fijado a.nav-link {
    color: #000;
}

a.nav-link:hover,
a.nav-link.destacado-secondary:hover,
nav.navbar.bg-blanco a.nav-link:hover,
nav.navbar.menu-fijado a.nav-link:hover {
    color: var(--bs-primary);
}

a.nav-link.destacado-secondary {
    margin: 0 20px;
}

a.nav-link.destacado-secondary svg {
    fill: #fff;
    width: 20px;
}

a.nav-link.destacado-secondary:hover svg {
    fill: var(--bs-primary);
}

a.nav-link.destacado-primary {
    background: var(--bs-primary);
    color: #fff;
    padding: 10px 25px;
    border-radius: 27px;
    font-weight: 600;
}

a.nav-link.destacado-primary:hover {
    color: var(--bs-primary);
    background: #fff;
}

.dropdown-item {
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background: var(--bs-primary);
    color: #fff;
}

.btn-menu {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

nav.navbar.bg-blanco .btn-menu,
nav.navbar.menu-fijado .btn-menu {
    background: #fff;
    color: #000;
    border: 2px solid #000;
}

.btn-menu:hover,
nav.navbar.bg-blanco .btn-menu:hover,
nav.navbar.menu-fijado .btn-menu:hover {
    background: var(--bs-primary);
    color: #fff;
    border: 2px solid var(--bs-primary);
    text-decoration: none;
}

.navbar-toggler {
    border: none;
    padding: 4px 6px;
}

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

.navbar-toggler svg path {
    stroke: #fff;
    transition: stroke 0.3s ease;
}

nav.navbar.bg-blanco .navbar-toggler svg path,
nav.navbar.menu-fijado .navbar-toggler svg path {
    stroke: #000;
}

.wpml-ls-legacy-list-horizontal .wpml-ls-item.wpml-ls-first-item {
    border-right: 1px solid #fff;
    transition: all 0.3s ease;
}

.wpml-ls-legacy-list-horizontal a {
    color: #fff;
    padding: 0 7px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wpml-ls-legacy-list-horizontal a:hover {
    color: var(--bs-primary);
}

.wpml-ls-legacy-list-horizontal ul .wpml-ls-current-language a .wpml-ls-native {
    font-weight: 300;
}

.wpml-ls-legacy-list-horizontal ul .wpml-ls-current-language a:hover .wpml-ls-native {
    color: #fff;
}

nav.navbar.menu-fijado .wpml-ls-legacy-list-horizontal .wpml-ls-item.wpml-ls-first-item {
    border-right: 1px solid #000;
}

nav.navbar.menu-fijado .wpml-ls-legacy-list-horizontal a,
nav.navbar.menu-fijado .wpml-ls-legacy-list-horizontal ul .wpml-ls-current-language a:hover .wpml-ls-native {
    color: #000;
}


/* ===== FOOTER ===== */
footer {
    background: #151515;
}

footer .wpcf7-form {
    margin-top: 20px;
}

footer .wpcf7-form input,
footer .wpcf7-form textarea,
footer .wpcf7-form select {
    background: transparent !important;
    border: 1px solid rgb(255 255 255 / 100%) !important;
    padding: 10px 20px !important;
    color: #fff !important;
    border-radius: 25px !important;
}

footer .wpcf7-form select {
    width: 100% !important;
}

footer .wpcf7-form select option {
    background: #fff;
    color: #000;
}

footer .wpcf7-form input::placeholder,
footer .wpcf7-form textarea::placeholder,
footer .wpcf7-form select::placeholder {
    color: rgb(255 255 255 / 100%) !important;
}

footer .wpcf7-form input:focus,
footer .wpcf7-form textarea:focus,
footer .wpcf7-form select:focus,
footer .wpcf7-form input:focus-visible,
footer .wpcf7-form textarea:focus-visible,
footer .wpcf7-form select:focus-visible {
    outline: none !important;
    border: 1px solid var(--bs-primary) !important;
    box-shadow: none !important;
}

footer .wpcf7-form .wpcf7-not-valid-tip {
    padding: 0 20px !important;
    color: #ff9090;
}


/* ===== HERO VIDEO SECTION ===== */
.hero-video-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 1;
    will-change: transform;
}

.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    color: white;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title strong {
    color: var(--bs-primary);
}

@media (prefers-reduced-motion: reduce) {
    .hero-video {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ===== CABECERA ESTÁNDAR ===== */
.cabecera-estandar {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 150px 0;
}

.cabecera-estandar .subtitulo {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.cabecera-estandar h1 strong {
    color: var(--bs-primary);
    display: block;
}

.porque-bg {
    background: linear-gradient(#08C6D2, #04666C);
}

.contenedor-iframe * {
    margin-bottom: 0 !important;

}


/* ===== BLOQUE TEXTO + IMAGEN ===== */
.texto-img {
    position: relative;
}

.imagen-container {
    display: block;
    position: relative;
    width: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.titulo-imagen {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: white;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    max-width: 60%;
}

.titulo-imagen strong {
    color: var(--bs-primary);
}



/* ===== BLOQUE TEXTO ===== */
.texto h2 strong {
    color: var(--bs-primary);
}

.texto table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: auto;
    width: 100%;
    margin-bottom: 1.5rem;
}

.texto table th {
    border: 1px solid #ccc;
    padding: 6px 13px;
}

.texto table td {
    border: 1px solid #ccc;
    padding: 6px 13px;
}

.texto table tr:nth-child(even) {
    background-color: #f2f2f2;
}

table th[colspan="2"] {
    text-align: center;
}




/* ===== BANNER CTA ===== */
.banner-cta {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-cta img {
    width: 100px;
}

.banner-cta p.subtitulo {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.banner-cta h2.sedgwick {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 6rem;
    font-style: italic;
    transform: rotate(-4deg);
    margin-bottom: 35px !important;
}

.banner-cta h2 strong {
    color: var(--bs-primary);
}


/* ===== BLOQUE GIMNASIOS ===== */
.gimnasios h2 strong {
    color: var(--bs-primary);
}

.gimnasios .gimnasio-link h3.titulo-imagen {
    bottom: 1.5rem;
    left: 1.5rem;
    font-size: 2.2rem;
    max-width: 190px;
}

/* ===== BANNER DESCARGAR APP ===== */
.descarga-app h2 strong {
    color: var(--bs-primary);
}

.bg-app {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-app .container {
    position: relative;
}

.bg-app .img-app {
    position: absolute;
    top: -50%;
    left: 0;
    width: 55%;
    height: 200%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.bg-app ul {
    padding-left: 1rem;
}

.bg-app ul,
.bg-app p {
    font-weight: bold;
}

/* ===== REVIEWS CAROUSEL ===== */
.reviews h2 strong {
    color: var(--bs-primary);
}

.reviews .content-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviews .content-text p {
    margin-left: 10px;
    line-height: 20px;
    margin-bottom: 0;
}

.review-item {
    padding: 2rem;
    margin: 0;
    background: #efefef;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
    min-height: 300px;
    display: flex;
    align-items: flex-start;
}

.review-content {
    width: 100%;
}

.review-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.review-stars {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    margin-bottom: 1rem;
}

.review-stars img {
    width: 20px !important;
    height: 20px;
}

.review-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

#reviews-carousel .owl-stage,
#reviews-carousel .owl-stage .owl-item {
    display: flex;
}

#reviews-carousel .owl-dots {
    text-align: center;
    margin-top: 2rem;
}

#reviews-carousel .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #ddd;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

#reviews-carousel .owl-dot.active,
#reviews-carousel .owl-dot:hover {
    background: var(--bs-primary);
    transform: scale(1.2);
}

#reviews-carousel .owl-dot span {
    display: none;
}


/* ===== PRUEBA GRATIS ===== */
.prueba-gratis {
    padding-top: 100px;
    padding-bottom: 100px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.prueba-gratis .content-prueba-gratis {
    padding: 50px;
    background: rgb(0 0 0 / 62%);
    border-radius: 20px;
}

.prueba-gratis .content-prueba-gratis h2 strong {
    color: var(--bs-primary);
}

.prueba-gratis .content-prueba-gratis p.subtitulo {
    font-family: 'Oswald', sans-serif;
}

.prueba-gratis .wpcf7-form .row>div>p {
    margin-bottom: 30px !important;
}

.prueba-gratis .wpcf7-form .row>div.checkbox-politica>p {
    margin-top: -15px !important;
    margin-bottom: 20px !important;
}

.prueba-gratis .wpcf7-form label.label-input {
    font-weight: bold;
    color: #fff;
    font-size: 0.8rem;
    padding: 0 21px;
    position: absolute;
}

.prueba-gratis .wpcf7-form label.label-input.label-select {
    padding: 0 21px 0 26px !important;
}

.prueba-gratis .wpcf7-form input,
.prueba-gratis .wpcf7-form textarea,
.prueba-gratis .wpcf7-form select {
    background: transparent !important;
    border: 2px solid rgb(255 255 255 / 80%) !important;
    padding: 32px 20px 10px 20px !important;
    color: #fff !important;
    border-radius: 25px !important;
    width: 100%;
    margin-top: -33px;
    min-height: 70px;
}

.prueba-gratis .wpcf7-form input[type="checkbox"] {
    margin-top: 0;
    width: auto;
    min-height: auto !important;
}

.prueba-gratis .wpcf7-form select option {
    background: #fff;
    color: #000;
}

.prueba-gratis .wpcf7-form input::placeholder,
.prueba-gratis .wpcf7-form textarea::placeholder,
.prueba-gratis .wpcf7-form select::placeholder {
    color: rgb(255 255 255 / 80%) !important;
}

.prueba-gratis .wpcf7-form input:focus,
.prueba-gratis .wpcf7-form textarea:focus,
.prueba-gratis .wpcf7-form input:focus-visible,
.prueba-gratis .wpcf7-form textarea:focus-visible,
.prueba-gratis .wpcf7-form select:focus,
.prueba-gratis .wpcf7-form select:focus-visible {
    outline: none !important;
    border: 2px solid var(--bs-primary) !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.2) !important;
}

.prueba-gratis .wpcf7-form .wpcf7-not-valid-tip {
    padding: 0 20px !important;
    color: #ff9090;
}



/* Estilos por ordenar*/

.logo-tp-fondo-left {
    position: absolute;
    left: -12.5%;
    z-index: -1;
}



.logo-tp-fondo-right {
    position: absolute;
    right: -13.5%;
    z-index: -1;
}

#mapa-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 103.5%;
    top: 50% !important;
    transform: translateY(-50%) !important;
    left: -1.8%;
    margin-top: 0;
}

.imagen-container-iconos {
    display: block;
    position: relative;
    width: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    pointer-events: none;
}

.texto-img-iconos ul {
    list-style: none;
    padding-left: 1rem;

}

.texto-img-iconos ul li {
    position: relative;
    padding-left: 2rem;
    margin-top: 10px;
    margin-bottom: 10px;
}

.texto-img-iconos ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: url("assets/img/fletxa_blau.svg") no-repeat center;
    background-size: contain;
}

.texto-img-iconos .row:first-child {
    margin-bottom: 6rem !important;
}

.texto-img-iconos .row:last-child {
    margin-bottom: 0rem !important;
}

.gimnasio-unico>a>h3.titulo-imagen {
    bottom: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    max-width: unset !important;
    text-align: center !important;
    font-size: 3rem !important;
}

p.fs-5,
h3.fs-5 {
    text-transform: uppercase !important;
}

h2 {
    text-transform: uppercase !important;
}

.navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.dropdown-item.active {
    color: var(--bs-primary) !important;
    background: #ffffff00 !important;
}

.dropdown-item.active:hover {
    background: var(--bs-primary) !important;
    color: #ffffff !important;
}

.dropdown-menu {
    border-radius: 15px !important;
    overflow: hidden;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {

    /* Control del menú colapsable */
    nav.navbar.menu-abierto {
        padding: 10px 0 !important;
    }

    nav.navbar.menu-abierto a.navbar-brand,
    nav.navbar.menu-abierto #div-btn-toggler {
        z-index: 3;
    }

    nav.navbar.menu-abierto a.navbar-brand img {
        filter: brightness(0);
    }

    nav.navbar.menu-abierto .navbar-toggler svg path {
        stroke: #000;
    }

    #navbar {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 1000;
        background: #fff;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px 20px 40px;
        gap: 5px;
        z-index: 2;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    #navbar.show {
        transform: translateY(0);
    }

    #navbar.show a.nav-link {
        color: #000;
        font-size: 1.5rem;
    }

    #navbar.show a.nav-link:hover {
        color: var(--bs-primary);
    }

    #navbar.show .wpml-ls-legacy-list-horizontal a {
        color: #000;
        padding: 0 15px;
        font-size: 1.25rem;
    }

    #navbar.show .wpml-ls-legacy-list-horizontal a:hover {
        color: var(--bs-primary);
    }

    #navbar.show .wpml-ls-legacy-list-horizontal ul .wpml-ls-current-language a:hover .wpml-ls-native {
        color: #000;
    }

    #navbar.show .wpml-ls-legacy-list-horizontal .wpml-ls-item.wpml-ls-first-item {
        border-right: 1px solid #000;
    }

    #navbar.show .dropdown-menu {
        display: block;
        border: 0;
        text-align: center;
    }

    .texto-img .titulo-imagen {
        font-size: 3rem;
    }

    .custom-icon {
        visibility: hidden;
    }
}

@media (max-width: 991px) {
    .bg-app {
        padding-top: 35% !important;
        margin-top: 10% !important;
    }

    .bg-app .img-app {
        top: -100%;
        left: 5%;
        width: 90%;
        height: 100%;
    }

    .bg-app ul {
        padding-left: 0 !important;
        list-style: none;
    }

    .logo-tp-fondo-right {
        opacity: 0;
        display: none;
    }



    #mapa-carousel .owl-nav {
        display: none;
    }

}

@media (max-width: 768px) {
    .texto-img .content-text {
        font-size: 1rem;
    }

    .imagen-container {
        min-height: 300px;
    }

    .titulo-imagen {
        bottom: 1.5rem;
        left: 1.5rem;
        font-size: 2.5rem;
        max-width: 70%;
    }

    .hero-video-section {
        min-height: 100vh;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .btn-hero {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .review-item {
        padding: 1.5rem;
        margin: 0 10px;
        min-height: 250px;
    }

    .review-content div.h3 {
        font-size: 1.3rem !important;
    }

    .review-content p {
        font-size: 0.9rem;
    }

    .banner-cta h2.sedgwick {
        font-size: 3rem;
    }

    .prueba-gratis .content-prueba-gratis {
        padding: 30px 20px;
    }

    .prueba-gratis .wpcf7-form input,
    .prueba-gratis .wpcf7-form textarea,
    .prueba-gratis .wpcf7-form select {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .imagen-container {
        min-height: 250px;
    }

    .titulo-imagen {
        bottom: 1rem;
        left: 1rem;
        font-size: 2rem;
        max-width: 80%;
    }

    .bg-app {
        padding-top: 46% !important;
        margin-top: 37% !important;
    }


}