* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fff;
  color: #000;
}

/* =========================
   HEADER
   ========================= */
header {
  text-align: center;
  padding: 40px 20px 30px;
}

.logo {
  max-width: 260px;
  width: 100%;
  height: auto;
}

/* H1 oculto para SEO */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================
   HERO (RESPONSIVE PRO)
   ========================= */
.hero {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

/* Desktop: hero centrado y más angosto */
@media (min-width: 1024px) {
  .hero {
    max-width: 1100px;
    margin: 0 auto;
  }
}

/* Mobile / tablet */
@media (max-width: 1023px) {
  .hero {
    margin: 0 20px;
  }
}

/* =========================
   NAV DESKTOP
   ========================= */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 20px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 0 14px;
  cursor: pointer;
  position: relative;
}

nav a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
}

nav a:hover {
  opacity: 0.6;
}

/* =========================
   CONTACT FORM
   ========================= */
.contact-form {
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  display: none;
}

.contact-form h2 {
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: 2px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
}

.contact-form button:hover {
  opacity: 0.85;
}

/* =========================
   CONTACT INFO (PRO)
   ========================= */
.contact-info {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info a {
  color: #000;
  text-decoration: none;
}

.contact-info a:hover {
  opacity: 0.6;
}

.contact-info .address {
  margin-top: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* =========================
   GOOGLE MAP EMBED
   ========================= */
.map-embed {
  margin-top: 28px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

@media (max-width: 768px) {
  .map-embed iframe {
    height: 240px;
  }
}

/* =========================
   WHATSAPP FLOAT
   ========================= */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.2s ease;
}

.whatsapp:hover {
  transform: scale(1.05);
}

.whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* =========================
   MOBILE FIXES
   ========================= */
@media (max-width: 600px) {
  .logo {
    max-width: 200px;
  }
}

@media (max-width: 768px) {

  nav {
    flex-direction: column;
    gap: 18px;
    margin: 40px 0;
  }

  nav a {
    font-size: 18px;
    letter-spacing: 2px;
    padding: 6px 0;
  }

  nav a:not(:last-child)::after {
    content: none !important;
  }
}
