* {
      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%;
    max-width: 1400px;

    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/alarma/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: #FBBF24;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {

      .hero {
        background-image: url("img/alarma/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-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.4)
    );
}

.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-content {
    position: relative;
    z-index: 2;
}
    }

    @media (max-width: 450px) {
      .hero-text h1 {
        font-size: 24px;
      }
    }





























    .benefits-section {
  background: #3b3b3b;
  padding: 50px 20px;
}

/* NUEVO HEADER */
.benefits-header {
  text-align: center;
  margin-bottom: 45px;
}

.benefits-header h2 {
  font-size: 34px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.benefits-header h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #FBBF24;

  position: absolute;
  left: 50%;
  bottom: -10px;

  transform: translateX(-50%);
}

.benefits-container {
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 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: #FBBF24;
}

.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;
}

/* TITULOS NUEVOS */
.benefit-item h3 {
  font-size: 17px;
  font-weight: 900;
  color: #FBBF24;

  margin-bottom: 14px;

  line-height: 1.3;

  min-height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-item p {
  font-size: 14px;
  color: #afafaf;
  line-height: 1.6;

  max-width: 260px;
  margin: auto;
}

/* ---------- TABLET ---------- */

@media (max-width: 1200px) {

  .benefits-container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .benefit-item:nth-child(2)::after {
    display: none;
  }

}

/* ---------- MOBILE CARRUSEL ---------- */

@media (max-width: 768px) {

  .benefits-header {
    margin-bottom: 30px;
  }

  .benefits-header h2 {
    font-size: 28px;
  }

  .benefits-container {
    display: flex;

    overflow-x: auto;
    scroll-snap-type: x mandatory;

    gap: 15px;

    padding-bottom: 15px;

    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .benefits-container::-webkit-scrollbar {
    display: none;
  }

  .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: 16px;
    min-height: auto;
  }

  .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;
  }

}










































.protection-benefits {
  background: linear-gradient(to top, #3b3b3b, #3b3b3b);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);

  padding: 22px 20px 28px;

  overflow: hidden;
}

/* ========================= */
/* HEADER */
/* ========================= */

.protection-header {
  text-align: center;
  margin-bottom: 30px;
}

.protection-header h2 {
  color: #FBBF24;

  font-size: 26px;
  font-weight: 900;

  margin: 0;

  position: relative;
  display: inline-block;
}

.protection-header h2::after {
  content: "";

  width: 60px;
  height: 3px;

  background: #FBBF24;

  position: absolute;

  left: 50%;
  bottom: -10px;

  transform: translateX(-50%);
}

/* ========================= */
/* GRID */
/* ========================= */

.protection-grid {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(5, 1fr);

  gap: 0;
}

/* ========================= */
/* ITEM */
/* ========================= */

.protection-item {
  text-align: center;

  padding: 0 20px;

  position: relative;
}

/* DIVISOR */
.protection-item:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 10%;
  right: 0;

  width: 1px;
  height: 80%;

  background: rgba(255,255,255,0.12);
}

/* ICON */
.protection-icon {
  width: 62px;
  height: 62px;

  margin: 0 auto 15px;

  border-radius: 50%;

  border: 2px solid rgba(255,255,255,0.15);

  display: flex;
  align-items: center;
  justify-content: center;
}

.protection-icon i {
  color: white;
  font-size: 26px;
}

/* TEXT */
.protection-item p {
  color: rgba(255,255,255,0.9);

  font-size: 14px;
  line-height: 1.5;

  margin: 0;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 850px) {

  .protection-benefits {
    padding: 25px 0;
  }

  .protection-header {
    padding: 0 20px;
    margin-bottom: 25px;
  }

  .protection-header h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  /* CARRUSEL */
  .protection-grid {

    display: flex;

    overflow-x: auto;
    scroll-snap-type: x mandatory;

    gap: 15px;

    padding: 0 20px 10px;

    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .protection-grid::-webkit-scrollbar {
    display: none;
  }

  .protection-item {

    flex: 0 0 80%;
    max-width: 80%;

    scroll-snap-align: center;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 16px;

    padding: 30px 20px;
  }

  .protection-item::after {
    display: none;
  }

  .protection-icon {
    width: 58px;
    height: 58px;
  }

  .protection-icon i {
    font-size: 22px;
  }

  .protection-item p {
    font-size: 14px;
  }

}

/* ========================= */
/* SMALL MOBILE */
/* ========================= */

@media (max-width: 480px) {

  .protection-header h2 {
    font-size: 19px;
  }

  .protection-item {
    flex: 0 0 88%;
    max-width: 88%;
  }

  .protection-item p {
    font-size: 13px;
  }

}






























.howworks-section {
  background: linear-gradient(to top, #000000, #3b3b3b);
  color: #fff;

  padding: 20px 20px;
  overflow: hidden;
}

/* ========================= */
/* HEADER */
/* ========================= */

.howworks-header {
  text-align: center;
  margin-bottom: 15px;
}

.howworks-header span {
  color: #FBBF24;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;

  display: block;
  margin-bottom: 8px;
}

.howworks-header h2 {
  color: #FBBF24;
  font-size: 34px;
  font-weight: 900;
  margin: 0;
}

/* ========================= */
/* GRID */
/* ========================= */

.howworks-grid {
  max-width: 1000px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
  align-items: start;
}

/* ========================= */
/* ITEM */
/* ========================= */

.howworks-item {
  position: relative;

  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ========================= */
/* TOP */
/* ========================= */

.howworks-top {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 15px;
}

/* ========================= */
/* LINEA */
/* ========================= */

.howworks-line {
  position: absolute;

  top: 50%;
  left: calc(50% + 45px);

  width: calc(100% + 90px);
  height: 2px;

  background: rgba(255,255,255,0.2);

  transform: translateY(-50%);
}

/* Último item sin línea */

.howworks-item:last-child .howworks-line {
  display: none;
}

/* ========================= */
/* NUMBER */
/* ========================= */

.howworks-number {
  position: absolute;

  top: -8px;
  right: -5px;

  width: 26px;
  height: 26px;

  border-radius: 50%;

  background: #000000;
  color: #FBBF24;

  font-size: 12px;
  font-weight: 800;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 5;
}

/* ========================= */
/* ICON */
/* ========================= */

.howworks-icon {
  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #FBBF24;
  color: #111;

  border-radius: 50%;

  position: relative;
  z-index: 2;

  box-shadow: 0 8px 20px rgba(0,0,0,0.25);

  transition: all 0.3s ease;
}

.howworks-icon i {
  font-size: 26px;
  color: #111;
}

.howworks-item:hover .howworks-icon {
  transform: translateY(-4px);
}

/* ========================= */
/* TITULO */
/* ========================= */

.howworks-item h3 {
  font-size: 16px;
  line-height: 1.4;

  margin: 0 0 10px;

  color: white;
  font-weight: 700;
}

/* ========================= */
/* TEXTO */
/* ========================= */

.howworks-item p {
  font-size: 14px;
  line-height: 1.5;

  margin: 0;

  color: rgba(255,255,255,0.8);
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 900px) {

  .howworks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .howworks-line {
    display: none;
  }

}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 650px) {

  .howworks-section {
    padding: 35px 20px;
  }

  .howworks-header h2 {
    font-size: 28px;
  }

  .howworks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 20px;
  }

  .howworks-item h3 {
    font-size: 15px;
  }

  .howworks-item 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 (min-width: 1600px) {

  /* Contenedores generales */
  .container {
    max-width: 1500px;
  }

  .header {
    max-width: 1700px;
    width: 95%;
  }

  /* Menú */
  .menu {
    gap: 55px;
  }

  .menu a {
    font-size: 20px;
  }

  .logo img {
    width: 130px;
  }

  /* HERO */
  .hero-text {
    max-width: 700px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .hero p {
    font-size: 22px;
    max-width: 650px;
  }

  .btn {
    font-size: 18px;
    padding: 16px 32px;
  }

  /* BENEFICIOS */
  .benefits-container {
    max-width: 1600px;
  }

  .benefits-header h2 {
    font-size: 44px;
  }

  .benefit-item h3 {
    font-size: 22px;
  }

  .benefit-item p {
    font-size: 17px;
    max-width: 320px;
  }

  .icon-circle {
    width: 85px;
    height: 85px;
  }

  .icon-circle i {
    font-size: 38px;
  }

  /* PROTECTION */
  .protection-grid {
    max-width: 1500px;
  }

  .protection-header h2 {
    font-size: 38px;
  }

  .protection-item p {
    font-size: 17px;
  }

  .protection-icon {
    width: 75px;
    height: 75px;
  }

  .protection-icon i {
    font-size: 32px;
  }

  /* HOW WORKS */
  .howworks-grid {
    max-width: 1300px;
  }

  .howworks-header h2 {
    font-size: 46px;
  }

  .howworks-item h3 {
    font-size: 20px;
  }

  .howworks-item p {
    font-size: 16px;
  }

  .howworks-icon {
    width: 80px;
    height: 80px;
  }

  .howworks-icon i {
    font-size: 32px;
  }

  /* SECCIÓN IMAGEN */
  .grid {
    gap: 80px;
  }

  .image-wrapper {
    max-width: 850px;
  }

  .text h2 {
    font-size: 52px;
  }

  .card {
    width: 200px;
    padding: 15px;
  }

  .card h4 {
    font-size: 16px;
  }

  /* FOOTER */
  .footer-container {
    max-width: 1500px;
  }

  .footer-section p,
  .footer-section2 p,
  .footer-section3 p {
    font-size: 18px;
  }

  .footer-section img {
    width: 130px;
  }

}