/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --naranja: #FF6539;
  --gris-oscuro: #4D4D4D;
  --gris-claro: #DEDEDE;
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(220, 8%, 6%);
  --body-color: hsl(220, 8%, 99%);
  --container-color: hsl(220, 8%, 96%);

  --opacity-color-30: hsla(0, 0%, 90%, .3);
  --opacity-color-20: hsla(0, 0%, 90%, .2);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --second-font: "Dancing Script", cursive;
  --biggest-font-size: 3rem;
  --big-font-size: 1.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 6rem;
    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

input,
button,
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--gris-oscuro);
  transition: background-color .4s;
}

input,
button {
  outline: none;
  border: none;
}

h1, h2, h3, h4 {
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== THEME ===============*/
/*========== Variables Dark theme ==========*/


/*========== 
	Color changes in some parts of 
	the website, in dark theme
==========*/


/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}
.section__title {
  font-size: var(--big-font-size);
  color: var(--naranja);
  text-align: center;
  margin-bottom: 2rem;
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--white-color);
  z-index: var(--z-fixed);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: background-color .4s, box-shadow .4s;
}

.nav{
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__logo{
  display: flex;
  align-items: center;
  column-gap: .75rem;
  text-decoration: none;
  transition: transform .3s;
}

.nav__logo:hover{
  transform: scale(1.02);
}

.nav__logo-icon{
  background-color: var(--naranja);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.2rem;
}

.nav__logo-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Para desktop */
@media screen and (min-width: 1150px){
  .nav__logo-icon{
    width: 45px;
    height: 45px;
  }
  
  .nav__logo-img {
    width: 26px;
    height: 26px;
  }
}

.nav__logo-text{
  font-size: 1.1rem;
  font-weight: var(--font-bold);
  color: var(--black-color);
  letter-spacing: 0.5px;
}

.nav__logo-highlight{
  color: var(--naranja);
}

.nav__toggle,
.nav__close{
  display: inline-flex;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--naranja);
  transition: color .4s;
}

.nav__buttons{
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.nav__btn-location{
  background-color: var(--naranja);
  color: var(--white-color);
  padding: 0.7rem 1.8rem;
  border-radius: 2rem;
  font-weight: var(--font-semi-bold);
  font-size: 0.95rem;
  transition: all .3s;
  text-decoration: none;
  white-space: nowrap;
}

.nav__btn-location:hover{
  background-color: #e55528;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 101, 57, 0.3);
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px){
  .nav__menu{
    position: fixed;
    top: -120%;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 4px 16px hsla(218, 68%, 18%, .1);
    padding-block: 5rem 3rem;
    transition: top .4s;
  }
  
  .nav__btn-location{
    font-size: 0.875rem;
    padding: 0.6rem 1.5rem;
  }
}

.nav__list{
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.nav__link{
  position: relative;
  font-weight: var(--font-semi-bold);
  color: var(--black-color);
  font-size: 1rem;
  transition: color .3s;
}

.nav__link:hover{
  color: var(--naranja);
}

.nav__link::after{
  content: '';
  width: 0%;
  height: 2px;
  background-color: var(--naranja);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -.5rem;
  transition: width .3s;
}

.nav__link:hover::after{
  width: 60%;
}

.nav__close{
  color: var(--naranja);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

/* Show menu */
.show-menu{
  top: 0;
}

/* Desktop Navigation */
@media screen and (min-width: 1150px){
  .nav{
    height: 4.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 3rem;
    padding: 0 2rem;
  }

  .nav__menu{
    justify-self: center;
  }

  .nav__list{
    flex-direction: row;
    column-gap: 3rem;
  }

  .nav__toggle,
  .nav__close{
    display: none;
  }
  
  .nav__logo-icon{
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .nav__logo-text{
    font-size: 1.15rem;
  }
  
  .nav__btn-location{
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}

@media screen and (min-width: 1400px){
  .nav{
    max-width: 1400px;
  }
}


/* Change background header */


/* Active link */


/*=============== HOME ===============*/
.home{
  position: relative;
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: var(--white-color)
}

.home__container{
  display: grid;
  gap: 3rem;
  align-items: center;
}

.home__data{
  text-align: left;
  padding-left: 2rem;
}

.home__subtitle{
  display: inline-block;
  background-color: #FFE5DC;
  color: var(--naranja);
  padding: 0.6rem 1.8rem;
  border-radius: 3rem;
  font-size: 0.9rem;
  font-weight: var(--font-medium);
  margin-bottom: 1.5rem;
}

.home__title{
  font-size: 3rem;
  font-weight: var(--font-bold);
  line-height: 1.2;
  color: var(--black-color);
  margin-bottom: 1.5rem;
}

.home__title-highlight{
  color: var(--naranja);
}

.home__description{
  color: #7A7A7A;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 420px;
}

.home__image{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home__image img{
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Button */
.button{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: .5rem;
  color: var(--white-color);
  background-color: var(--naranja);
  padding: 1rem 2.5rem;
  font-weight: var(--font-semi-bold);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 3rem;
  transition: all .3s;
}

.button i{
  font-weight: initial;
  font-size: 1.3rem;
  transition: transform .4s;
}

.button:hover{
  background-color: #e55528;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 101, 57, 0.3);
}

.button:hover i{
  transform: translateX(.5rem);
}

/* Responsive Design para Home */
@media screen and (max-width: 768px) {
  .home{
    padding-top: 5rem;
  }
  
  .home__container{
    gap: 2.5rem;
  }
  
  .home__data{
    text-align: center;
    padding-left: 0;
  }
  
  .home__title{
    font-size: 2.2rem;
  }
  
  .home__description{
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
  }
  
  .home__subtitle{
    margin-bottom: 1rem;
  }
  
  .home__image img{
    max-width: 100%;
  }
}

@media screen and (min-width: 1150px) {
  .home{
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
  
  .home__container{
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding-left: 3rem;
  }
  
  .home__data{
    text-align: left;
    padding-left: 4rem;
  }
  
  .home__title{
    font-size: 3.5rem;
    margin-bottom: 1.8rem;
  }
  
  .home__description{
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 450px;
  }
  
  .home__subtitle{
    font-size: 1rem;
    padding: 0.65rem 2rem;
  }
  
  .home__image{
    justify-content: flex-end;
  }
  
  .home__image img{
    max-width: 550px;
    border-radius: 2rem;
  }
}

@media screen and (min-width: 1400px) {
  .home__container{
    max-width: 1300px;
    gap: 6rem;
    padding-left: 4rem;
  }
  
  .home__data{
    padding-left: 5rem;
  }
  
  .home__title{
    font-size: 4rem;
  }
  
  .home__image img{
    max-width: 600px;
  }
}


/*=============== BUTTON ===============*/
.button{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: .5rem;
  color: var(--white-color);
  background-color: var(--naranja);
  padding: 1rem 2rem;
  font-weight: var(--font-semi-bold);
  border-radius: 15rem;
  transition: background-color .4s;
}

.button i{
  font-weight: initial;
  font-size: 1.5rem;
  transition: transform .4s;
}

.button:hover i{
  transform: translateX(.5rem);
}

/*=============== DESTINATION ===============*/


/*=============== TESTIMONIAL ===============*/


/* Swiper class */


/*=============== GALLERY ===============*/


/*=============== JOIN ===============*/


/*=============== FOOTER ===============*/


/*=============== SCROLL BAR ===============*/


/*=============== SCROLL UP ===============*/


/* Show Scroll Up */


/*=============== BREAKPOINTS ===============*/
/* For small devices */


/* For medium devices */


/* For large devices */


/* For 2K resolutions (2048 x 1152, 2048 x 1536) */


@media screen and (min-width: 1150px){
  .nav{
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .nav__menu{
    position: static;
    justify-self: center;
  }

  .nav__list{
    flex-direction: row;
    column-gap: 3rem;
    text-align: center;
  }

  .nav__toggle,
  .nav__close{
    display: none;
  }
}


/* About Section */
.about {
    padding: 4rem 0;
    background-color: #fff;
}

.about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about__content {
    text-align: center;
    margin-bottom: 3rem;
}

.about__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.about__highlight {
    color: #ff5722;
}

.about__description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

/* About Images Layout */
.about__images {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.about__image-main {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about__image-main img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

.about__image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about__image-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.about__image-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    min-height: 250px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }
    
    .about__title {
        font-size: 2rem;
    }
    
    .about__description {
        font-size: 0.95rem;
    }
    
    .about__image-grid {
        grid-template-columns: 1fr;
    }
    
    .about__image-main img {
        max-height: 300px;
    }
    
    .about__image-item img {
        min-height: 200px;
    }
}

@media screen and (max-width: 480px) {
    .about {
        padding: 2rem 0;
    }
    
    .about__container {
        padding: 0 1rem;
    }
    
    .about__title {
        font-size: 1.75rem;
    }
    
    .about__content {
        margin-bottom: 2rem;
    }
    
    .about__images {
        gap: 1rem;
    }
    
    .about__image-grid {
        gap: 1rem;
    }
    
    .about__image-main img {
        max-height: 250px;
    }
}

/*=============== SCROLL REVEAL ANIMATIONS ===============*/
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* Animación específica para el contenido de About */
.about__content.reveal {
  transform: translateY(30px);
}

.about__content.reveal-active {
  transform: translateY(0);
}

/* Animación para la imagen principal */
.about__image-main.reveal {
  transform: scale(0.95) translateY(30px);
  transition-delay: 0.2s;
}

.about__image-main.reveal-active {
  transform: scale(1) translateY(0);
}

/* Animación para las imágenes del grid */
.about__image-item.reveal {
  transform: translateY(40px);
  opacity: 0;
}

.about__image-item:nth-child(1).reveal {
  transition-delay: 0.3s;
}

.about__image-item:nth-child(2).reveal {
  transition-delay: 0.4s;
}

.about__image-item.reveal-active {
  transform: translateY(0);
  opacity: 1;
}

/* Animación para el título */
.about__title {
  display: inline-block;
}

.about__content.reveal-active .about__title {
  animation: fadeInUp 0.8s ease-out;
}

.about__content.reveal-active .about__description {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Efecto hover mejorado para las imágenes */
.about__image-main:hover img,
.about__image-item:hover img {
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

.about__image-main img,
.about__image-item img {
  transition: transform 0.5s ease;
}


/*=============== MARCAS ===============*/
.marcas {
    background-color: #f8f8f8;
}

.marcas__container {
    padding-bottom: 4rem;
    row-gap: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.marcas__content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marcas__data {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

.marcas .section__title {
    color: var(--black-color);
    font-weight: var(--font-semi-bold);
    line-height: 1.3;
    text-align: center;
    display: block;
}

.marcas .section__title .title-part-black {
    color: var(--black-color);
    font-weight: var(--font-semi-bold);
    display: inline;
}

.marcas .section__title .title-part-orange {
    color: var(--naranja);
    font-weight: var(--font-semi-bold);
    display: inline;
}

.marcas .section__title span {
    color: var(--naranja);
    font-weight: var(--font-semi-bold);
    display: inline;
}

.marcas__card {
    width: 304px;
    background-color: var(--body-color);
    border-radius: 1rem;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.marcas__heading {
    background-color: var(--white-color);
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem 1rem 0 0;
    min-height: 200px;
}

.marcas__img {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.marcas__info {
    background-color: var(--naranja);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    border-radius: 0 0 1rem 1rem;
}

.marcas__info--green {
    background-color: #7FA54D;
}

.marcas__name {
    font-size: var(--h3-font-size);
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    text-align: left;
}

.marcas__link {
    display: flex;
    column-gap: 0.25rem;
    font-size: var(--small-font-size);
    color: var(--white-color);
    align-items: center;
    font-weight: var(--font-semi-bold);
    white-space: nowrap;
}

.marcas__link i {
    font-size: 1rem;
    transition: transform 0.4s;
}

.marcas__link:hover i {
    transform: translateX(0.25rem);
}

/* Swiper class */
.marcas__swiper {
    width: 320px;
    overflow: visible;
    padding-block: 2rem 5rem;
    margin-left: auto;
    margin-right: auto;
}

.marcas .swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 2rem;
    text-align: center;
}

.marcas .swiper-pagination-bullet {
    background-color: var(--gris-claro);
    opacity: 1;
}

.marcas .swiper-pagination-bullet-active {
    background-color: var(--naranja);
}

/* Responsive */
@media screen and (min-width: 768px) {
    .marcas__swiper {
        width: 650px;
    }
}

@media screen and (min-width: 1024px) {
    .section__title {
        font-size: 2.5rem;
    }
    
    .marcas__swiper {
        width: 600px;
    }
    
    .marcas__card {
        width: 280px;
    }
    
    .marcas__heading {
        min-height: 180px;
        padding: 1.5rem 1rem;
    }
    
    .marcas__img {
        max-width: 160px;
    }
    
    .marcas__name {
        font-size: var(--h3-font-size);
    }
}
/*=============== SERVICES ===============*/
.services {
    background-color: #FAFAFA;
    padding: 5rem 0;
}

.services__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.services__header {
    text-align: center;
    margin-bottom: 4rem;
}

.services .section__title {
    color: var(--black-color);
    font-weight: var(--font-semi-bold);
    font-size: var(--big-font-size);
}

.services .section__title span {
    color: var(--naranja);
}

.services__subtitle {
    color: #6B7280;
    font-size: 1rem;
    margin-top: 1rem;
}

.services__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

/* Imagen */
.services__image {
    width: 100%;
}

.services__img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    object-fit: cover;
}

/* Lista de servicios */
.services__list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.services__icon {
    font-size: 1.5rem;
    color: var(--naranja);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.services__item-title {
    font-size: 1.1rem;
    font-weight: var(--font-semi-bold);
    color: var(--black-color);
    line-height: 1.5;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .services {
        padding: 3rem 0;
    }

    .services__header {
        margin-bottom: 2.5rem;
    }

    .services__list {
        gap: 1.5rem;
    }

    .services__item-title {
        font-size: 1rem;
    }
}

@media screen and (min-width: 1024px) {
    .services .section__title {
        font-size: 2.5rem;
    }

    .services__content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .services__header {
        margin-bottom: 5rem;
    }

    .services__list {
        gap: 2.5rem;
    }

    .services__item-title {
        font-size: 1.25rem;
    }
}


/*=============== FOOTER ===============*/
.footer {
    background-color: #F5F5F5;
    padding-top: 4rem;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

/* Contenido izquierdo */
.footer__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__brand {
    margin-bottom: 0.5rem;
}

.footer__title {
    font-size: 1.25rem;
    font-weight: var(--font-bold);
    color: var(--black-color);
}

.footer__title span {
    color: var(--naranja);
}

.footer__description {
    color: #9CA3AF;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--black-color);
    color: var(--white-color);
    border-radius: 0.5rem;
    font-size: 1.5rem;
    transition: background-color 0.3s;
}

.footer__social-link:hover {
    background-color: var(--naranja);
}

/* Métodos de pago */
.footer__payment {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.footer__payment-title {
    font-size: 1rem;
    font-weight: var(--font-semi-bold);
    color: var(--black-color);
}

.footer__payment-methods {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer__payment-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

/* Ajuste específico para SINPE */
.footer__payment-img--sinpe {
    height: 50px;
}

/* Copyright */
.footer__copy {
    border-top: 1px solid #E5E7EB;
    padding: 1.5rem;
    text-align: center;
}

.footer__copy-text {
    color: #9CA3AF;
    font-size: 0.875rem;
}

/* Responsive */
@media screen and (min-width: 768px) {
    .footer__container {
        grid-template-columns: 2fr 1fr;
        align-items: start;
    }

    .footer__payment {
        align-items: flex-end;
        text-align: right;
    }

    .footer__payment-methods {
        justify-content: flex-end;
    }
}

@media screen and (min-width: 1024px) {
    .footer {
        padding-top: 5rem;
    }

    .footer__container {
        padding-bottom: 4rem;
    }

    .footer__title {
        font-size: 1.5rem;
    }

    .footer__description {
        font-size: 1rem;
    }

    .footer__payment-img {
        height: 40px;
    }

    /* Ajuste de SINPE en pantallas grandes */
    .footer__payment-img--sinpe {
        height: 55px;
    }
}