body {
  margin: 0;
  font-family: 'Georgia', serif;
  color: #fff;

  background: url("img/img-cisne.jpg") no-repeat center center;
  background-size: cover;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: -1;
}


.contact {
  width: 80%;
  margin: 80px auto;
  text-align: center;
  animation: fadeIn 1.5s ease;
}


h1 {
  letter-spacing: 10px;
  font-size: 42px;
  margin-bottom: 10px;

  text-shadow: 0 0 15px rgba(255,255,255,0.2);
}


.subtitle {
  font-size: 18px;
  margin-bottom: 50px;
  color: #ccc;
}


.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;

  border-top: 1px solid rgba(255,255,255,0.2);
  transition: 0.3s;
}

.row:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.row:hover {
  background: rgba(255,255,255,0.05);
  transform: scale(1.01);
}

.row {
  border-radius: 10px;
  padding: 15px;
}

.label {
  font-weight: bold;
  letter-spacing: 3px;
  color: #ddd;
}

.value {
  font-size: 14px;
  letter-spacing: 2px;
  color: #bbb;
}


.mapa {
  margin-top: 70px;
  display: flex;
  justify-content: center;
}

.mapa iframe {
  width: 550px;
  height: 320px;

  border: none;
  border-radius: 20px;

  box-shadow: 
    0 15px 40px rgba(0,0,0,0.9),
    0 0 50px rgba(255,255,255,0.1);

  border: 1px solid rgba(255,255,255,0.2);

  transition: 0.4s;
}

.mapa iframe:hover {
  transform: scale(1.04);
}


@media (max-width: 1024px) {

  .contact {
    width: 90%;
    margin: 60px auto;
  }

  h1 {
    font-size: 34px;
    letter-spacing: 6px;
  }

  .subtitle {
    font-size: 16px;
  }

  .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .label {
    font-size: 14px;
  }

  .value {
    font-size: 14px;
  }

  .mapa iframe {
    width: 90%;
    height: 300px;
  }
}



@media (max-width: 768px) {

  .contact {
    width: 95%;
    margin: 40px auto;
  }

  h1 {
    font-size: 26px;
    letter-spacing: 4px;
  }

  .subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .row {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  .label {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .value {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .mapa {
    margin-top: 40px;
  }

  .mapa iframe {
    width: 95%;
    height: 250px;
    border-radius: 15px;
  }
}



@media (max-width: 480px) {

  h1 {
    font-size: 22px;
    letter-spacing: 3px;
  }

  .subtitle {
    font-size: 13px;
  }

  .row {
    padding: 15px 0;
  }

  .label {
    font-size: 12px;
  }

  .value {
    font-size: 12px;
  }

  .mapa iframe {
    height: 220px;
  }
}

html, body {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
}


body::before,
body::after {
  height: 100%;
}


.mapa {
  margin-bottom: 0;
  padding-bottom: 20px;
}

.mapa iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 250px;
}


.nav a{
  color:#ccc;
  text-decoration:none;
  letter-spacing:6px;
  font-size:18px;
  transition:0.3s;
}

.nav a:hover{
  color:#d4af37;
}


.nav{
  display:flex;
  justify-content:center;
  gap:60px;
  padding:20px 0;
 align-items:center; /* 👈 esto arregla lo de las letras arriba */
  background:#0b0b0b;  
}

.logo img{
  height: 70px;   
  width: auto;
  display: block;
  align-items: center;
}

/* my one model responsive */
@media (max-width: 768px){

  .nav{
    flex-direction:column;
    gap:15px;
    text-align:center;
  }

  .nav{ gap:30px; }
}
