@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* ========================= */
/* RESET */
/* ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.close-menu {
  display: none;
}

body {
  background: #f5f5f5;
  color: #111;
  line-height: 1.6;
  padding-top: 80px;
}

#inicio,
#servicios,
#opiniones {
  scroll-margin-top: 120px;
}

#contacto {
  scroll-margin-top: 80px;
}

/* ========================= */
/* NAV */
/* ========================= */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 60px;

  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0px;
  width: 200px;
}

.brand-img {
  height: 90px; 
  width: auto;
  object-fit: contain;
}

.logo img {
  padding-top: 15px;
  width: 275px;
}

.menu {
  display: flex;
  gap: 22px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 8px;
  transition: 0.3s;
}

.menu a:hover {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}

/* ========================= */
/* BOTÓN */
/* ========================= */

.btn {
  background: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 20px;
}

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

.hero {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 80px 60px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;

  border-radius: 30px;

  background:
    radial-gradient(circle at top left, rgba(37, 211, 102, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(0, 150, 255, 0.06), transparent 60%),
    #ffffff;

  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.hero-text {
  flex: 1;
  max-width: 520px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
}

.hero-img {
  position: relative;
  max-width: 520px;
  width: 100%;
}

.hero-slider-wrapper {
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
}

.hero-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.hero-slider img {
  max-height: auto;
  width: 100%;
  flex: 0 0 100%;
}

/* botones */
.hero-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 40px;
  height: 40px;

  border-radius: 50%;
  border: none;
  cursor: pointer;

  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 20px;

  z-index: 10;
}

.hero-btn.left {
  left: 10px;
}

.hero-btn.right {
  right: 10px;
}

.hero-btn:hover {
  background: #25D366;
}

.hero-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 8px;
}

.hero-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: 0.3s;
}

.hero-dots span.active {
  background: #25D366;
}

/* ========================= */
/* SECCIONES (IMPORTANTE) */
/* ========================= */

section {
  width: 100%;
  padding: 100px 60px;
}

section h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

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

/* ========================= */
/* WELCOME (FIX REAL) */
/* ========================= */

.welcome {
  width: 100%;
  margin-top: 80px;
  padding: 40px 20px;

  background: rgba(0, 0, 0, 0.85);
  color: white;
}

.welcome-container {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 60px;
}

.welcome-img {
  flex: 0 0 20%;
  display: flex;
  justify-content: flex-end;
  padding-left: 100px
}

.welcome-img img {
  width: 100%;
  max-width: 250px;
  border-radius: 20px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.35);
  object-fit: cover;
}

.welcome-text {
  flex: 0 0 80%;
  text-align: left;
  padding-right: 200px;
}

.welcome-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.welcome-text p {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 15px;
  line-height: 1.6;
}

.welcome-sub {
  color: #25D366;
  font-weight: 600;
}

.welcome a {
  font-size: 20px;
  margin-left: 15px;
  color: #ccc;
  transition: 0.3s;
}

.welcome a:hover {
  color: #25D366;
  transform: scale(1.2);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

/* CONTENEDOR */
.service-card {
  perspective: 1000px;
}

.service-icon {
  font-size: 100px;
  color: #1ebe5d;
  margin-bottom: 10px;
}

/* INTERIOR */
.card-inner {
  position: relative;
  width: 100%;
  height: 260px;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover .card-inner {
    transform: rotateY(180deg) scale(1.03);
  }
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;

  border-radius: 20px;
   backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  pointer-events: none;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.397);

  
}

.card-front {
  background: linear-gradient(135deg, #d2dddd, #ffffff);
  border: 1px solid rgba(0,0,0,0.08);
}

.card-front h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}

.card-front img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.card-back {
  background: linear-gradient(135deg, #25D366, #1da851);
  color: white;
  transform: rotateY(180deg);
  text-align: center;
  font-size: 0.95rem;
}


/* ========================= */
/* SECTION BOX (TIPO)*/
/* ========================= */

.section-box {
  max-width: 1200px;
  margin: 40px auto;
  margin-top: 80px;
  margin-bottom: 80px;
  padding: 40px 40px;

  background:
    radial-gradient(circle at top left, rgba(37, 211, 102, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(0, 150, 255, 0.06), transparent 60%),
    #ffffff;

  border-radius: 30px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* ========================= */
/* WHATSAPP */
/* ========================= */

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 60px;
  height: 60px;

  background: #25D366;
  color: white;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;

  z-index: 1000;
}

.whatsapp-btn img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover img {
  transform: scale(1.2);
}



/* ========================= */
/* REVIEWS SECTION */
/* ========================= */

.reviews-section {
  width: 100%;
  padding-bottom: 40px;
  padding-top: 40px;
  position: relative;

  background:
    radial-gradient(
      circle at center,
      rgba(245, 245, 245, 0.35) 0%,
      rgba(0, 0, 0, 0.35) 60%,
      rgba(0, 0, 0, 0.65) 100%
    ),
    url("../img/fondo.webp");

    background-size: cover;      
    background-position: center 65%;  
    background-repeat: no-repeat;
}

.reviews-title {
  text-align: center;
  margin-bottom: 20px;
}

.reviews-title h2 {
  font-size: 2.4rem;
  color: white;
}

.reviews-title p {
  color: #b3abab;
}

.reviews-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 20px;
  padding-left: 10px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 280px;
  margin: 20px 0px;

  background: #fff;
  padding: 20px;
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  scroll-snap-align: start;

  transform: translateZ(0);

  transition: transform 0.3s ease;
}

.review-card:last-child {
  margin-right: 10px;
}

.review-card:hover {
  transform: scale(1.03);
}

.user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.user-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.name {
  font-weight: 600;
}

.date {
  font-size: 12px;
  color: #888;
}

.stars {
  color: #FFD700;
  font-size: 14px;
  margin-bottom: 8px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-btn {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);

  width: 45px;
  height: 45px;

  border-radius: 50%;
  border: none;
  cursor: pointer;

  background: #8a8787;
  color: white;
  font-size: 22px;

  z-index: 10;

  transition: transform 0.25s ease;
}

.review-btn.left {
  left: calc(50% - 650px);
}

.review-btn.right {
  right: calc(50% - 650px);
}

.review-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

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

.products-grid {
  max-width: 1100px;
  margin: 0px auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  max-width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.product-card p {
  color: #666;
  font-size: 0.9rem;
}

.price {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  color: #000000;
  font-size: 1.2rem;
}

.second-hand {
  padding: 0px 20px;
  padding-bottom: 80px;
  padding-top: 40px;
  background: #f4f6f8;
  text-align: center;
}

.product-card.second {
  position: relative;
  border: 1px solid #e0e0e0;
}

.product-card .badge {
  position: absolute;
  top: 10px;
  right: 10px;

  background: #25D366;
  color: #000;

  padding: 5px 10px;
  border-radius: 10px;
  font-size: 0.7rem;
}

.old-price {
  margin-left: 10px;
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
}

.promo-box {
  max-width: 750px;
  margin: 40px auto;
  padding: 35px 25px;

  background: linear-gradient(135deg, #002F3B, #2E5559);
  color: white;

  border-radius: 20px;
  text-align: center;

  position: relative;

  box-shadow: 0 20px 50px rgba(97, 100, 117, 0);
}

.promo-badge {
  position: absolute;
  top: 15px;
  left: 15px;

  background: #16CEA5;
  color: black;

  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: bold;
}

.promo-desc {
  color: #ccc;
  margin-bottom: 20px;
}

.promo-includes {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;

  margin-bottom: 20px;
}

.promo-includes span {
  background: rgba(255,255,255,0.08);
  padding: 8px 14px;
  border-radius: 10px;
}

.promo-note {
  color: #16CEA5;
  font-weight: 600;
  font-size: 18px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);

  justify-content: center;
  align-items: center;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.contact-section {
  width: 100%;
  padding: 100px 60px;
  position: relative;
  background: url("../img/balconeuropa.webp") center/cover no-repeat;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.contact-container {
  max-width: 1300px;
  margin: 0 auto;

  display: flex;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  color:white;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-align: left;
}

.contact-text {
  color: #c7c3c3;
  margin-bottom: 25px;
  line-height: 1.6;
}

.contact-details p {
  margin-bottom: 10px;
  font-weight: 500;
}

.contact-map {
  flex: 1;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.schedule {
  margin: 25px 0;
}

.day {
  text-align: left;
  margin-bottom: 15px;
}

.day-name {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.day span {
  display: block;
  font-size: 0.95rem;
  color: #ddd;
}

.schedule h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.schedule p {
  margin-bottom: 5px;
  color: #ddd;
  font-size: 0.95rem;
}

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

.footer {
  background: #111;
  color: white;
  padding: 40px 20px 20px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-brand h3 {
  margin-bottom: 5px;
}

.footer-brand p {
  color: #aaa;
  font-size: 0.9rem;
}

.footer-socials a {
  font-size: 20px;
  margin-left: 15px;
  color: #ccc;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #25D366;
  transform: scale(1.2);
}

.footer-bottom {
  max-width: 1100px;
  margin: 30px auto 0;

  display: flex;
  justify-content: space-between;
  align-items: center;

  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;

  font-size: 0.85rem;
  color: #888;
}

.footer-legal a {
  margin-left: 15px;
  text-decoration: none;
  color: #888;
}

.footer-legal a:hover {
  color: white;
}

/* ========================= */
/* REVEAL */
/* ========================= */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}

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

.lang {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
}

.lang span {
  color: #25D366;
  font-weight: 600;
  font-size: 14px;
}

.lang a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.7;
  transition: 0.3s;
}

.lang a:hover {
  opacity: 1;
  color: #25D366;
}

.divider {
  color: rgba(255,255,255,0.4);
}

.brand-slider {
  position: relative;
  max-width: 900px;
  margin: 40px auto;

  display: flex;
  align-items: center;
}


.brands-split {
  display: flex;
  width: 100%;
  padding-top: 0px;
  gap: 40px;

  background: #f5f5f5; 
}

.brands-col {
  flex: 1;
  background: white;

  padding: 30px 20px;
  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.brands-col h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 30px;
}

.brand-viewport {
  overflow: hidden;
  flex: 1;
  padding: 0px;
}

.brand-track {
  display: flex;
  transition: transform 0.5s ease;
}

.brands-text {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  margin: 10px 0 25px;
  line-height: 1.5;
}

.brands-col h3::after, .products-section h2::after, .section-inner h2::after, .second-hand h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;

  margin: 10px auto 0;

  background: linear-gradient(90deg, #25D366, #00c6ff);
  border-radius: 2px;
}

.brand-item {
  flex: 0 0 calc(100% / 6);

  display: flex;
  align-items: center;
  justify-content: center;

  height: 80px;
  box-sizing: border-box;
}

.brand-item img {
  max-height: 150px;
  max-width: 90%;
  object-fit: contain;
}

.brand-track img {
  flex: 0 0 calc(100% / 6);
  height: 150px;
  object-fit: contain;

  padding: 0;          
  margin: 0 8px;       
  box-sizing: border-box;
  
}

.brand-btn {
  width: 40px;
  height: 40px;

  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: white;
  cursor: pointer;
  z-index: 10;
}

.brand-btn:hover {
  background: #25D366;
}

/* ========================= */
/* HAMBURGER */
/* ========================= */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 60px;

  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* IZQUIERDA */
.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* HAMBURGUESA */
.hamburger {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* MENU DESKTOP */
.menu {
  display: flex;
  gap: 22px;
}

/* ========================= */
/* OVERLAY */
/* ========================= */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

@media (max-width: 1280px) {

  .hamburger {
    display: block;
  }

  .menu {
    position: fixed;
    top: 80px;
    left: -280px;

    width: 280px;
    max-height: calc(100vh - 80px);

    background: #111;

    display: flex;
    flex-direction: column;
    gap: 12px;

    padding: 20px;

    transition: 0.3s ease;
    z-index: 999;

    overflow-y: auto;
    border-radius: 0 0 12px 0;
  }

  .menu.active {
    left: 0;
  }

}


@media (max-width: 1024px) {

  /* ========================= */
  /* NAV BAR + MENU */
  /* ========================= */

  nav {
    padding: 0 20px;
    justify-content: space-between;
  }

  .nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .hamburger {
    display: block;
    font-size: 26px;
    color: white;
    cursor: pointer;
  }

  .menu {
    position: fixed;
    top: 80px;
    left: -280px;

    width: 280px;
    max-height: calc(100vh - 80px);

    background: #111;

    display: flex;
    flex-direction: column;
    gap: 12px;

    padding: 20px;

    transition: 0.3s ease;
    z-index: 999;

    overflow-y: auto;
    border-radius: 0 0 12px 0;
  }

  .menu.active {
    left: 0;
  }

  .menu a {
    font-size: 16px;
    padding: 12px;
    color: white;
    text-decoration: none;
  }

  .close-menu {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;

    font-size: 26px;
    color: white;
    cursor: pointer;
  }

  .lang {
    margin-left: auto;
  }

  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* ========================= */
  /* HERO GENERAL */
  /* ========================= */

  .hero {
    flex-direction: column;
    text-align: center;

    padding: 60px 40px;
    gap: 40px;

    margin: 30px auto;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 2.1rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .trust {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-img {
    max-width: 650px;
    width: 100%;
  }

  .hero-slider img {
    height: 320px;
    object-fit: cover;
  }

  /* BOTONES */
  .hero-btn {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  /* ========================= */
  /* WELCOME RESPONSIVE */
  /* ========================= */

  .welcome-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .welcome-img {
    flex: none;
    padding-left: 0;
    justify-content: center;
  }

  .welcome-text {
    flex: none;
    padding-right: 0;
    text-align: center;
  }

  .welcome-text h2 {
    font-size: 2rem;
  }

  .welcome-text p {
    font-size: 1rem;
  }

  /* ========================= */
  /* SERVICES */
  /* ========================= */

  .section-box {
    margin-top: 40px;
    margin-bottom: 30px;
    padding: 30px 25px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-card.flipped .card-inner {
    transform: rotateY(180deg) scale(1.03);
  }

   section h2 {
    font-size: 2rem;
  }

  .brands-col h3 {
    font-size: 1.6rem;
  }

  .card-front h3 {
    font-size: 0.95rem;
  }


  .brands-split {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 20px;
  }

  .brands-col {
    width: 100%;
  }

  .brand-item {
    flex: 0 0 calc(100% / 4);
  }

  .card-inner {
    height: 220px;
  }

  .card-front img {
    height: 110px;
  }

  .card-front h3 {
    font-size: 0.95rem;
    text-align: center;
  }

  .card-back p {
    font-size: 0.85rem;
  }


  /* ========================= */
  /* REVIEWS 1024px FIX FINAL */
  /* ========================= */

  .reviews-section {
    margin-top: 20px;
    padding-top: 40px;
    text-align: center;
  }

  .reviews-title h2 {
    font-size: 1.5rem;
  }

  .reviews-title p {
    font-size: 0.85rem;
    color: #666;
  }

  /* TRACK */
  .reviews-track {
    display: flex;
    
    transition: transform 0.5s ease;
    will-change: transform;
  }

  /* TARJETA */
  .review-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

  .reviews-wrapper {
    max-width: 900px;
  }

  .user {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .user-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    line-height: 1.2;
  }

  .name {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
  }

  .date {
    font-size: 10px;
    color: #888;
    text-align: start;
  }

  /* AVATAR */
  .avatar img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
  }

  /* ESTRELLAS */
  .stars {
    font-size: 12px;
    color: #f5a623;
  }

  /* TEXTO */
  .review-card p {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #555;
  }

  .review-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 32px;
    height: 32px;

    border-radius: 50%;
    border: none;

    background: rgba(0,0,0,0.6);
    color: white;

    cursor: pointer;
    z-index: 10;
  }

  .review-btn.left {
    left: -15px;
  }

  .review-btn.right {
    right: -15px;
  }

  .review-btn:hover {
    background: #25D366;
  }

  /* ========================= */
  /* IGUALAR AMBAS SECCIONES */
  /* ========================= */

  .products-section,
  .second-hand {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  /* ========================= */
  /* 3 COLUMNAS EN TABLET */
  /* ========================= */

  .products-section .products-grid,
  .second-hand .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  /* ========================= */
  /* TARJETAS IGUALES */
  /* ========================= */

  .product-card {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 900px) {

  .brand-img {
    max-height: 100px;
    height: auto;
  }

  .menu {
    gap: 15px;
  }

}

@media (max-width: 768px) {

/* ========================= */
/* NAV BAR + MENU */
/* ========================= */

  nav {
    height: 60px;
    padding: 0 15px;
  }

  .nav-left {
    gap: 10px;
  }

  .logo img {
    width: 140px;
    padding-top: 0;
  }

  .brand-img {
    height: 50px;
  }

  .hamburger {
    font-size: 22px;
  }  


  .lang {
    gap: 5px;
    font-size: 12px;
  }

  .lang span,
  .lang a {
    font-size: 12px;
  }

  .flag {
    width: 16px;
  }

  .menu {
    top: 60px;
    width: 240px;
    max-height: calc(100vh - 60px);
    padding: 15px;
  }

  .menu a {
    font-size: 14px;
    padding: 10px;
  }

  .close-menu {
    font-size: 22px;
  }

  body {
    overflow-x: hidden;
  }

  /* ========================= */
  /* HERO GENERAL */
  /* ========================= */

  .hero {
    flex-direction: column;
    text-align: center;

    padding: 40px 20px;
    gap: 25px;
    margin: 8px auto;
  }

  .hero-img {
    width: 100%;
  }

  .hero-slider-wrapper {
    border-radius: 18px;
  }

  .hero-text {
    padding: 0px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .trust div {
    font-size: 0.9rem;
  }

  .hero-slider img {
    height: 240px;
    object-fit: cover;
  }

  .hero-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .hero-dots {
    margin-top: 10px;
    gap: 6px;
  }

  .hero-dots span {
    width: 8px;
    height: 8px;
  }

  /* ========================= */
  /* WHASTSAPP */
  /* ========================= */

  .whatsapp-btn {
    width: 55px;
    height: 55px;
    bottom: 18px;
    right: 18px;
  }

  .whatsapp-btn img {
    width: 70px;
    height: 70px;
  }

  /* ========================= */
  /* WELCOME RESPONSIVE */
  /* ========================= */

  .welcome {
    padding: 30px 20px;
  }

  .welcome-container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .welcome-img {
    flex: none;
    padding-left: 0;
    justify-content: center;
  }

  .welcome-img img {
    max-width: 200px;
    border-radius: 18px;
  }

  .welcome-text {
    flex: none;
    padding-right: 0;
    text-align: center;
  }

  .welcome-text h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .welcome-text p {
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.6;
  }

  .welcome-sub {
    font-size: 1rem;
  }

  /* ========================= */
  /* SERVICES */
  /* ========================= */

  .section-box {
    margin-top: 25px;
    margin-bottom: 25px;
    padding: 25px 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  section h2 {
    font-size: 1.7rem;
  }

  .brands-col h3 {
    font-size: 1.4rem;
  }

  .card-front h3 {
    font-size: 0.9rem;
  }

  .card-inner {
    height: 200px;
  }

  .card-front img {
    height: 95px;
  }

  .card-back p {
    font-size: 0.8rem;
  }

  /* ========================= */
  /* BRANDS / SLIDERS */
  /* ========================= */

  .brands-split {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 15px;
  }

  .brands-col {
    width: 100%;
  }

  .brand-item {
    flex: 0 0 calc(100% / 4);
  }

  .brand-slider {
    margin: 10px auto 20px;
  }

  .brands-text {
    margin: 10px 0 15px;
  }

  /* ========================= */
  /* REVIEWS */
  /* ========================= */

  .reviews-section {
    margin-top: 15px;
    padding-top: 50px;
  }

  .review-card {
    flex: 0 0 100%;
    max-width: 100%;
  }


   /* ========================= */
  /* IGUALAR SECCIONES VISUALMENTE */
  /* ========================= */

  .products-section,
  .second-hand {
    width: 100%;
    max-width: 100%;
    margin: 50px auto;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .products-section > *,
  .second-hand > * {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* ========================= */
  /* GRID IGUAL */
  /* ========================= */

  .products-section .products-grid,
  .second-hand .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
  }

  /* ========================= */
  /* TARJETAS IGUALES */
  /* ========================= */

  .product-card {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }

  /* ========================= */
  /* CONTACTO LAYOUT */
  /* ========================= */

  .contact-container {
    flex-direction: column;
    gap: 25px;
  }

  .contact-section h2 {
    text-align: center;
  }

  /* IZQUIERDA (INFO) */
  .contact-info {
    width: 100%;
    text-align: center;
  }

  .contact-details {
    align-items: center;
    justify-content: center;
  }

  /* BOTÓN */
  .contact-info .btn {
    display: inline-block;
    margin-top: 15px;
  }

  .schedule span {
    text-align: center;
  }

  /* ========================= */
  /* MAPA ABAJO */
  /* ========================= */

  .contact-map {
    margin-top: 40px;
    width: 100%;
  }

  .contact-map iframe {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 420px) {

  /* ========================= */
  /* NAV BAR + MENU */
  /* ========================= */

  nav {
    padding: 0 10px;
    height: 55px;
  }

  .nav-left {
    gap: 8px;
  }

  .logo img {
    width: 110px;
  }

  .brand-img {
    height: 40px;
  }

  .hamburger {
    font-size: 20px;
  }

  .lang {
    gap: 4px;
    font-size: 11px;
  }

  .lang span,
  .lang a {
    font-size: 11px;
  }

  .flag {
    width: 14px;
  }

  .menu {
    width: 220px;
    top: 55px;
    max-height: calc(100vh - 55px);
    padding: 12px;
  }

  .menu a {
    font-size: 13px;
    padding: 8px;
  }

  .close-menu {
    font-size: 20px;
  }

  /* ========================= */
  /* HERO GENERAL */
  /* ========================= */

  .hero {
    padding: 30px 14px;
    gap: 20px;
    margin: 0px auto;
  }

  .hero-text h1 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .trust {
    gap: 8px;
  }

  .trust div {
    font-size: 0.85rem;
  }

  .hero-slider img {
    height: 200px;
  }

  .hero-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .hero-dots span {
    width: 6px;
    height: 6px;
  }

  /* ========================= */
  /* WHASTSAPP */
  /* ========================= */

  .whatsapp-btn {
    width: 48px;
    height: 48px;
    bottom: 14px;
    right: 14px;
  }

  .whatsapp-btn img {
    width: 60px;
    height: 60px;
  }

  /* ========================= */
  /* WELCOME RESPONSIVE */
  /* ========================= */

  .welcome {
    padding: 30px 15px;
  }

  .welcome-text h2 {
    font-size: 1.6rem;
  }

  .welcome-text p {
    font-size: 0.95rem;
  }

  .welcome-img img {
    max-width: 180px;
  }

  /* ========================= */
  /* SERVICES */
  /* ========================= */

  .section-box {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px 15px;
  }

  .services-grid {
    gap: 15px;
  }

  section h2 {
    font-size: 1.5rem;
  }

  .brands-col h3 {
    font-size: 1.3rem;
  }

  .card-inner {
    height: 180px;
  }

  .card-front img {
    height: 85px;
  }

  .card-front h3 {
    font-size: 0.85rem;
  }

  .card-back p {
    font-size: 0.75rem;
  }

  /* ========================= */
  /* BRANDS */
  /* ========================= */

  .brands-split {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .brand-item {
    flex: 0 0 calc(100% / 3);
  }

  .brand-slider {
    margin: 10px auto 15px;
  }

  .brands-text {
    margin: 10px 0 10px;
    font-size: 0.9rem;
  }

  /* ========================= */
  /* REVIEWS */
  /* ========================= */

  .reviews-section {
    margin-top: 10px;
    padding-top: 40px;
  }

}

