* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    html {
    scroll-behavior: smooth;
    }

    body {
  background: #001929;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

/* HEADER */
.header {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    padding: 0px 20px; /* ESTO */

    background: rgba(15, 15, 15, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;

    z-index: 1000;

    box-shadow:
        0 10px 30px rgba(0,0,0,.25),
        inset 0 1px 1px rgba(255,255,255,.1);

    transition: 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img {
    width: 110px;
    transition: .3s;
    filter:
        drop-shadow(0 2px 6px rgba(255, 255, 255, 0.9))
        drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    animation: giro 6s linear infinite;
}

.logoU img {
    width: 130px;
    transition: .3s;
}

.logoU{
    display: block;
    margin-right: auto;
}

@keyframes giro {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

/* MENÚ */
.menu {
    display: flex;
    gap: 40px;
}

.menu a {
    position: relative;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: .3s;
    padding: 5px 0;
}

/* Línea animada */
.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 3px;
    background: #FBBF24;
    border-radius: 20px;
    transition: .3s;
}

.menu a:hover {
    color: #FBBF24;
    transform: translateY(-2px);
}

.menu a:hover::after {
    width: 100%;
}

/* BOTÓN HAMBURGUESA */
.hamburger {
    display: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
    transition: .3s;
}

.hamburger:hover {
    color: #FBBF24;
}


    /* HERO */
    .hero {
     position: relative;
     min-height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;

     background-image: url("img/fondos/fondo.jpg");
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     }

    .hero-bg {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      top: 0;
      left: 0;
    }

    .hero-overlay {
     position: absolute;
     inset: 0;
     z-index: 1;
     background: linear-gradient(
     to right,
     #000000 35%,
     rgba(255,255,255,0) 70%
    );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      margin-top: 180px;
    }

    .hero-text {
      max-width: 500px;
      margin-top: 100px;
    }

    .hero h1 {
      font-size: 42px;
      color: #505050;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .hero h1 span {
      color: #FBBF24;
    }

    .hero p {
      font-size: 18px;
      color: #afafaf;
      margin-bottom: 25px;
    }

    .btn {
      display: inline-block;
      padding: 12px 25px;
      background: #FBBF24;
      color: white;
      border-radius: 25px;
      text-decoration: none;
      transition: 0.3s;
    }

    .btn:hover {
      background: #b28618;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {

      .hero {
        background-image: url("img/fondos/fondoC.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      .header {
        width: 92%;
        top: 10px;
        z-index: 2002;
    }

    .nav {
        padding: 1px 20px;
    }

    .logo img {
        width: 90px;
        margin-right: -10px;
    }

    .logo{
        margin-left:-50px;
    }

    .logoU img {
        width: 90px;
    }

    .hamburger {
        display: block;
        z-index: 2001;
        position: relative;
    }


    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        z-index: 2000;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1px;

        padding: 90px 20px;

        background: transparent;
        backdrop-filter: none;

        transition: right 0.35s ease;

        z-index: 2000;
    }

    .menu.active {
        right: 0;
    }

    /* 🔲 BOTONES INDIVIDUALES */
    .menu a {
        width: 100%;

        padding: 14px 18px;

        border-radius: 14px;

        background: rgba(0,0,0,1); 
        backdrop-filter: blur(10px);

        color: #fff;
        text-decoration: none;

        font-size: 18px;
        font-weight: 600;

        border: 1px solid rgba(255,255,255,0.08);

        transition: all 0.25s ease;
    }

      .hero h1 {
        font-size: 32px;
        color: #FBBF24;
      }

      .hero h1 span {
        font-size: 34px;
      color: #FBBF24;
      }

      .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: -10;
      background: linear-gradient(
        to right,
        rgba(255,255,255,0.95) 35%,
        rgba(255,255,255,0.6) 55%,
        rgba(255,255,255,0) 100%
      );
    }
    .hero-text {
        justify-content: center;
        text-align: center;
        margin: auto;
        padding: 20px;
    }

     .hero {
    flex-direction: column;
    position: relative;
    height: 100vh; /* Altura completa del dispositivo */
  }

  .hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    margin-left: 0px;
  }

  .hero-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5); /* oscurece el fondo */
}
    }

    @media (max-width: 450px) {
      .hero-text h1 {
        font-size: 24px;
      }
    }






















     


           







.section {
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section4 {
    background-color: #000000;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.grid {
    display: flex;
    justify-content: center;
}

/* CONTENEDOR */
.image-wrapper {
    position: relative;
    width: 100%;
    margin: auto;
    padding: 80px 140px;
}

/* IMÁGENES */
.img1,
.img2 {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.img1 {
    display: block;
}

.img2 {
    position: absolute;
    inset: 120px 180px;
    width: calc(100% - 360px);
    display: none;
}

/* SVG */
.lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.lines line {
    stroke: white;
    stroke-width: 2;
    opacity: 0.5;
}

/* PUNTOS */
.point {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #FBBF24;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px #FBBF24;
    z-index: 10;
}

.point::after {
    content: attr(data-num);
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 15px;
    color: white;
    font-weight: bold;
}

/* CARDS */
.card {
    position: absolute;
    width: 220px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: .3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card h4 {
    font-size: 15px;
    line-height: 1.4;
    margin: 10px 0;
}

.card i {
    font-size: 28px;
    color: #FBBF24;
}

.num {
    color: #FBBF24;
}

.btnC {
    margin-top: 10px;
    background: #FBBF24;
    color: #fff;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 25px;
    transition: .3s;
}

.btnC:hover {
    background: #b28618;
    transform: scale(1.05);
}

/* PUNTOS */
.p1 { top: 35%; left: 56%; }
.p2 { top: 45%; left: 43%; }
.p3 { top: 56%; left: 36%; }
.p4 { top: 50%; left: 60%; }
.p5 { top: 61%; left: 55%; }
.p6 { top: 40%; left: 65%; }

/* CARDS */
.c1 {
    top: 18%;
    left: 5%;
}

.c2 {
    top: 40%;
    left: -5%;
}

.c3 {
    top: 62%;
    left: 5%;
}

.c4 {
    top: 40%;
    right: -5%;
}

.c5 {
    top: 62%;
    right: 5%;
}

.c6 {
    top: 18%;
    right: 5%;
}


/* CELULAR */
@media (max-width: 900px) {

    .image-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 10px;
    }

    .img1 {
        display: none;
    }

    .img2 {
        position: static;
        inset: auto;
        width: 100%;
        display: block;
        grid-column: 1 / -1;
    }

    .lines,
    .point {
        display: none;
    }

    .card {
        position: static;
        width: 100%;
        transform: none;
    }
}

@media (max-width: 400px) {

    .image-wrapper {
      gap: 10px;
    }

    .card {
        padding: 10px;
    }
}















.why {
  background: linear-gradient(to top, #6c6c6c, #6c6c6c);
  padding: 80px 20px;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* TITULO */
.title {
  font-size: 40px;
  color: #FBBF24;
  margin-bottom: 20px;
}

.title span {
  color: #FBBF24;
}

/* LINEA */
.divider {
  width: 80px;
  height: 2px;
  background: #000000;
  margin: 0 auto 50px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* ITEM */
.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  height: 100%;
}

/* ICONO */
.icon {
  font-size: 50px;
  color: #FBBF24;
  margin-bottom: 20px;
}

/* TITULO ITEM */
.why-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #000000;
}

/* TEXTO */
.why-item p {
  color: #afafaf;
  font-size: 15px;
  line-height: 1.6;
}

.btn2 {
  display: inline-block;
  padding: 15px 30px;
  background: #FBBF24;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  animation: flotar 2s ease-in-out infinite;
  margin-top: 60px;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .title {
    font-size: 28px;
  }
}

















.logos-section {
  padding: 60px 20px;
  background: linear-gradient(to top, #6c6c6c, #6c6c6c);
}

.sliderC {
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.slider-trackC {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollLogos 100s linear infinite;
}

/* LOGOS */
.slideC {
  flex: 0 0 auto;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideC img {
  width: 100%;
  object-fit: contain;
  opacity: 0.9;
  transition: 0.3s;
}

.slideC img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.2);
}

/* ANIMACION CONTINUA */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .slideC {
    width: 100px;
  }
}

















/* ===== TESTIMONIOS ===== */

/* Oculto segundo carrusel en desktop */
.track-2 {
  display: none !important;
}

.testimonials-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(to top, #3b3b3b, #6c6c6c);
  overflow: hidden;
}

/* ===== TITULO ===== */
.bg-title {
  font-size: 40px;
  color: #FBBF24;
  margin-bottom: 20px;
  text-align: center;
}

/* ===== SLIDER ===== */
.slider {
  position: relative;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  z-index: 1;
}

/* TRACK (LOOP INFINITO) */
.slider-track {
  display: flex;
  gap: 30px;
  align-items: stretch;
  width: max-content;
  will-change: transform;
  animation: testimonialsLoop 50s linear infinite;
}

/* ANIMACIÓN INFINITA */
@keyframes testimonialsLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== CARD ===== */
.testimonial-card {
  flex: 0 0 300px;
  aspect-ratio: 1 / 1;

  background: #fff;
  padding: 25px;
  border: 2px solid #eaeaea;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
}

/* COMILLAS */
.testimonial-card::after {
  content: "”";
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 60px;
  color: #eaeaea;
}

/* HEADER */
.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.card-header h4 {
  margin: 0;
  font-size: 15px;
  color: #333;
}

/* AVATAR */
.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.avatar.brown { background: #6d4c41; }
.avatar.green { background: #4caf50; }
.avatar.blue { background: #00acc1; }

/* ESTRELLAS */
.stars {
  font-size: 13px;
}

/* TEXTO */
.testimonial-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}


@media (max-width: 600px) {

  .slider {
    overflow: hidden;
    max-width: 100%;
  }

  .slider-track {
    gap: 15px;
    animation-duration: 70s;
  }

  .testimonial-card {
    flex: 0 0 85%;
    max-width: 320px;

    aspect-ratio: 1 / 1;

    padding: 18px;
    border-radius: 16px;
  }

  .bg-title {
    font-size: 28px;
  }
}


















.faq-mapa-section {
    background: linear-gradient(to top, #000000, #3b3b3b);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 80px 20px;
    font-family: sans-serif;
    color: white;
  }
  
  .faq-col {
    flex: 1 1 500px;
    max-width: 600px;
  }
  
  .mapa-col {
    flex: 1 1 400px;
    max-width: 600px;
    text-align: center;
  }
  
  .mapa-col .mapa-titulo {
    font-size: 36px;
    margin-bottom: 20px;
    color: #FBBF24;
  }  

  .faq-titulo {
    font-size: 36px;
    margin-bottom: 20px;
    color: #FBBF24;
    text-align: center;
  }
  
  .faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .faq-question {
    background: #333;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    border-color: #FBBF24 2px solid;
  }
  
  .faq-answer {
    display: none;
    background: #444;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 5px;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .faq-item.active .faq-answer {
    display: block;
  }
  
  .arrow {
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .arrow {
    transform: rotate(90deg);
  }




































#footer {
    background: linear-gradient(to top, #000000, #000000);
    color: #fff;
    padding: 20px 0 5px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
    padding: 0 20px;
  }

  .footer-section img {
    width: 100px;
    margin-bottom: 5px;
    transition: all 0.5s;
  }

  .footer-section img:hover {
    transform: scale(1.1);
    cursor: pointer;
  }
  
  .footer-section p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .footer-section2 {
    flex: 1;
    min-width: 250px;
    margin-top: 50px;
  }
  
  .footer-section2 p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
  }
  
  .mail {
    text-decoration: none;
    color: #FBBF24;
    transition: all 0.5s;
  }
  
  .mail:hover {
    color: #FBBF24;
    font-size: 18px;
  }
  
  .mailMobile {
    display: none;
  }
  
  .footer-section3 {
    flex: 1;
    min-width: 250px;
    margin-top: 50px;
  }
  
  .footer-section3 p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .social-icons a {
    color: #FBBF24;
    margin-right: 10px;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.5s;
  }
  
  #fb:hover {
    color: #1534ff;
  }
  
  #ig:hover {
    color: #ca0599;
  }
  
  #tt:hover {
    color: #1da1f2;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #444;
  }
  
  .footer-bottom a {
    color: #FBBF24;
    text-decoration: none;
  }
  
  .ig,
.wsp {
  position: fixed;
  z-index: 10000;
  transition: transform 0.3s ease;
}

.ig {
  width: 45px;
  height: 45px;
  bottom: 30px;
  right: 100px;
}

.wsp {
  width: 50px;
  height: 50px;
  bottom: 30px;
  right: 30px;
}

.ig:hover,
.wsp:hover {
  transform: scale(1.1);
  cursor: pointer;
}

/* Ajustes para pantallas más pequeñas */
@media (max-width: 890px) {

  .footer-section img {
    width: 180px;
    margin-bottom: 10px;
  }
  
  .ig {
    right: 80px;
  }

  .wsp {
    right: 20px;
  }
}

@media (max-width: 600px) {

  .footer-section img {
    width: 180px;
    margin-bottom: 10px;
  }

  .ig {
    right: 65px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }

  .wsp {
    right: 15px;
    bottom: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 400px) {

  .footer-section img {
    width: 180px;
    margin-bottom: 10px;
  }

  .ig {
    right: 55px;
  }

  .wsp {
    right: 10px;
  }
}
  
  #tel {
    text-decoration: none;
    color: #FBBF24;
    transition: all 0.5s;
  }
  
  #tel:hover {
    color: #007BFF;
  }
  
  .tel {
    margin-left: 25%;
  }
  
  @media screen and (max-width: 890px) {

    .footer-section img {
      width: 180px;
      margin-bottom: 10px;
    }
    
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-section,
    .footer-section2,
    .footer-section3 {
      margin-top: 30px;
      padding: 0;
    }
  
    .footer-section2 p,
    .footer-section3 p {
      max-width: 90%;
      margin: 0 auto;
    }
  
    .social-icons {
      justify-content: center;
    }
  
    .mail {
      display: none;
    }
  
    .mailMobile {
      display: inline;
      color: #FBBF24;
      text-decoration: none;
    }
  
    .mailMobile:hover {
      color: #777e5c;
    }
  
  
  }
  





















/* MONITORES GRANDES */
@media screen and (min-width: 1600px) {

  .container,
  .slider,
  .sliderC,
  .footer-container {
    max-width: 1600px;
  }

  .hero-text {
    max-width: 700px;
    margin-left: 20px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .hero p {
    font-size: 22px;
  }

  .title,
  .bg-title,
  .faq-titulo,
  .mapa-col .mapa-titulo {
    font-size: 52px;
  }

  .card {
    transform: scale(1.15);
    transform-origin: center;
  }

  .why-item h3 {
    font-size: 24px;
  }

  .why-item p,
  .testimonial-card p,
  .footer-section p,
  .footer-section2 p,
  .footer-section3 p {
    font-size: 18px;
  }

  .menu a {
    font-size: 20px;
  }

  .logo img {
    width: 130px;
  }

  /* PUNTOS */
.p1 { top: 35%; left: 55%; }
.p2 { top: 45%; left: 43%; }
.p3 { top: 56%; left: 36.5%; }
.p4 { top: 50%; left: 60%; }
.p5 { top: 61%; left: 55.5%; }
.p6 { top: 40%; left: 65%; }

  /* CARDS */
.c1 {
    top: 18%;
    left: 10%;
}

.c2 {
    top: 40%;
    left: 0%;
}

.c3 {
    top: 62%;
    left: 10%;
}

.c4 {
    top: 40%;
    right: 0%;
}

.c5 {
    top: 62%;
    right: 10%;
}

.c6 {
    top: 18%;
    right: 10%;
}
}












  