:root {
    /* Colores */
    --green: #BAFF68;
    --blue: #0190F8;
    --purple: #B963FC;
    --magenta: #F2416B;
    --orange: #F55700;
    --semi-white: #FAFAFA;
    --white: #FEFEFE;
    --black: #2B2B2B;
  
    /* Tipografía */
    --font-family: 'Geist', sans-serif;
  
    /* Tamaños tipográficos */
    --h1-size: 56px;
    --h2-size: 48px;
    --h3-size: 21px;
    --h4-size: 17px;
    --text-size: 28px;
    --nav-item-size: 20px;
  }
  @media (max-width:450px) {
      :root {
      /* Tamaños tipográficos */
      --h1-size: 44px;
      --h2-size: 38px;
      --h3-size: 21px;
      --h4-size: 17px;
      --text-size: 28px;
      --nav-item-size: 20px;
    }
  }
  
  /* Reset */
  html {
    scroll-behavior: smooth !important;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--font-family);
    color: var(--black);
    background-color: #000;
    line-height: 1.2;
    scroll-behavior: smooth;
  }
  
  h1 {
    font-size: var(--h1-size);
    font-weight: 700;
  }
  
  h2 {
    font-size: var(--h2-size);
    font-weight: 700;
  }
  
  h3 {
    font-size: var(--h3-size);
    font-weight: 500;
  }
  
  h4 {
    font-size: var(--h4-size);
    font-weight: 300;
  }
  
  p {
    font-size: var(--text-size);
    font-weight: 400;
  }

  .text-cta {
    background: linear-gradient(90deg, #0090F7 72.59%, #BA62FC 77.15%, #EF406A 81.63%, #F25500 86.19%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .text-white {
    color: var(--white);
  }

  .text-black {
    color: var(--black);
  }

  .text-semiwhite {
    color: var(--semi-white);
  }

  .text-green {
    color: var(--green);
  }
  
  .semi-bold {
    font-weight: 600;
  }

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

  .regular {
    font-weight: 400; 
  }
  .light {
    font-weight: 300;
  }
  /* ---------------- NAVBAR STYLES ---------------- */
  
  #header-main {
    position:fixed;
    width: 100%;
    top: 0;
    padding: 20px 20px;
    z-index: 20;
    margin: auto;
  }
  
  #header-main .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #header-main .navbar {
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6.599999904632568px);
    width: 100%;
    max-width: 960px;
    margin: auto;
    padding: 14px 37px;
  }
  
  #header-main .main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
  }
  
  #header-main a {
    text-decoration: none;
    transition: all ease-in-out 360ms;
  }

  #header-main .logo img {
    width: 100%;
    max-width: 162px;
  }
  
  #header-main .main-menu .item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    z-index: 40;
    padding: 0 0.5rem;
    cursor: pointer;
    color: #fff;
    transition: all ease-in-out 360ms;
  }
  #header-main .main-menu .item:hover {
    background: var(--Gradient-Intelligence, linear-gradient(90deg, #0090F7 25.48%, #BA62FC 50.48%, #EF406A 75%, #F25500 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  }
  
  #header-main .main-menu a {
    color: var(--blue);
    transition: all ease-in-out 360ms;
  }
  
  #header-main .main-menu a.btn-contact {
    padding: 0.8rem 1.5rem;
    color: #fff;
    background-color: var(--green);
    border-radius: 50px;
  }
  
  #header-main .main-menu .item.item-dropdown {
    position: relative;
  }
  
  #header-main .main-menu .item.item-dropdown:before {
    content: "";
    position: absolute;
    background-color: #fff;
    width: calc(100% + 1.25rem);
    height: 3.45rem;
    pointer-events: none;
    left: -10%;
    top: -1rem;
    opacity: 0;
    transition: opacity 0.2s ease-out;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }
  
  #header-main .main-menu .item.item-dropdown.active:before {
    opacity: 1;
    z-index: -1;
  }
  
  #header-main .main-menu .dropdown {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    z-index: 40;
    width: 100%;
    bottom: -10rem;
    border-radius: 1rem;
    border-top-right-radius: 0;
    padding: 2rem 1rem 3rem;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    transition: opacity 0.2s ease-out;
  }
  
  #header-main .main-menu .dropdown.active {
    opacity: 1;
    pointer-events: all;
    z-index: 10;
  }
  
  #header-main #menu-toggler {
    display: none;
    z-index: 9999;
  }
  
  #header-main #menu-toggler .hamburger-inner,
  #header-main #menu-toggler .hamburger-inner:after,
  #header-main #menu-toggler .hamburger-inner:before {
    background-color: #fff;
  }
  
  #header-main .logo {
    position: relative;
    z-index: 500;
  }
  
  /* ---------------- RESPONSIVE NAV ---------------- */
  @media (max-width: 1030px) {
    .br-mobile {display: none;}

    #header-main #menu-toggler {
      display: inline-block;
    }
  
    #header-main .main-menu {
      display: flex;
      position: fixed;
      background-color: #000;
      align-items: center;
      justify-content: center;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      padding: 2rem;
      flex-direction: column;
      z-index: 0;
      opacity: 0;
      pointer-events: none;
      transition: all 0.2s ease-out;
    }
  
    body.nav-open #header-main .main-menu {
      z-index: 90;
      opacity: 1;
      pointer-events: all;
    }
  
    #header-main .main-menu .item {
      font-weight: 500;
      font-size: var(--text-size);
      color: #fff;
    }
  
    #header-main .main-menu .dropdown {
      position: relative;
      flex-direction: column;
      align-items: flex-start;
      bottom: 2rem;
      row-gap: 40px;
    }
  }

  #footer-main {
    width: 100%;
    max-width: 90%;
    margin: auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6.599999904632568px);
    padding: 30px 37px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  #footer-main .footer-navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;    
    color: var(--white);
  }
  #footer-main .footer-navbar .main-menu {
    display: flex;
    gap: 17px;
  }
  #footer-main .footer-navbar .main-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
  }
  #footer-main img {
    width: 100%;
    max-width: 140px;
  }
  .place {
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
  }
  .nav-items, .nav-logo {
    display: flex;
    flex-direction: column;
    gap: 17px;
  }
  .social-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    font-size: 25px;
  }
  .social-menu a {
    color: var(--semi-white);
    text-decoration: none;
    transition: all ease-in 300ms;
  }
  .social-menu a.fb:hover {
    color: var(--blue);
  }
  .social-menu a.ig:hover {
    color: var(--purple);
  }
  .social-menu a.wa:hover {
    color: var(--green);
  }
  .social-menu a.go:hover {
    color: var(--orange);
  }
  .legal {
    font-size: 13px;
    text-align: center;
    padding: 17px 10px;
    color: var(--semi-white);
  }


  /*Main Styles*/
  .btn-whatsapp {
    position: absolute;
    bottom: 35px;
    right: 35px;
    padding: 15px 27px;
    align-items: center;
    gap: 14px;
    display: flex;
    justify-content: space-around;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(9.899999618530273px);
    text-decoration: none;
  }
  .btn-whatsapp div {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
  .btn-whatsapp img {
    width: 100%;
    max-width: 36px;
  }
  main {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .container-hero {
    position: relative;
    padding: 120px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: auto;
    height: 100dvh;
    width: 100%;
  }
  .container-hero .row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 6rem;
  }
  .container-hero h1 {
    text-align: center;
  }
  .container-hero p {
    font-size: var(--text-size);
    text-align: center;
    padding-top: 1rem;
    max-width: 40ch;
  }
  .image-hero {
    max-width: 100%;
    max-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding-top: 32px;
    margin: 0;
  }
  .image-hero img {
    width: 100%;
  }

  /*Apple Products Section*/
  .etiqueta-verde {
    background-color: rgba(235, 255, 195, 0.3);
    color: var(--green);
    border-radius: 50px;
    padding: 5px 17px;
    font-size: 17px;
    font-family: 'Geist', sans-serif;
  }
  .container-apple-products {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
  }
  .row-title-apple-products {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1024px;
    text-align: center;
    gap: 1.25rem;
  }
  .section-products {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 60px;
  }
 .tabs {
    display: flex;
    justify-content: center;
    background: #FEFEFE;
    gap: 10px;
    margin: 2rem auto;
    padding: 10px;
    border-radius: 100px;
    width: fit-content;
  }

  .tab-button {
    padding: 5px 17px;
    color: #7F7F7F;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .tab-button.active {
    background: var(--Gradient-Intelligence, linear-gradient(90deg, #0090F7 25.48%, #BA62FC 50.48%, #EF406A 75%, #F25500 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    background-color: #f4f4f4;
  }

  .products-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 2rem;
    width: 100%;
  }

  .product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 270px;
    height: auto;
  }

  .product-card img {
    width: 100%;
    max-height: 230px;
    object-fit: contain;
  }
  .product-card h3 {
    color: var(--white);
  }
  .product-card p {
    color: var(--white);
  }
  .product-card p.color {
    color: var(--white);
    font-size: 17px;
    font-weight: 300;
  }
  .product-card p.price {
    color: var(--white);
    font-size: 19px;
    font-weight: 600;
  }

  .badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.7rem;
    color: white;
  }
  .badge-purple {
    border-radius: 100px;
    background: rgba(224, 160, 254, 0.30);
    border: 1px solid var(--purple);
    color: var(--purple);
  }
  .badge-orange {
    border-radius: 100px;
    background: rgba(252, 172, 101, 0.30);
    border: 1px solid var(--orange);
    color: var(--orange);
  }
  .badge-green {
    border-radius: 100px;
    background: rgba(235, 255, 195, 0.30);
    border: 1px solid var(--green);
    color: var(--green);
  }
  .badge-magenta {
    border-radius: 100px;
  background: rgba(251, 140, 146, 0.30);
    border: 1px solid var(--magenta);
    color: var(--magenta);
  }

  .btn-card {
    margin-top: 1rem;
    display: inline-block;
    background: var(--green);
    color: var(--black);
    padding: 5px 17px;
    border-radius: 999px;
    text-decoration: none;
    transition: all ease 360ms;
  }
  .btn-card:hover {
    font-size: 19px;
  }

  .cta-listado {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-listado {
    background: rgba(186, 255, 104, 0.1);
    border: 1px solid #BAFF68;
    color: #BAFF68;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    width: fit-content;
    transition: all ease-in 360ms;
  }
  .btn-listado i {
    transition: all ease-in 360ms;
  }
  .btn-listado:hover {
    background-color: var(--green);
    color: var(--black);
  }
  .btn-listado:hover i {
    color: var(--black);
  }

  /* Swiper Core Structure */
  .apple-swiper {
    position: relative;
  }
  .swiper {
    overflow: hidden;
    width: 100%;
  }
  .swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 0px;
    padding-bottom: 80px;
    gap: 19px;
  }
  .swiper-pagination-bullet {
    background-color: var(--white);
    opacity: 0.5;
    transition: all 0.3s ease;
  }
  .swiper-pagination-bullet-active {
    background-color: var(--blue); /* o cualquier color de tu marca */
    opacity: 1;
  }

  /*Section Renova tu iPhone*/

  .etiqueta-purple {
    background: rgba(224, 160, 254, 0.30);
    color: var(--purple);
    border-radius: 50px;
    padding: 5px 17px;
    font-size: 17px;
    font-family: 'Geist', sans-serif;
  }
  .renova-tu-iphone {
    background-image: url('img/bg-section-renova-tu-iphone.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
  }
  @media (max-width:834px) {
    .renova-tu-iphone {
      background-image: url('img/bg-section-renova-tu-iphone-tablet.png');
    }
  }
  @media (max-width:450px) {
    .renova-tu-iphone {
      background-image: url('img/bg-section-renova-tu-iphone-mobile.png');
    }
  }
  .row-title-renova-tu-iphone {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 21px;
    padding: 10px;
  }
  .cta-renova {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-renova {
    background: rgba(224, 160, 254, 0.30);
    border: 1px solid var(--purple);
    color: var(--purple);
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    width: fit-content;
    transition: all ease-in-out 360ms;
  }
  .btn-renova:hover {
    background-color: var(--purple);
    color: var(--white);
  }
  .btn-renova i {
    transition: all ease-in-out 360ms;
  }
  .btn-renova:hover i {
    color: var(--white);
  }
  /*Section Accesorios*/
  .etiqueta-orange {
    background: rgba(252, 172, 101, 0.30);
    color: var(--orange);
    border-radius: 50px;
    padding: 5px 17px;
    font-size: 17px;
    font-family: 'Geist', sans-serif;
  }
  .accesorios {
    width: 100%;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
  }
  .row-title-accesorios {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 21px;
    padding: 10px;
  }
  .cta-accesorio {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-accesorio {
    background: rgba(252, 172, 101, 0.30);
    border: 1px solid var(--orange);
    color: var(--orange);
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    width: fit-content;
  }
  .accessories-section {
    width: 100%;
    max-width: 1140px;
    height: 707px;
    margin: auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
  /* Usa el estilo existente de .product-card */
  .accessories-footer {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
  }
  .accessories-text {
    max-width: 50%;
  }
  .accessories-text h2 {
    color: var(--white);
    font-size: var(--h2-size);
    margin-bottom: 1rem;
  }
  .accessories-text p {
    color: var(--semi-white);
    font-size: 17px;
    margin-bottom: 1.5rem;
  }
  .btn-more-accessories {
    background: rgba(245, 87, 0, 0.1);
    border: 1px solid var(--orange);
    color: var(--orange);
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all ease-in-out 360ms;
  }
  .btn-more-accessories:hover {
    background-color: var(--orange);
    color: var(--white);
  }
  .btn-more-accessories i {
    transition: all ease-in-out 360ms;
  } 
  .btn-more-accessories:hover i {
    color: var(--white);
  }
  .accessories-image img {
    max-height: 180px;
    object-fit: contain;
  }

  /*Section Reparaciones*/
  .etiqueta-gris {
    background: rgba(255, 255, 255, 0.30);
    color: var(--semi-white);
    border-radius: 50px;
    padding: 5px 17px;
    font-size: 17px;
    font-family: 'Geist', sans-serif;
  }
  .reparaciones {
    background: linear-gradient(103deg, #0090F7 18.4%, #BA62FC 46.01%, #EF406A 73.08%, #F25500 100.68%);
    width: 100%;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
  }
  .row-title-reparaciones {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 21px;
    padding: 10px;
  }
  .cta-reparacion {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-reparaciones {
    background: rgba(255, 255, 255, 0.30);
    border: 1px solid var(--semi-white);
    color: var(--semi-white);
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    width: fit-content;
    transition: all ease-in-out 360ms;
  }
  .btn-reparaciones i {
    transition: all ease-in-out 360ms;
  }
  .btn-reparaciones:hover {
    background-color: var(--semi-white);
    color: var(--black);
  }
  .btn-reparaciones:hover i {
    color: var(--black);
  }
  .iconos-section {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    gap: 21px;
    text-align: center;
  }
  .item-icono {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0px;
    width: 100%;
    max-width: 180px;
  }
  .item-icono img {
    max-width: 180px;
  }
  @media (max-width:400px) {
    .item-icono {
      max-width: 150px;
    }
    .item-icono p {
      font-size: 21px;
    }
    .item-icono img {
      max-width: 150px;
    }
  }

  /*Section Faqs*/
  .etiqueta-azul {
    background: rgba(101, 206, 253, 0.30);
    color: var(--blue);
    border-radius: 50px;
    padding: 5px 17px;
    font-size: 17px;
    font-family: 'Geist', sans-serif;
  }
  .faqs {
    width: 100%;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
  }
  .row-title-faqs {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 21px;
    padding: 10px;
  }
  .cta-faqs {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-faqs {
    background: rgba(101, 206, 253, 0.30);
    border: 1px solid var(--blue);
    color: var(--blue);
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    width: fit-content;
  }
  .container-faqs {
    width: 100%;
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
  }

  .row-faqs {
    width: 100%;
    max-width: 992px;
    min-width: 300px;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
  }

  .faq-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: var(--h4-size);
    cursor: pointer;
    padding: 0;
  }

  .faq-toggle i {
    font-size: 1.2rem;
  }

  .faq-answer {
    margin-top: 1rem;
    display: none;
    color: var(--semi-white);
    font-size: 17px;
  }
  .faq-toggle.open i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }
  .faq-question {
    text-align: left;
  }
  .by {
    color: var(--white);
    transition: all ease-in-out 460ms;
  }
  .by:hover {
    background: linear-gradient(90deg, #0090F7 72.59%, #BA62FC 77.15%, #EF406A 81.63%, #F25500 86.19%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }


  .cta-laboral {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:16px;
  }





/*Animation Entry Navbar*/
  /* Contact Button Hover */
  #header-main .main-menu a.btn-contact {
    transition: all 0.3s ease;
    color: var(--black);
    width: 100%;
    max-width: fit-content;
  }
  
  #header-main .main-menu a.btn-contact:hover {
    background-color: var(--blue);
    box-shadow: 0 6px 20px rgba(1, 144, 248, 0.25);
    transform: translateY(-2px);
    color: var(--semi-white);
    
  }
  

  @media (max-width:1024px) {
    .btn-whatsapp {
        width: fit-content;
        margin: auto;
        right: 0px;
        left: 0px;
    }
    .container-hero,
    .container-apple-products {
      padding-left: 20px;
      padding-right: 20px;
      padding-top: 100px;
      min-height: 900px;
      height: auto;
    }
    #footer-main .footer-navbar {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        color: var(--white);
    }
    .nav-items, .nav-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 17px;
        justify-content: center;
    }
    #footer-main .footer-navbar .main-menu {
        display: flex;
        flex-direction: column;
        gap: 17px;
        align-items: center;
        justify-content: center;
    }
    .place {
      text-align: center;
    }
    .swiper-wrapper {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        padding-top: 20px;
        padding-bottom: 50px;
        gap: 19px;
    }
    .btn-listado {
        text-align: center;
    }
    .accessories-section {
      width: 100%;
      max-width: 1140px;
      height: auto;
      margin: auto;
      padding: 2rem 10px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .accessories-grid .product-card {
      max-width: 100%;
    }
    .accessories-footer {
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
    }
    .accessories-text {
      max-width: 100%;
    }
    .cta-laboral {
      margin-top: 3rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap:16px;
    }
  }
  @media (max-width:992px) {
    .image-hero {
      max-height: 320px;
    }
  }