* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
  background: #0b1220;
    }

    html {
    scroll-behavior: smooth;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

   /* HEADER */
.header {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    padding: 0px 20px;

    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/energia/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) 100%
    );
    }

    .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: #FBBF24;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {

      .hero {
        background-image: url("img/energia/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;
    }

    .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1500;
}

.overlay.active {
    opacity: 0.7;
    background: rgba(0,0,0,0.6);
    pointer-events: auto;
}


      .hero h1 {
        font-size: 32px;
        color: #FBBF24;
      }

      .hero h1 span {
      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-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;
      }
    }






























.benefits-section {
  background: #6c6c6c;
  padding: 50px 20px;
}

.benefits-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  text-align: center;
}

.benefit-item {
  padding: 20px 15px;
  position: relative;
}

.benefit-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background: #000000;
}

.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  font-size: 32px;
  color: #FBBF24;
}

.benefit-item h3 {
  font-size: 18px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 14px;
  color: #afafaf;
  line-height: 1.6;
}

/* ---------- TABLET ---------- */
@media (max-width: 1200px) {
  .benefits-container {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }

  .benefit-item:nth-child(3)::after,
  .benefit-item:nth-child(6)::after {
    display: none;
  }
}

/* ---------- MOBILE CARRUSEL ---------- */
@media (max-width: 768px) {

  .benefits-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;

    padding-bottom: 15px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
  }

  .benefits-container::-webkit-scrollbar {
    display: none; /* Chrome */
  }

  .benefit-item {
    flex: 0 0 85%;
    max-width: 85%;

    scroll-snap-align: center;

    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);

    padding: 30px 20px;
    margin: 0 auto;
  }

  .benefit-item::after {
    display: none;
  }

  .icon-circle {
    width: 65px;
    height: 65px;
  }

  .icon-circle i {
    font-size: 28px;
  }

  .benefit-item h3 {
    font-size: 17px;
  }

  .benefit-item p {
    font-size: 14px;
  }

}

/* ---------- CELULARES MUY CHICOS ---------- */
@media (max-width: 480px) {

  .benefit-item {
    flex: 0 0 90%;
    max-width: 90%;
    padding: 25px 15px;
  }

  .benefit-item h3 {
    font-size: 15px;
  }

  .benefit-item p {
    font-size: 13px;
  }

}




























.process-section {
  background: linear-gradient(to top, #3b3b3b, #6c6c6c);
  padding: 60px 20px; 
  color: #FBBF24;
}

.process-container {
  max-width: 1250px;
  margin: auto;
}

.process-title {
  font-size: 34px; 
  font-weight: 800;
  margin-bottom: 35px; 
  position: relative;
}

.process-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #FBBF24;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-icon {
  font-size: 42px; 
  color: white;
  margin-bottom: 12px;
}

.step-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FBBF24;
  color: #000000;
  font-size: 13px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-size: 20px; 
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.step p {
  font-size: 14px; 
  line-height: 1.4;
  color: #afafaf;
}

.connector {
  flex: 0.4;
  height: 2px;
  border-top: 2px dashed rgba(255,255,255,0.4);
  margin-top: 35px;
}

.final-highlight {
  flex: 2.5; 
  border-left: 2px solid #FBBF24;
  padding-left: 25px; 
  text-align: left;
}

.sun-icon {
  font-size: 42px; 
  color: #FBBF24;
  margin-bottom: 12px;
}

.final-highlight h3 {
  font-size: 26px; 
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}

.final-highlight p {
  color: #afafaf;
  font-size: 15px; 
  line-height: 1.5;
}


/* ---------- TABLET ---------- */
@media (max-width: 1100px) {
  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .connector {
    display: none;
  }

  .step,
  .final-highlight {
    flex: 0 0 45%;
    margin-bottom: 40px;
  }

  .final-highlight {
    border-left: none;
    border-top: 2px solid #FBBF24;
    padding-left: 0;
    padding-top: 30px;
    text-align: center;
  }
}

/* ---------- MOBILE ---------- */



@media (max-width: 768px) {

  .process-steps {
    display: flex;
    flex-wrap: nowrap;

    justify-content: flex-start; /* CLAVE */
    align-items: stretch;

    overflow-x: auto;
    scroll-snap-type: x mandatory;

    gap: 20px;
    padding-bottom: 20px;
    padding-left: 0;
    margin-left: 0;

    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .process-steps::-webkit-scrollbar {
    display: none;
  }

  .connector {
    display: none;
  }

  .step,
  .final-highlight {
    flex: 0 0 85%;
    min-width: 85%;
    max-width: 85%;

    scroll-snap-align: start; /* mejor que center */

    margin: 0;
  }

}

@media (max-width: 768px) {

  .process-title {
    text-align: center;
    font-size: 30px;
  }

  .process-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .process-steps {
    display: flex;
    flex-wrap: nowrap;

    justify-content: flex-start; /* CLAVE */
    align-items: stretch;

    overflow-x: auto;
    scroll-snap-type: x mandatory;

    gap: 20px;
    padding-bottom: 20px;
    padding-left: 0;
    margin-left: 0;

    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .process-steps::-webkit-scrollbar {
    display: none;
  }

  .connector {
    display: none;
  }

  .step,
  .final-highlight {
    flex: 0 0 85%;
    max-width: 85%;
    min-width: 85%;

    scroll-snap-align: center;

    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px 20px;

    text-align: center;

    border: none;
    margin: 0;
  }

  .final-highlight {
    padding-left: 20px;
  }

  .step h3,
  .final-highlight h3 {
    font-size: 24px;
  }

  .step p,
  .final-highlight p {
    font-size: 15px;
  }

  .step-icon,
  .sun-icon {
    font-size: 48px;
  }

  .step-number {
    top: 10px;
  }

}

/* ---------- CELULARES PEQUEÑOS ---------- */
@media (max-width: 480px) {

  .step,
  .final-highlight {
    flex: 0 0 92%;
    max-width: 92%;
  }

  .step h3,
  .final-highlight h3 {
    font-size: 20px;
  }

  .step p,
  .final-highlight p {
    font-size: 14px;
  }
}



























.solutions-section {
  background: linear-gradient(to top, #000000, #3b3b3b);
  padding: 70px 20px;
}

.solutions-container {
  max-width: 1400px;
  margin: auto;
}

/* HEADER */
.solutions-header {
  padding: 35px 60px;
  margin-bottom: 50px;
  position: relative;
}

.solutions-header h2 {
  font-size: 34px;
  font-weight: 900;
  color: #FBBF24;
  line-height: 1.1;
  position: relative;
  display: inline-block;
  margin-left: 60px;
}

.solutions-header h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #FBBF24;
  position: absolute;
  left: 0;
  bottom: -15px;
}

/* GRID */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-left: 120px;
  margin-right: 120px;
}

/* CARD */
.solution-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* IMAGEN */
.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* HOVER */
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.solution-card:hover img {
  transform: scale(1.08);
}

/* 🔥 DEGRADADO MODERNO (suave) */
.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0) 70%
  );
  z-index: 1;
}

/* CONTENIDO */
.solution-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 25px;
  z-index: 2;
}

/* ICONO (moderno) */
.solution-icon {
  width: 50px;
  height: 50px;
  background: #FBBF24;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.solution-icon i {
  font-size: 22px;
  color: white;
}

/* TEXTO */
.solution-overlay h3 {
  color: white;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

/* ---------- TABLET ---------- */
@media (max-width: 1100px) {

  .solutions-header h2 {
    font-size: 32px;
    margin-left: 0;
  }

  .solutions-grid {
    gap: 20px;
    margin: 0 10px;
  }

  .solution-card {
    height: 320px;
  }

}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {

  .solutions-header {
    padding: 25px 20px;
  }

  .solutions-header h2 {
    font-size: 28px;
    margin-left: 5%;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 0;
  }

  .solution-card {
    height: 260px;
    width: 90%;
    margin: auto;
  }

}

/* 🔥 SACAMOS EL DEGRADADO EN MOBILE */
@media (max-width: 900px) {
  .solution-card::after {
    display: none;
  }
}

/* ---------- CELULARES PEQUEÑOS ---------- */
@media (max-width: 480px) {

  .solutions-section {
    padding: 40px 15px;
  }

  .solutions-header h2 {
    font-size: 24px;
  }

  .solution-card {
    height: 240px;
  }

}





























.cta-banner {
  width: 100%;
  padding: 40px 20px;

  background: url("img/energia/fondos/2.jpg") center/cover no-repeat;

  position: relative;
}

/* 🔥 CAPA SUAVE (no oscura pesada) */
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 45, 0.35);
  backdrop-filter: blur(2px);
}

/* CONTENEDOR */
.cta-overlay {
  position: relative;
  z-index: 2;

  max-width: 1300px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  /* 🔥 glass effect */
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);

  border-radius: 20px;
  padding: 30px 40px;

  border: 1px solid rgba(255,255,255,0.15);
}

/* CONTENIDO */
.cta-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ICONO MODERNO */
.cta-icon {
  width: 55px;
  height: 55px;

  background: rgba(0, 0, 0, 0.15);
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon i {
  font-size: 26px;
  color: #FBBF24;
}

/* TEXTO */
.cta-text h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  margin: 0;
}

.cta-text p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  margin-top: 8px;
}

/* BOTÓN */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  background: #FBBF24;
  color: #000000;

  padding: 16px 28px;
  border-radius: 10px;

  font-size: 14px;
  font-weight: 800;
  text-decoration: none;

  transition: all 0.3s ease;
  white-space: nowrap;
}

/* 🔥 hover pro */
.cta-button:hover {
  background: #FBBF24;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.cta-button i {
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(4px);
}

/* ---------- TABLET ---------- */
@media (max-width: 900px) {

  .cta-overlay {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

}

/* ---------- MOBILE ---------- */
@media (max-width: 600px) {

  .cta-text h2 {
    font-size: 20px;
  }

  .cta-text p {
    font-size: 13px;
  }

}


























.section4 {
    background-color: #000000;
    display: none;
}



.section {
  padding: 60px 20px;
  background: #000000;
}

.img2 {
  display: none;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

/* TEXTO */
.text h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #ffffff;
}

.btn {
  background: #FBBF24;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  color: white;
}

.btn1 {
  background: #FBBF24;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  color: white;
}

/* IMAGEN */
.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: auto;
}

.image-wrapper img {
  width: 100%;
  border-radius: 12px;
}

/* SVG */
.lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.lines line {
  stroke: white;
  stroke-width: 2;
  opacity: 0.6;
}

/* PUNTOS */
.point {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #FBBF24;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* CARDS */
.card {
  position: absolute;
  background: white;
  color: #333;
  padding: 10px;
  border-radius: 12px;
  width: 160px;
  max-width: 80vw;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card h4 {
  font-size: 14px;
  margin-bottom: 5px;

  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card i {
  font-size: 20px;
  color: #FBBF24;
  margin-bottom: 5px;
  display: block;
}

.point:hover + .card,
.card:hover {
  opacity: 1;
  transform: translateY(0);
}

.point::after {
  content: attr(data-num);
  position: absolute;
  top: -8px;
  left: 10px;
  font-size: 15px;
  color: white;
  font-weight: bold;
}

.num {
  color: #FBBF24;
  margin-right: 5px;
}

.btnC {
  background: #FBBF24;
  padding: 2px 5px;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  animation: flotar 2s ease-in-out infinite;
}

.btnC:hover {
  background: #FBBF24;
  scale: 1.1;
}

@keyframes flotar {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* POSICIONES */
.p1 { top: 31%; left: 58%; }
.c1 { top: 5%; left: 35%; }

.p2 { top: 45%; left: 40%; }
.c2 { top: 20%; left: 10%; }

.p3 { top: 58%; left: 32%; }
.c3 { top: 65%; left: 2%; }

.p4 { top: 50%; left: 64%; }
.c4 { top: 40%; left: 90%; }

.p5 { top: 65%; left: 57%; }
.c5 { top: 70%; left: 80%; }

.p6 { top: 35%; left: 72%; }
.c6 { top: 10%; left: 85%; }



/* RESPONSIVE */
@media (max-width: 1000px) {

  .img1{
    display: none;
  }

  .img2{
    display: block;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .text {
    text-align: center;
  }

  /* ocultamos líneas */
  .lines {
    display: none;
  }

  .point {
    display: none;
  }

  /* CONTENEDOR DE CARDS */
  .image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* CARDS EN GRID */
  .card {
    position: static;
    opacity: 1;
    transform: none;

    width: 100%;
    max-width: 100%;

    margin: 0;
  }

  /* contenedor virtual para ordenar */
  .image-wrapper {
    gap: 20px;
  }

  /* grid de 2 columnas */
  .image-wrapper .card {
    width: 100%;
  }

  .image-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
  }

  /* la imagen ocupa todo arriba */
  .image-wrapper img {
    grid-column: 1 / -1;
  }

}

























#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;
    }
  
  
  }





































  @media screen and (min-width: 1600px) {

  /* CONTENEDORES */
  .container,
  .benefits-container,
  .process-container,
  .solutions-container,
  .footer-container,
  .cta-overlay {
    max-width: 1600px;
  }
  

  .logo img {
    width: 135px;
  }

  .menu a {
    font-size: 21px;
  }

  /* HERO */
  .hero-text {
    max-width: 700px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .hero p {
    font-size: 24px;
    max-width: 650px;
  }

  .btn,
  .btn1 {
    font-size: 18px;
    padding: 16px 34px;
  }

  /* BENEFICIOS */
  .benefit-item {
    padding: 30px 20px;
  }

  .icon-circle {
    width: 85px;
    height: 85px;
  }

  .icon-circle i {
    font-size: 40px;
  }

  .benefit-item h3 {
    font-size: 22px;
  }

  .benefit-item p {
    font-size: 17px;
  }

  /* PROCESO */
  .process-title {
    font-size: 48px;
  }

  .step-icon,
  .sun-icon {
    font-size: 56px;
  }

  .step h3 {
    font-size: 24px;
  }

  .step p,
  .final-highlight p {
    font-size: 17px;
  }

  .final-highlight h3 {
    font-size: 34px;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  /* SOLUCIONES */
  .solutions-header h2 {
    font-size: 50px;
  }

  .solution-card {
    height: 520px;
  }

  .solution-overlay h3 {
    font-size: 26px;
  }

  .solution-icon {
    width: 60px;
    height: 60px;
  }

  .solution-icon i {
    font-size: 28px;
  }

  /* CTA */
  .cta-text h2 {
    font-size: 38px;
  }

  .cta-text p {
    font-size: 18px;
  }

  .cta-button {
    font-size: 18px;
    padding: 18px 34px;
  }

  /* SECCIÓN INTERACTIVA */
  .text h2 {
    font-size: 54px;
  }

  .card {
    width: 210px;
    padding: 18px;
  }

  .card h4 {
    font-size: 17px;
  }

  .card i {
    font-size: 28px;
  }

  .point {
    width: 14px;
    height: 14px;
  }

  .point::after {
    font-size: 18px;
  }

  /* AJUSTE DE POSICIONES */
  .c1 {
    top: 3%;
    left: 32%;
  }

  .c2 {
    top: 18%;
    left: 1%;
  }

  .c3 {
    top: 68%;
    left: 0%;
  }

  .c4 {
    top: 38%;
    left: 92%;
  }

  .c5 {
    top: 72%;
    left: 82%;
  }

  .c6 {
    top: 8%;
    left: 88%;
  }

  /* FOOTER */
  .footer-section p,
  .footer-section2 p,
  .footer-section3 p {
    font-size: 18px;
  }

  .footer-section img {
    width: 130px;
  }

  .social-icons a {
    font-size: 30px;
  }

  /* BOTONES FLOTANTES */
  .ig {
    width: 55px;
    height: 55px;
    right: 110px;
  }

  .wsp {
    width: 60px;
    height: 60px;
    right: 35px;
  }
}