@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-color: #F9F9F9;
    --second-bg-color: #37b3f9;
    --text-color: #4E4C4C;
    --main-color: #37b3f9;

    --bg-services-color: #F9F9F9;
    --bg-services-box-color: #FFFFFF;
    --bg-creditcards-color: #EBF8FF;
}

.grid-css {
    display: none;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    /* background: var(--bg-color); */
    color: var(--text-color);
    overflow-x: hidden;
}

section {
    min-height: 100vh;
    padding: 8rem 9% 2rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: var(--second-bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header.sticky {
    border-bottom: .1rem solid rgba(0, 0, 0, .2);
}

.logo {
    font-size: 2.5rem;
    color: var(--bg-color);
    font-weight: 600;
    cursor: default;
}

.navbar a {
    font-size: 1.7rem;
    color: var(--bg-color);
    margin-left: 4rem;
    transition: .3s;
}

.navbar a:hover,
.navbar a.active {
    color: var(--text-color);
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--text-color);
    display: none;
}

.home {
    background-image: url("../images/home.png");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: left;
    align-items: center;
}

/* .home-img img {
    width: 35vw;
    animation: floatImage 4s ease-in-out infinite;
} */

@keyframes floatImage {
    0% {
        transform:  translateY(0);
    }
    50% {
        transform:  translateY(-2.4rem);
    }
    100% {
        transform:  translateY(0);
    }
}

.home-content h3 {
    font-size: 3.2rem;
    font-weight: 700;
}

.home-content h3:nth-last-of-type(1) {
    margin-bottom: 5rem;
}

span {
    color: var(--main-color);
}

.home-content h1 {
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.home-content p {
    font-size: 1.6rem;
}

.social-media a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: transparent;
    border: .2rem solid var(--main-color);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--main-color);
    margin: 3rem 1.5rem 3rem 0;
    transition: .5s ease;
}

.social-media a:hover {
    background: var(--main-color);
    color: var(--second-bg-color);
    box-shadow: 0 0 1rem var(--main-color);

}

.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background-color: var(--main-color);
    border-radius: 4rem;
    box-shadow: 0 0 1rem var(--main-color);
    font-size: 2rem;
    color: var(--bg-color);
    letter-spacing: .1rem;
    font-weight: 600;
    transition: .5s ease;
}

.btn:hover {
    box-shadow: none;
}

/* design about */

/* .grid > div {
    background: #ecf0f1;
} */

.grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1em;
    grid-auto-rows: minmax(50px, auto);
    align-items: stretch;
}

.element1 {
    grid-column: 1/4;
}

.element2 {
    grid-column: 4/7;
}

.element3 {
    grid-column: 1/3;
}

.element4 {
    grid-column: 3/5;
    grid-row: 2/4;
}

.element5 {
    grid-column: 5/7;
}

.element6 {
    grid-column: 1/3;
}

.element7 {
    grid-column: 5/7;
}


/* - - - - - */

/* .about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: var(--bg-services-color);
} */

.about-img img {
    width: 40vw;
    border-radius: 2rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.2);
}

.about--img img {
    width: 26.3vw;
    border-radius: 2rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.2);
}

.heading {
    text-align: center;
    font-size: 4.5rem;
}

.about-content h2 {
    text-align: left;
    line-height: 1.2;
}

.about-content h3 {
    font-size: 2.6rem;
}

.about-content p {
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
}

/* design services */

.services h2 {
    margin-bottom: 4rem;
    margin-top: -5rem;
}

.services {
    /* width: 80vw; */
    /* height: auto;
    margin: auto; */
    overflow: hidden;
    background-color: var(--bg-services-color);
    margin-bottom: -25vw;
}

.services .services-container {
    justify-content: center;
    align-items: center;
    display: flex;
    animation: scroll 40s linear infinite;
    -webkit-animation: scroll 40s linear infinite;
    width: calc(250px * 14);
}

/* .services .services-box {
     width: 800px; 
    height: 150px;
} */

/* .services-container {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
} */

.services .services-box {
    width: 500px;
}

.services-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Centra verticalmente el contenido */
}

.services-container .services-box {
    height: 9vw;
    background-color: var(--bg-services-box-color);
    padding: 1rem 0 1rem;
    margin: .5rem .5rem -10rem;
    border-radius: 2rem;

    text-align: center;
    border: .2rem solid var(--bg-services-box-color);
    transition: .5s ease;
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-400px * 7));
        transform: translateX(calc(-400px * 7));
    }
}

.services-container .services-box:hover {
    border-color: var(--main-color);
    transform: scale(1.02);
}

.services-box h3 {
    font-size: 1.6rem;
    margin: 0 0 0;
}

.services-box p {
    font-size: 1.4rem;
    margin: 1rem 0 1rem;
}

/* design creditcards */

.creditcards h2 {
    margin-bottom: 4rem;
    margin-top: -2rem;
}

.creditcards {
    /* width: 80vw; */
    /* height: auto;
    margin: auto; */
    overflow: hidden;
    background-color: var(--bg-creditcards-color);
    margin-bottom: -20vw;
}

.creditcards .creditcards-container {
    justify-content: center;
    align-items: center;
    display: flex;
    animation: scrolll 40s linear infinite;
    -webkit-animation: scrolll 40s linear infinite;
    width: calc(250px * 14);
}

/* .services .services-box {
     width: 800px; 
    height: 150px;
} */

/* .services-container {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
} */

/* .services .services-box {
    width: 400px;
} */

.creditcards-container .creditcards-box {
    /* height: 10vw; */
    /* background-color: var(--bg-services-box-color); */
    /* padding: 1rem 2rem 1rem; */
    margin: .5rem .5rem -10rem;
    border-radius: 2rem;

    /* text-align: center; */
    /* border: .2rem solid var(--bg-services-box-color); */
    transition: .5s ease;
}

.creditcards-box img {
    height: 10vw;
    width: 15vw;
}

.remove-bg {
    filter: brightness(1.1);
    mix-blend-mode: multiply;
}

@keyframes scrolll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-400px * 7));
        transform: translateX(calc(-400px * 7));
    }
}

.creditcards-container .creditcards-box:hover {
    /* border-color: var(--main-color); */
    transform: scale(1.02);
}

/* .creditcards-box i {
    font-size: 7rem;
    color: var(--main-color);
}

.creditcards-box h3 {
    font-size: 1.6rem;
    margin: 0 0 0;
}

.creditcards-box p {
    font-size: 1.4rem;
    margin: 1rem 0 1rem;
} */


/* design about */

.nosotros {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: var(--bg-color);
}

.nosotros-img img {
    width: 35vw;
}

.heading {
    text-align: center;
    font-size: 4.5rem;
}

.nosotros-content h2 {
    text-align: left;
    line-height: 1.2;
}

.nosotros-content h3 {
    font-size: 2.6rem;
}

.nosotros-content p {
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
}

.nosotros-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.nosotros-container .nosotros-box {
    /* flex: 1 1 10rem; */
    width: 17rem;
    height: 8rem;
    display: flex;
    margin: 3rem 0 3rem;
    /* background-color: var(--second-bg-color); */
    padding: 1rem 1rem 1rem;
    border-radius: 1rem;
    text-align: center;
    align-items: center;
    border: .1rem solid var(--main-color);
    transition: .5s ease;
}

.nosotros-container .nosotros-box:hover {
    border-color: var(--main-color);
    transform: scale(1.02);
}

.nosotros-box i {
    font-size: 5rem;
    color: var(--main-color);
}

.nosotros-box h4 {
    font-size: 1.4rem;
    color: var(--main-color);
    font-weight: 400;
}

/* design banner */

.banner {
    display: flex;
    justify-content: center;
    align-items: top;
    background: var(--bg-color);
    margin-bottom: -300px;
}

.banner-container {
    height: 12vw;
    width: 80vw;
    display: flex;
    padding: 0 10rem 0;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5rem;
    justify-content: space-between;
    border-radius: 2rem;
    /* border: .1rem solid var(--main-color); */
    background: var(--main-color);
}

.banner-container .pipe {
    font-size: 8rem;
    font-weight: 150;
    color: #fff;
}

.banner-container .banner-box {
    text-align: center;
    align-items: center;
}

.banner-box .number {
    font-size: 5rem;
    font-weight: 500;
    color: #fff;
}

.banner-box p {
    color: #fff;
    font-size: 1.6rem;
}


/* design how it works */

.howitworks {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: var(--bg-creditcards-color);
}

.howitworks .howitworks-content {
    margin-top: -100px;
}

.howitworks-content .heading {
    margin-bottom: 20px;
}

.howitworks .howitworks-container {
    /* margin-top: 40px; */
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
}

.howitworks-container .text-tittle {
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Centra verticalmente el contenido */
    align-items: left; /* Alinea horizontalmente */
    height: 400px; /* Mantiene la altura definida */
    text-align: left; /* Opcional: Centra el texto */
    
}

 .howitworks-container .text-tittle p {
    font-size: 12px;
} 


/* design footer */

.foooter {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px 0 20px;
    /* background: var(--second-bg-color); */
}

.footer-text p {
    font-size: 1.6rem;
    color: var(--bg-color);
}

.footer-iconTop a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .8rem;
    background: var(--bg-color);
    border-radius: .8rem;
    transition: .5s ease;
}

.footer-iconTop a:hover {
    box-shadow: 0 0 1rem var(--bg-color);
}

.footer-iconTop a i {
    font-size: 2.4rem;
    color: var(--text-color);
}


* {
    /* margin: 0;
    padding: 0; */
    box-sizing: border-box; 
    list-style: none;
}

/* body {
    font-family: sans-serif;
    text-transform: capitalize;
} */

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer {
    background-color: var(--main-color);
    padding: 80px 0;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
}

.footer-links {
    width: 20%;
    padding: 0 10px;
}

.footer-links h4 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 500;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-links ul li a {
    font-size: 15px;
    text-decoration: none;
    color: #ffffff;
    display: block;
    margin-bottom: 15px;
    transition: all .3s ease;
}

.footer-links ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

#footer-schedule ul li:nth-child(1) a,
#footer-schedule ul li:nth-child(3) a,
#footer-schedule ul li:nth-child(5) a {
    font-weight: normal;
    margin-bottom: 1px;
}

#footer-schedule ul li:nth-child(2) a,
#footer-schedule ul li:nth-child(4) a,
#footer-schedule ul li:nth-child(6) a {
    font-weight: bold;
    /* margin-bottom: 20px; */
}

.social-links a {
    display: inline-block;
    min-height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all .5s ease;
}

.social-links {
    font-size: 18px;
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
}

.social-links a:hover {
    background-color: #bbbbbb;
}

@media (max-width:991px) {
    .footer-row {
        text-align: center;
    }
    .footer-links {
        width: 100%;
        margin-bottom: 30px;
    }
}


@media (max-width: 1200px) {

    html {
        font-size: 55%;
    }

    .header {
        padding: 2rem 3%;
    }

    section {
        width: 100%;
        /* padding: 10rem 3% 2rem; */
    }

    /* # # # # # # # # MENÚ DE OPCIONES # # # # # # # # */
    
    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 3%;
        background: var(--bg-color);
        border-top: .1rem solid rgba(0, 0, 0, .2);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
        display: none;
    }

    .navbar.active {
        display: block;
    }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
        color: var(--text-color);
    }

    /* # # # # # # # # SECTION HOME # # # # # # # # */

    .home {
        flex-direction: column;
        background-image: url("../images/home_1.png");
        width: 100%;
    }

    .home .home-content {
        margin-top: 4rem;
    }

    .home-content h3 {
        font-size:  2.6rem;
        text-align: center;
    }

    .home-content .btn {
        margin-left: 25%;
    }

    .home-content h1 {
        font-size:  5rem;
    }

    .home img {
        width: 100vw;
        margin-top: 4rem;
    }

    /* # # # # # # # # SECTION TESTIMONIOS # # # # # # # # */

    .services {
        margin-bottom: -30vw;
    }

    .services-container .services-box {
        height: 120px;
    }

    /* # # # # # # # # SECTION TESTIMONIOS # # # # # # # # */

    .aboutt {
        margin-bottom: 50px;
    }

    /* # # # # # # # # SECTION TARJETAS # # # # # # # # */

    .creditcards {
        margin-bottom: -300px;
        margin-top: 50px;
    }

    /* # # # # # # # # SECTION ¿CÓMO FUNCIONA? # # # # # # # # */

    .nosotros {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nosotros-content p {
        text-align: justify;
    }

    .nosotros-img {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: -50px; /* Espacio debajo de la imagen */
    }

    .nosotros-img img {
        width: 100%;
        max-width: 500px; /* Ajusta el tamaño máximo de la imagen si es necesario */
        height: auto;
    }

    .nosotros-content {
        text-align: center;
    }

    .nosotros-container {
        order: 1; /* Esto mueve la imagen hacia arriba en la sección */
        display: flex;
        flex-direction: row;
        align-items: center;
    }








}


@media (max-width: 992px) { 

    /* # # # # # # # # SECTION ¿BANNER? # # # # # # # # */

    .howitworks-img {
        display: none;
    }

    .banner-container {
        flex-wrap: nowrap;
        display: flex;
        padding: 0 5rem 0;
    }

    .banner-box .number {
        font-size: 4rem;
        font-weight: 400;
        color: #fff;
    }
    
    .banner-box p {
        color: #fff;
        font-size: 1.6rem;
    }


}

@media (max-width: 768px) { 

    /* # # # # # # # # SECTION ¿BANNER? # # # # # # # # */

    .banner {
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bg-color);
        margin-bottom: auto;
    }

    .banner-container {
        flex-direction: column;
        height: 110vw;
        width: 60vw;
        flex-wrap: nowrap;
        display: flex;
        padding: 0 5rem 0;
        gap: 10px;
    }

    .banner-box {
        margin: 0; /* Elimina cualquier margen adicional */
        padding: 20px; /* Ajusta el espacio interno */
    }

    .banner-container .pipe {
        transform: rotate(90deg);
    }

    .banner-box .number {
        font-size: 4rem;
        font-weight: 400;
        color: #fff;
    }
    
    .banner-box p {
        color: #fff;
        font-size: 1.6rem;
    }

    .pipe p {
        margin: 0;
        height: 1px; /* Ajusta el grosor de la línea */
        display: flex; /* Permite usar flexbox en .pipe */
        justify-content: center; /* Centra horizontalmente el contenido */
        align-items: center; /* Centra verticalmente el contenido */
    }


}

@media (max-width: 600px) { 

    .services {
        margin-bottom: -400px;
    }

    .creditcards-box img {
        height: 100px;
        width: 160px;
    }

    .creditcards .heading {
        margin-bottom: 30vw;
    }

    .creditcards {
        /* width: 80vw; */
        /* height: 10px;
        margin: auto; */
        overflow: hidden;
        background-color: var(--bg-creditcards-color);
        margin-bottom: -50px;
    }

    .creditcards .creditcards-container {
        justify-content: center;
        align-items: center;
        display: flex;
        animation: scrolll 40s linear infinite;
        -webkit-animation: scrolll 40s linear infinite;
        width: calc(250px * 14);
    }

    @keyframes scrolll {
        0% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
        100% {
            -webkit-transform: translateX(calc(-400px * 7));
            transform: translateX(calc(-400px * 7));
        }
    }


    .grid {
        display: none;
    }

    .grid-css {
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about-img img {
        width: 80vw;
    }

}

/* =====================
   HERO SECTION
===================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url("../images/home.png") center / cover no-repeat;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 6rem 1.5rem;
}

.hero-content {
  max-width: 620px;
  color: #fff;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.hero h1 strong {
  font-weight: 700;
}

.hero .highlight {
  color: var(--main-color);
}

.hero-description {
  font-size: 1.6rem;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary {
  background-color: var(--main-color);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

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

.hero-trust {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* =====================
   DESKTOP
===================== */

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4.6rem;
  }

  .hero-description {
    font-size: 1.8rem;
  }

}


/* =====================
   HOW IT WORKS
===================== */

.how-it-works {
  background: var(--bg-creditcards-color);
  padding: 6rem 1.5rem;
}

.how-container {
  max-width: 1100px;
  margin: auto;
}

.how-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.how-header p {
  font-size: 1.6rem;
  margin-top: 1.5rem;
  opacity: 0.9;
}

/* =====================
   STEPS
===================== */

.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.how-step {
  background: #fff;
  border-radius: 1.6rem;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--main-color);
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-step h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.how-step p {
  font-size: 1.5rem;
  line-height: 1.6;
}

/* =====================
   CTA
===================== */

.how-cta {
  text-align: center;
  margin-top: 4rem;
}

/* =====================
   DESKTOP
===================== */

@media (min-width: 768px) {

  .how-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .how-step {
    text-align: left;
  }

  .step-number {
    margin-left: 0;
  }
}



/* =====================
   HOW IT WORKS - METRICS
===================== */

.how-metrics {
  margin: 4rem auto 3rem;
  padding: 3rem 2rem;
  max-width: 900px;

  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;

  background: var(--main-color);
  border-radius: 2.4rem;
  text-align: center;
}

.how-metrics .metric-value {
  display: block;
  font-size: 3.4rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.how-metrics .metric-label {
  display: block;
  font-size: 1.4rem;
  margin-top: 0.5rem;
  color: #fff;
  opacity: 0.9;
}

/* =====================
   DESKTOP
===================== */

@media (min-width: 768px) {
  .how-metrics {
    grid-template-columns: repeat(3, 1fr);
    padding: 4rem 3rem;
  }

  .how-metrics .metric-value {
    font-size: 4.2rem;
  }
}


/* =====================
   ABOUT US
===================== */

.about-us {
  background: var(--bg-color);
  padding: 6rem 1.5rem;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.about-eyebrow {
  display: inline-block;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--main-color);
  margin-bottom: 1rem;
}

.about-description {
  font-size: 1.6rem;
  margin: 2rem 0 3rem;
  line-height: 1.6;
}

/* =====================
   BENEFITS
===================== */

.about-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 2rem;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  font-size: 1.5rem;
}

.benefit i {
  font-size: 2.4rem;
  color: var(--main-color);
}

/* =====================
   IMAGE
===================== */

.about-image {
  overflow: hidden;
  border-bottom-left-radius: 0% 0%;
  border-bottom-right-radius: 30% 30%;
  border-top-left-radius: 30% 30%;
  border-top-right-radius: 0% 0%;
}

.about-image img {
  width: 100%;
  max-width: 480px;
  margin: auto;
  display: block;
}

/* =====================
   DESKTOP
===================== */

@media (min-width: 768px) {
  .about-container {
    grid-template-columns: 1fr 1fr;
  }

  .about-benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}



/* =====================
   FAQS
===================== */

.faqs {
  background: var(--bg-color);
  padding: 6rem 1.5rem;
}

.faqs-container {
  max-width: 900px;
  margin: auto;
}

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

.faqs-header p {
  font-size: 1.6rem;
  margin-top: 1rem;
  opacity: 0.9;
}

/* =====================
   FAQ ITEMS
===================== */

.faqs-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: #fff;
  border-radius: 1.4rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  background: none;
  color: var(--text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question .icon {
  font-size: 2.2rem;
  color: var(--main-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 2rem;
}

.faq-answer p {
  font-size: 1.5rem;
  padding-bottom: 2rem;
  line-height: 1.6;
}

