body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #031e42;
  color: #ffffffef;
}

/* Header */
/* Header */
.nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    transition: all 0.5s ease;
    position: fixed;
    z-index: 1000;
}
.nav.active{
    position: fixed;
    background: #0d0e2e;
    padding: 15px;
}
.nav.active a{
    color: #ffffff;
}
.nav__title {
    font-weight: 300;
}

.nav__link {
    margin-left: auto;
    padding: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 2em;
}

.nav__items {
    list-style: none;
}

.nav__links {
    color: #fff;
    text-decoration: none;
}

.nav__menu {
    margin-left: auto;
    cursor: pointer;
    display: none;
}

.nav__img {
    display: block;
    width: 30px;
}

header .logo img{
    height: 80px;
    width: auto;
}

.nav__close {
    display: var(--show, none);
}

.nav__link--menu li a{
    color: #FFF;
    text-decoration: none;
    transition: all 0.5s ease;
}
.nav__link--menu li a:hover{
    padding: 5px 10px;
    background:#6C96A9;
    color: #ffffff;
    border-radius: 15px;
}
/* Sección Hero */
.hero {
    padding: 200px;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.device-list, .faq-list {
    margin-top: 1rem;
}

.device-item, .faq-item {
    background: #000000;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Sección contacto */
.seccion-contacto {
  padding: 80px 20px 60px;
  background-color: #031e42ef;
  text-align: center;
}
.titulo-contacto {
  font-size: 36px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 10px;
}
.subtitulo-contacto {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 40px;
}

.contacto-contenedor {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

.contacto-info {
  background: linear-gradient(135deg, #777272, #6a6363);
  color: #000000;
  padding: 30px;
  border-radius: 20px;
  width: 320px;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.153);
  text-align: left;
}
.contacto-info h3 {
  margin-bottom: 20px;
  font-size: 22px;
}
.contacto-info p {
  margin: 10px 0;
  font-size: 16px;
}

.social-icons {
  margin-top: 10px;
  display: flex;
  gap: 20px;
}
.social-icons img {
  width: 30px;
  transition: transform 0.3s ease;
}
.social-icons img:hover {
  transform: scale(1.2);
}

.contacto-mapa {
  max-width: 500px;
  flex: 1;
  text-align: left;
}
.contacto-mapa h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #ffffffef;
}

/* Footer */
.footer {
  background-color: #0d0e2e;
  padding: 30px 20px;
  text-align: center;
  color: #ffffff;
}
.footer__copyright {
  font-weight: 300;
  font-size: 14px;
  margin-top: 10px;
}

/* Responsive */
@media (max-width:800px){
    .nav__menu{
        display: block;
    }

    .nav__link--menu{
        position: fixed;
        background-color: hsla(0, 0%, 0%, 0.813);
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        z-index: 100;
        opacity: 0;
        pointer-events: none;
        transition: .7s opacity;
    }

    .nav__link--show{
        --show: block;
        opacity:1 ;
        pointer-events: unset;
    }

    .nav__close{
        position: absolute;
        top: 30px;
        right: 30px;
        width: 30px;
        cursor: pointer;
    }
    .hero_title{
        font-size: 2.5rem;
    }
    .hero h2 {
        font-size: 30px;
        margin-bottom: 2rem;
        text-align: center;
    }
}
@media (max-width:600px){
    .nav__menu{
        display: block;
    }

    .nav__link--menu{
        position: fixed;
        background-color: hsla(0, 0%, 0%, 0.813);
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        z-index: 100;
        opacity: 0;
        pointer-events: none;
        transition: .7s opacity;
    }

    .nav__link--show{
        --show: block;
        opacity:1 ;
        pointer-events: unset;
    }

    .nav__close{
        position: absolute;
        top: 30px;
        right: 30px;
        width: 30px;
        cursor: pointer;
    }
    .hero h2{
        font-size: 30px;
    }
}

