
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: white;
  width: 100%;
  overflow-x: hidden;
  background-color: black;

  
}


.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px 40px 20px;
  overflow: hidden;
  z-index: 1;
  background: radial-gradient(circle at 30% 40%, #191970 0%, #27408b 50%, #4169e1 100%);
  animation: heroGradientMove 30s ease-in-out infinite alternate;
}


@keyframes heroGradientMove {
  0% {
    background: radial-gradient(circle at 30% 40%, #0a1f44 0%, #112c5d 50%, #1e3a8a 100%);
  }
  25% {
    background: radial-gradient(circle at 50% 50%, #0a1f44 0%, #112c5d 40%, #1e3a8a 100%);
  }
  50% {
    background: radial-gradient(circle at 70% 60%, #112c5d 0%, #0a1f44 40%, #1e3a8a 100%);
  }
  75% {
    background: radial-gradient(circle at 50% 50%, #0a1f44 0%, #112c5d 40%, #1e3a8a 100%);
  }
  100% {
    background: radial-gradient(circle at 30% 40%, #0a1f44 0%, #112c5d 50%, #1e3a8a 100%);
  }
}


.sobre-segur {
  min-height: 70vh;
  padding: 20px;
  background-color: black;
  color: white;
  text-align: center;
}

.texto-sobre {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 20px;
  color: #ccc;
}
.contenido {
  max-width: 800px;
  margin: auto;
}

.titulo-sobre {
font-size: 56px;
font-style: normal;
font-weight: 500;
line-height: 1.1; 
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.seguridadparatodos,
.servicios {
  background: black;
}
@media (max-width: 600px) {
  .seguridadparatodos,
  .servicios{
    padding: 30px 5px;
  }
}
.navbar-glass {
  position: sticky;
  margin-bottom: 0;
  top: 0px;
  margin: 20px 24px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(15px);
  border-radius: 100px;
  z-index: 10;

}
@media (max-width: 600px) {
  .navbar-glass {
    width: 100%;
    left: 0;
    right: 0;
    margin: 0;
    border-radius: 100px;
    padding: 12px 10px;
    top: 0;
  }
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.nav-logo {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 27px;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-list li a:hover {
  color:#00cbd8;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}


@media (max-width: 768px) {
  .nav-list {
    display: none;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    top: 80px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 20px;
  }

  .nav-list.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .nav-list li a {
    color: #121212;
  }
}


@media (max-width: 600px) {
  .hero {
    padding: 40px 10px 20px 10px;
    min-height: 60vh;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.boton {
  display: inline-block;
  padding: 12px 24px;
  background-color: white;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 100px;
  transition: background 0.3s;
}

.boton:hover {
  background-color: #00cbd8;
}

.introduccion { background-color: black;
  text-align: center;
  display: flex;
  height: 447px;

flex-direction: column;
align-items: center;
flex-shrink: 0;
align-self: stretch;

}


.introinfo { background-color: black;
  color: var(--white-text, #FFF);
 font-family: 'Montserrat', sans-serif;
 text-align: center;
 font-size: 18px;
 font-style: normal;
 font-weight: 400;
 line-height: 105%;
 
  }

.subtitulo {
  font-size: 18px;
  color: #00cbd8;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
 
}

.tuseguridad {
  font-size: 56px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: white;
  margin: 0 0 20px 0;
  word-wrap: break-word;
}


.dondeotros { 
  color: white;
  font-size: 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  line-height: 1.2;
 word-wrap: break-word}

.seguridadparatodos {
  min-height: 100vh;
  background: 
    linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('imagenes/seguridad.png') center/cover no-repeat;
  color: white;
  padding: 20px 40px;
  text-align: center;
}

.seguridadparatodos .contenido {
  max-width: 1200px;
  margin: 0 auto;
}

.seguridadparatodos h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.seguridadparatodos .intro {
  font-size: 22px;
  font-style: normal;
  margin-bottom: 60px;
  font-family: 'Montserrat', sans-serif;
  
}

.seguridadparatodos .segparatodos {
  color: var(--white-text, #FFF);
font-family: 'Montserrat', sans-serif;
font-size: 56px;
font-style: normal;
font-weight: 500;
line-height: 1.1; 

}

.grilla {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 20px;
}

.grilla, .grid-servicios {
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  overflow-x: auto;
} 
.columna {
  text-align: center;
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.columna:first-child {
  border-left: none;
}

.columna h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
  border-left: none;
  padding-left: 0;
}

.columna p {
  font-size: 14px;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

@media (max-width: 900px) and (min-width: 600px) {
  .grilla {
    grid-template-columns: repeat(2, 1fr);
  }

  .columna {
    border-left: none;
  }

  .columna:nth-child(2n+1) {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
  }
}


@media (max-width: 599px) {
  .grilla {
    grid-template-columns: 1fr;
  }

  .columna {
    border-left: none;
    border-right: none;
  }
}

.btn-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;   
  height: 60px; 
  background: none;
  border: none;
  cursor: pointer;
  z-index: 999;
  padding: 0;
  animation: bounce 1.5s infinite;
}

@media (max-width: 600px) {
  .btn-whatsapp {
    width: 40px;  
    height: 40px; 
    bottom: 20px;
    right: 20px;
  }
}

.btn-whatsapp img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}



@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}


@media (max-width: 600px) {
  .btn-whatsapp {
    width: 50px;
    height: 50px;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.btn-whatsapp {
  animation: bounce 1.5s infinite;
}

.pregfrecuentes {
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 32px;
  font-family: 'Montserrat', sans-serif;
}

.faq {
  animation: fadeInUp 1s;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
.faq {
  width: 100%;
  max-width: 1000px; 
  margin-left: auto;
  margin-right: auto; 
  margin-top: 0px;
  margin-bottom: 0px;
  box-sizing: border-box;
  color: white;
  text-align: center;
  padding: 0px 24px 80px 20px;
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
}

.accordion .item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 0;
}

.accordion-label {
   background: black;
   box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
  display: block;
  padding: 18px 50px 18px 18px;
  word-break: break-word;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  background-color: #1a1a1a;
  border-radius: 12px;
  margin-bottom: 14px;
  transition: background 0.3s, box-shadow 0.3s;
}

.accordion-label:hover {
   background: #2d2f31;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(255, 255, 255, 0.22);
}

.accordion-label::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  transition: transform 0.3s;
}

.accordion input[type="checkbox"] {
  display: none;
}

.accordion-content {
  background: rgba(255,255,255,0.03);
  border-radius: 0 0 12px 12px;
  margin-top: -8px;
  margin-bottom: 10px;
  max-height: 0;
  padding: 0 15px;
  word-break: break-word;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  color: #ccc;
}

.accordion input[type="checkbox"]:checked + .accordion-label::after {
  content: '-';
}

.accordion input[type="checkbox"]:checked + .accordion-label + .accordion-content {
  max-height: 500px;
  padding: 15px;
  transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}

@media (max-width: 600px) {


  .faq {
  max-width: 100vw;
    padding: 30px 12px 80px 12px;
    background-color: black;
  }

  .accordion-label {
    font-size: 16px;
    padding-right: 60px;
  }

  .accordion-label::after {
    right: 15px;
    font-size: 20px;
  }
    .accordion-content {
    padding-left: 5px;
    padding-right: 5px;
  }
}


.servicios {
  padding: 80px 20px;
  background-color: #000;
  color: white;
}

.titulo-servicios {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  font-size: 56px;
  margin-bottom: 40px;
}

.grid-servicios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.servicio-box {
  background-color: #111;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;


}

.servicio-box:hover {
  transform: translateY(-5px);
}

.servicio-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.contenido-servicio {
  padding: 20px;
}

.contenido-servicio h3 {
  margin: 0 0 10px;
  font-size: 1.3em;
}

.contenido-servicio p {
  font-size: 0.95em;
  line-height: 1.4;
  color: #ccc;
}

@media (max-width: 600px) {
  .tuseguridad {
    font-size: 36px;
    line-height: 1.1;
  }
  .dondeotros {
    font-size: 20px;
    line-height: 1.2;
  }
  .subtitulo {
    font-size: 14px;
  }
  .segparatodos,
  .pregfrecuentes,
  .titulo-servicios {
    font-size: 32px;
    line-height: 1.1;
  }
  .intro,
  .introinfo,
  .servicio-box h3,
  .accordion-label {
    font-size: 16px;
  }
  .servicio-box p,
  .columna p {
    font-size: 14px;
  }
  .boton {
    font-size: 15px;
    padding: 10px 18px;
  }
}


.pantalla-contacto {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;     
  text-align: center;
  padding: 20px;
  margin-top: 0;    
  margin-bottom: 20px;  
}

.servicioscliente {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;     
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  
}


.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #444;
  padding-bottom: 30px;
}

.footer-logo img {
  max-width: 160px;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #f1f1f1;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.footer-social a:hover img {
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #888;
}



form {
  max-width: 600px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

button[type="submit"] {
  background-color: #007bff;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #0056b3;
}

.completa {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.btn-volver {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #003366; 
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.btn-volver:hover {
  background-color: #0055aa; 
}
