:root {
    --claro: #fafafa;
    --oscuro: #000;
    --subtitulos: #666;
    --primario: #171796;
    --primOscuro: #0b2268;
    --secundario: #FF0403;
    --amarillo: #F4D03F;
    --grisClaro: #F9F5EF;
    --verdeWhatsApp: #33754b;
}
/* GLOBALES */
html {
    font-size: 62.5%;
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    font-size: 16px; /* 1rem = 10px */
    font-family: "Google Sans", sans-serif;
    background-color: var(--claro);
}
img {
    width: 100%;
}
h1, h2, h3 {
    text-align: center;
}
/*DESKTOP*/
h1 {
    font-size: 4rem;
    margin-bottom: 4rem;
}
h2 {
    font-size: 3.5rem;
}
h3 {
    font-size: 2.2rem;
}
h1, h2, h3 {
    line-height: 1.2;
}
/*TABLET*/
@media (max-width: 1199px) {
    h1 {
        font-size: 3.4rem;
    }
    h2 {
        font-size: 2.6rem;
    }
    h3 {
        font-size: 2rem;
    }
    p {
        font-size: 1.5rem;
    }
}
/*MOVIL*/
@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    h3 {
        font-size: 1.8rem;
    }
    p {
        font-size: 1.5rem;
    }

}
a {
    text-decoration: none;
    color: var(--oscuro);
}
/* Utilidades */
.negrita {
    font-weight: bold;
}
.center {
    text-align: center;
}
.espacio-secciones {
    margin-top: 10rem;
}
.line-height {
    line-height: 1.5;
}
.titulo {
    margin-bottom: 0.5rem;
}
.subtitulo {
    font-weight: 400;
    color: var(--subtitulos);
    margin-bottom: 5rem;
}
/* HEADER */
header {
    width: 90%;
    height: 7rem;
    background: var(--claro);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    border-radius: 0 0 1rem 1rem;
    margin: 0 auto;

    box-shadow: 0 6px 18px rgba(0,0,0,0.15);

    position: sticky;
    top: 0;
    z-index: 1000;
}
header {
    transition: box-shadow 0.3s ease;
}
header.scrolled {
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
.logo {
    width: 20rem;
    margin-top: .3rem;
    margin-right: auto;
}
nav .logo {
    display: none;
}
nav ul {
    display: flex;
}
ul {
    list-style-type: none;
}
nav ul li a {
    color: var(--oscuro);
    display: block;
    margin: 0 1rem;
    font-weight: 400;
    padding: 1rem 2rem;
    transition: 0.2s;
    border-radius: 3rem;
    text-decoration: none;
    font-size: 1.8rem;
}
nav ul li a:hover {
    background-color: var(--primOscuro);
    color: var(--claro);
}
.active-nav {
    background: var(--primario);
    color: #fff;
}
.hamburger {
    display: none;
    height: fit-content;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 5px;
    transition: 0.2s;
    margin-left: auto;
}
.hamburger div {
    width: 3rem;
    height: 3px;
    margin: 6px 0;
    background: var(--primOscuro);
}
@media only screen and (max-width: 1100px) {
    header {
        width: 90%;
        padding: 0 2rem;
    }
    nav {
        position: absolute;
        left: -300px;
        top: 0;
        z-index: 999;
        width: 28rem;
        height: 100vh;
        background-color: #fefefe;
        transition: 0.2s;
        box-shadow: 2px 0 20px 0 rgba(0, 0, 0, 0.05);
    }
    #nav--check:checked ~ nav {
        left: 0;
    }
    nav .logo {
        display: block;
        height: 7rem;
        display: flex;
        align-items: center;
        margin-left: 3rem;
    }
    nav ul li a {
        margin-bottom: 5px;
        padding: 1rem 1.5rem;
        border-radius: 5px;
    }
    nav ul {
        display: block;
        padding: 0 2rem;
        margin-top: 3rem;
    }
    .hamburger {
        display: block;
    }
}
/*PRESENTACION NEGOCIO*/
.presentacion {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 120rem;  /* ancho general del layout */
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}
.presentacion h1 {
    max-width: 90rem;  /* el título puede ser amplio */
    margin: 0 auto 2rem auto;
    font-size: 4.4rem;
}
.presentacion p {
    max-width: 65rem;  /* más angosto para mejor lectura */
    margin: 0 auto 1.5rem auto;
    font-size: 1.8rem;
    line-height: 1.6;
}
@media (max-width: 992px) {
    .presentacion h1 {
        font-size: 3.4rem;
    }
    .presentacion p {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .presentacion h1 {
        font-size: 2.8rem;
    }
    .presentacion p {
        font-size: 1.5rem;
    }
}
/* Hero - Typewriter */
.hero {
    margin-top: 3rem;
    margin-bottom: 5rem;
}
.hero__contenido p {
  font-family: Dancing Script;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--primOscuro);
}
#typewriter::after {
  content: "|";
  margin-left: 5px;
  animation: blink 0.8s infinite;
  font-size: inherit;
}
@keyframes blink {
  50% { opacity: 0; }
}
/* BANNER */
.banner {
    height: 58rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.img--slider {
    position: relative;
    width: 110rem;
    height: 58rem;
    margin: 0 1rem 0 1rem;
}
.img--slider .slide {
    z-index: 1;
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
}
.img--slider .slide.active {
    clip-path: circle(150% at 0 50%);
    transition: 1.5s;
    transition-property: clip-path;
}
.img--slider .slide img {
    z-index: 1;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 5px;
    object-fit: cover;
}
.img--slider .navigation {
    z-index: 2;
    position: absolute;
    display: flex;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
}
.img--slider .navigation .navigation__btn {
    background: rgba(245, 148, 148, 0.5);
    width: 1.2rem;
    height: 1.2rem;
    margin: 1rem;
    border-radius: 50%;
    cursor: pointer;
}
.img--slider .navigation .navigation__btn.active {
    background-color: var(--secundario);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.slide picture,
.slide img {
    width: 100%;
    height: 100%;
    display: block;
}
.slide img {
    object-fit: cover;
}
@media (max-width: 820px) {
    .banner {
        height: 45rem;
    }
    .img--slider {
        width: 100%;
        height: 37.5rem;
    }
    .img--slider .navigation {
        bottom: 2rem;
    }
    .img--slider .navigation .navigation__btn {
        width: 1rem;
        height: 1rem;
        margin: .8rem;
    }
}
@media (max-width: 620px) {
    .banner {
        height: auto;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    .img--slider {
        width: 100%;
        aspect-ratio: 4 / 5;
        height: auto;
        position: relative;
    }
     .img--slider .slide {
        clip-path: none;
        opacity: 0;
        transition: opacity 0.6s ease-in-out;
    }
    .img--slider .slide.active {
        opacity: 1;
    }
    .img--slider .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .img--slider .navigation {
        bottom: 2rem;
    }
    .img--slider .navigation .navigation__btn {
        width: .8rem;
        height: .8rem;
        margin: .6rem;
    }
}
@media (max-width: 390px) {
    .img--slider .navigation {
        bottom: 2rem;
    }
}
/*ACTIVATED NUMBER COUNTER*/
.counters {
    padding: 3rem 2rem;
    background: var(--primOscuro);
    color: var(--grisClaro);
    text-align: center;
}
.counters > div {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2rem;
    justify-items: center;
    align-items: center;
}
.counter {
    position: relative;
}
.counter h1 {
    font-size: 6rem;
    margin: 0 0 0.5rem 0;
}
.counter h3 {
    margin: 0;
}
.counter:not(:last-child)::before {
    content: '';
    background: var(--claro);
    position: absolute;
    width: 2px;
    height: 3rem;
    top: 50%;
    transform: translateY(-50%);
    right: -3rem;
}
@media (max-width: 900px) {
    .counters > div {
        grid-template-columns: 1fr;
        row-gap: 5rem;
    }
    .counter:not(:last-child)::before {
        width: 90%;
        height: 2px;
        top: initial;
        right: initial;
        bottom: -3rem;
        left: 50%;
        transform: translateX(-50%);
    }
}
/* OPINIONES Y TESTIMONIOS */
.review {
    display: grid;
    height: 100%;
    place-items: center;
}
.review p {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}
@media (max-width: 480px) {
    .review__descripcion {
        font-size: 1.8rem;
    }
}
.review__contenedor {
    max-width: 125rem;
    margin: auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.review__contenedor .review__box {
    background: var(--claro);
    width: calc(25% - 1rem);
    height: 33rem;
    padding: 2.5rem;
    border-radius: .3rem;
    box-shadow: 0rem .4rem .8rem rgba(0, 0, 0, 0.15);
}
.review__contenedor .review__box i.quote{
    font-size: 2rem;
    padding-bottom: 1rem;
    color: var(--primOscuro);
}
.review__contenedor .review__box p {
    line-height: 1.5;
    font-size: 1.6rem;
}
.review__contenedor .review__box .review__content {
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.review__contenedor .review__box .review__info .name {
    font-size: 1.7rem;
    font-weight: 600;
}
.review__contenedor .review__box .review__info .job {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primOscuro);
}
.review__contenedor .review__box .review__info .stars {
    margin-top: .4rem;
}
.review__box .review__info .stars i {
    color: var(--amarillo);
}
.review__contenedor .review__box .review__content .review__img {
    height: 7.5rem;
    width: 7.5rem;
    padding: .3rem;
    border-radius: 50%;
}
.review__box .review__content .review__img img {
    height: 100%;
    width: 100%;
}
.review__button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background-color: var(--primario);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}
@media (max-width: 1045px) {
    .review__contenedor .review__box {
        width: calc(50% - 1rem);
        margin: 2rem 0;
    }
}
@media (max-width: 702px) {
    .review__contenedor .review__box {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .review__button {
        display: block;
        width: 90%;
        margin: 2rem auto 0 auto;
        padding: 1.2rem;
        font-size: 1.1rem;
    }
}
/* SECTION - METODOS DE PAGO */
.metodos_pago {
    max-width: 115rem;
    margin: 4rem auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.metodos_pago img {
    width: 11rem;
    margin-bottom: 1rem;
}
.metodo-pago {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.metodo-pago p{
    text-align: center;
    font-size: 1.8rem;
    font-weight: 400;
}
@media (max-width: 768px) {
    .metodos_pago {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    .metodos_pago img {
        width: 10rem;
    }
    .metodo-pago p {
        margin-bottom: 2rem;
    }
}
/* SECTION - MARCAS */
.marcas__contenedor {
    max-width: 120rem;
    margin: 0 auto;
    padding: 1rem 2rem;
    text-align: center;
}
/*DESKTOP */
.marcas__slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.marcas__track {
    display: flex;
    gap: 4rem;
    width: max-content;
}
/* Fila 1 → izquierda */
.track1 {
    animation: scrollLeft 40s linear infinite;
    animation-play-state: paused;
}
/* Fila 2 → derecha */
.track2 {
    animation: scrollRight 40s linear infinite;
    animation-play-state: paused;
}
/* Cuando esté activo */
.marcas__slider.activo .marcas__track {
    animation-play-state: running;
}
/* Pausar con hover */
.marcas__slider:hover .marcas__track {
    animation-play-state: paused;
}
.marcas__img {
    width: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .7;
    transition: all .3s ease;
}
.marcas__img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}
@keyframes scrollLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes scrollRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}
@media (max-width: 768px) {
    .marcas__track {
        gap: 2rem;
    }
    .marcas__img {
        width: 85px;
    }
    .track1,
    .track2 {
        animation-duration: 60s;
    }
    .marcas__img:hover {
        transform: none;
    }
}
/* SECTION - UBICACION */
.mapa {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  text-align: center;
}
.mapa .subtitulo{
    margin-bottom: 2rem;
}
.mapa .review__button {
    margin-bottom: 2rem;
}
.mapa-responsive {
  width: 100%;
  max-width: 800px;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  margin: 0 auto 2rem auto; /* centrado */
}
.mapa-responsive iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
/* Desktop */
@media (min-width: 1024px) {
    .mapa-responsive {
        max-width: 1200px;
        height: 62rem;
    }
}
/* Tablet */
@media (min-width: 481px) and (max-width: 768px) {
  .mapa-responsive {
    height: 55rem;
  }
}
/* Móvil */
@media (max-width: 480px) {
  .mapa-responsive {
    height: 40rem;
  }
}
/* FOOTER */
footer {
    text-align: center;
    background-color: var(--primOscuro);
    padding-top: 3rem;
    color: #fefefe;
    width: 100%;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
}

footer img {
    width: 10rem;
}
.footer__iconos {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__iconos a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 10px;
    border: 2px solid white;
    border-radius: 50%;
    transition: all 0.2s ease-in;
}
footer p {
    font-size: 1.7rem;
    color: var(--claro);
    margin-bottom: 1rem;
}
.footer__creditos{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    opacity:.85;
    color: #FBF7F4;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.footer__creditos p{
    font-size: 1.5rem;
}
footer a:not(.footer__creditos a):hover {
    border: 4px solid var(--claro);
}
.footer__creditos img{
    height: 26px;
    width: auto;
    display: block;
    transform: translateY(-5px);
    transition: opacity .25s ease;
}
.footer__creditos img:hover{
    opacity: .7;
}

/*  N O S O T R O S */
.nosotros {
    width: 100%;
    padding: 8rem 0;
    display: flex;
    justify-content: center;
}
.nosotros .nosotros__contenido img {
    width: 100%;
    max-width: 50rem;
    height: auto;
    display: block;
}
.nosotros__contenedor-img {
    background: linear-gradient(to right, rgba(250,250,250,0.8), rgba(250,250,250,0.9)),
                url(/img/logo_simbolo.png);
    background-size: 35rem;
    background-repeat: no-repeat;
    background-position: center;
    padding: 2rem;
}
.nosotros__text {
    width: 67rem;
    max-width: 100%;
    padding: 0 1rem;
    text-align: justify;
    line-height: 1.5;
    margin-bottom: 4.5rem;
    font-weight: 400;
    margin-bottom: 0;
}
.nosotros__text h1 {
    margin-top: 0;
}
.eslogan {
    font-size: 3rem;
    font-family: Dancing Script;
    line-height: 1.2;
    background-color: var(--claro);
}
.nosotros__contenido {
    width: 128rem;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}
@media (max-width: 1024px) {
    .nosotros {
        padding: 8rem 0;
    }
    .nosotros__contenido {
        flex-direction: column;
        gap: 4rem;
        text-align: center;
    }
    .nosotros__contenido img {
        width: 100%;
        max-width: 40rem;
        margin: 0 auto;
    }
    .nosotros__text {
        width: 100%;
        max-width: 100%;
        margin-bottom: 2rem;
        text-align: justify;
    }
    .nosotros__contenedor-img {
        background-size: 28rem;
        padding: 2rem;
        margin-top: 2rem;
    }
}
@media (max-width: 480px) {
    .nosotros__contenedor-img {
        background-size: 20rem;
    }
}
/* Beneficios */
.beneficios {
    width: 100%;
    padding: 0 5%;
    margin-bottom: 10rem;
}
.beneficios h2 {
    margin-bottom: 5rem;
}
.row {
    max-width: 120rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(33.33rem, 1fr));
    grid-gap: 4rem;
}
.beneficio {
    text-align: center;
    padding: 2.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    background: transparent;
    transition: transform 0.5s, background 0.5s;
}
.beneficio p {
    line-height: 1.5;
    font-size: 1.6rem;
    font-weight: 400;
}
.beneficio svg {
    font-size: 4rem;
    margin-bottom: 1rem;
    stroke: var(--primario);
}
.beneficio h3 {
    padding-bottom: 1rem;
}
.beneficio:hover {
    background-color: var(--primOscuro);
    color: var(--claro);
}
.beneficio:hover svg {
    stroke: var(--claro);
}
.beneficio-terminos {
    margin-top: 10rem;
    font-size: 1.4rem;
}
/* PROMOCIONES */
.promociones {
    max-width: 120rem;
    margin:  0 auto;
    padding: 3rem 2rem;
}
.promociones h1 {
    margin-bottom: 3rem;
}
.promociones .promociones__contenedor {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 5rem;
    margin-bottom: 4rem;
}
.promociones .promociones--condiciones {
    font-size: 1.2rem;
    line-height: 1.5;
}
.promociones__contenedor .promociones__card {
    text-align: center;
    padding: 3rem 2rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
}
.promociones__contenedor .promociones__card:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .5);
    transition: .5s;
}
.promociones__contenedor .promociones__card img {
    height: auto;
}
.promociones .promociones__contenedor .promociones__card h3 {
    padding: 2.5rem 0;
    color: var(--primario);
    font-family: 'Lato', sans-serif;
    font-size: 2rem !important;
}
.promociones__boton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem auto 0 auto;
    border: 4px solid var(--verdeWhatsApp);
    background-color: var(--claro);
    padding: 1rem 1.5rem;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.5s, color 0.5s;
    font-weight: 500;
    color: var(--oscuro);
}
.promociones__boton:hover {
    background-color: var(--verdeWhatsApp);
    color: var(--claro);
}
/* Transición del SVG */
.promociones__boton svg {
    transition: stroke 0.5s;
}
/* Cambio de color del icono en hover */
.promociones__boton:hover svg {
    stroke: var(--claro);
}

/* C O N T A C T O */
.contacto {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contacto__contenedor {
    width: 80%;
    padding: 3rem 6rem 4rem 4rem;
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.contacto__contenedor .contacto__contenido {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contacto__contenedor .contacto__contenido .contacto__lado-izq {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    position: relative;
}
.contacto__contenido .contacto__lado-izq::before {
    content: '';
    position: absolute;
    height: 80%;
    width: 2px;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secundario);
}
.contacto__contenido .contacto__lado-izq .detalle {
    margin: 1.4rem;
    text-align: center;
}
.contacto__contenido .contacto__lado-izq .detalle i {
    font-size: 3rem;
    color: var(--primario);
    margin-bottom: 1rem;
}
.contacto__contenido .contacto__lado-izq .detalle .topic {
    font-size: 1.8rem;
    font-weight: 600;
}
.contacto__contenido .contacto__lado-izq .detalle .texto-uno {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--oscuro);
}
.contacto__contenedor .contacto__contenido .contacto__lado-der {
    width: 75%;
    margin-left: 8rem;
}
.contacto__contenido .contacto__lado-der p {
    line-height: 1.5;
    text-align: justify;
    font-weight: 400;
}
.contacto__contenido .contacto__lado-der .topic-text-h1 {
    color: var(--primOscuro);
    margin-bottom: 1.5rem;
}
.contacto__contenido .contacto__lado-der .topic-text {
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--primOscuro);
}
.contacto__lado-der .input-box {
    height: 5rem;
    width: 100%;
    margin: 1.2rem 0;
}
.contacto__lado-der .input-box input, 
.contacto__lado-der .input-box textarea {
    height: 100%;
    width: 100%;
    border: none;
    font-size: 1.6rem;
    border-radius: 6px;
    background-color: #F0F1F8;
    padding: 0 1.5rem;
    resize: none;
}
.contacto__lado-der .input-box textarea {
    padding-top: 1.5rem;
}
.contacto__lado-der .message-box {
    min-height: 11.1rem;
}
.contacto__lado-der .contacto__button {
    text-align: right;
    margin-top: 1rem;
}
.contacto__lado-der .contacto__button input[type="submit"], .review__button {
    color: var(--oscuro);
    background-color: var(--claro);
    font-size: 1.8rem;
    font-weight: 500;
    padding: 1rem 3rem;
    border: 4px solid var(--primOscuro);
    transition: all 0.5s ease;
    cursor: pointer;
}
.recaptcha--responsive {
    display: flex;
    justify-content: flex-end;

}
.contacto__button input[type="submit"]:hover, .review__button:hover{
    border: 4px solid var(--secundario);
}
@media (max-width: 920px ) {
    .contacto__contenedor {
        width: 90%;
        padding: 3rem 3.5rem 4rem 3.5rem;
    }
}
@media (max-width: 768px ) {
    .contacto__contenedor {
        margin: 4rem 0;
        height: 100%;
    }
    .contacto__contenedor .contacto__contenido {
        flex-direction: column-reverse;
    }
    .contacto__contenedor .contacto__contenido .contacto__lado-izq {
        width: 100%;
        flex-direction: column;
        margin-top: 4rem;
        justify-content: center;
        /*flex-wrap: wrap;*/
    }
    .contacto__contenedor .contacto__contenido .contacto__lado-izq::before {
        display: none;
    }
    .contacto__contenedor .contacto__contenido .contacto__lado-der {
        width: 100%;
        margin-left: 0;
    }
    .recaptcha--responsive {
        justify-content: center;
    }
    .contacto__button input[type="submit"] {
        width: 100%;
    }
}

/*S E R V I C I O  A L  C L I E N T E*/
.servicio-cliente h1 {
    margin-top: 7rem;
    margin-left: 3rem;
    margin-right: 3rem;
}
.servicio-cliente img {
    width: 30rem;
    display: block; /* Asegura que la imagen se comporte como un bloque */
    margin: 0 auto; /* Centra horizontalmente la imagen */
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.servicio-cliente__text {
    width: 85rem;
    max-width: 85%;
    text-align: justify;
    line-height: 2.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 auto;
    margin-bottom: 4.5rem;
}