body {
  background: #fff;
  color: #111214;
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.navbar {
  background: #030303;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 1rem 0;
}

.logo {
  width: 220px;
  margin-bottom: 1rem;
}

.nav-options {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.nav-options li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.nav-options li a:hover {
  color: #111214;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: 2px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; transform: scale(1.05);}
  100% { opacity: 1; }
}

.proximamente {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.5rem;
  color: #555;
  margin-top: 1rem;
}

.menu-toggle {
  display: none;
  background: #111214;
  color: #fff;
  border: none;
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  cursor: pointer;
}

/* Responsive Design */

@media (max-width: 600px) {
  .logo {
    width: 180px;
    margin-bottom: 0.5rem;
  }

  .menu-toggle {
    display: flex;
    align-self: flex-end;
    margin: 0.5rem;
  }

  .nav-options {
    flex-direction: column;
    gap: 1rem;
    display: none;
    width: 100%;
    align-items: center;
    padding-bottom: 1rem;
  }

  .nav-options.active {
    display: flex;
  }

  main {
    height: 40vh;
    padding: 1rem;
  }

  h1 {
    font-size: 1.3rem;
    text-align: center;
  }

  .proximamente {
    font-size: 1rem;
    padding: 1rem 2rem;
    text-align: center;
  }

  .contact-section {
    padding: 2rem 1.5rem; /* Más padding horizontal */
    max-width: 90%;
    margin: auto;
  }


}

.gallery-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.gallery-image {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  display: block;
  transition: opacity 0.7s ease;
  opacity: 1;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(17, 18, 20, 0.8);
  color: #fff;
  border: 1px solid #fff; /* Línea delgada blanca */
  padding: 0.8rem 1.2rem;
  margin: 5rem;
  border-radius: 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.left-btn {
  left: 2vw;
}

.right-btn {
  right: 2vw;
}

.gallery-btn:hover {
  background: #ff4081;
}

@media (max-width: 600px) {
  .gallery-section {
    flex-direction: column;
    height: 50vh;
    justify-content: center;
    align-items: center;
  }
  .gallery-btn {
    position: static;
    margin: 0.5rem 0;
    width: 80vw;
    max-width: 300px;
    height: auto;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    display: block;
  }
  .gallery-image {
    height: 30vh;
    width: 100vw;
    object-fit: cover;
    margin-bottom: 0.5rem;
  }
}

.catalog-gallery {
  background: #fff;
  padding: 2rem 0;
  text-align: center;
}

.catalog-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.tab-btn {
  background: #111214;
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 24px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}

.tab-btn.active,
.tab-btn:hover {
  background: #ff4081;
}

.catalog-images {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.catalog-images img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.catalog-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17, 18, 20, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.catalog-modal img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.close-modal {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  font-weight: bold;
}

.contact-section {
  background: #fff;
  padding: 2rem 0;
  text-align: center;
}

.contact-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  text-align: left;
  font-weight: bold;
  color: #111214;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  background: #111214;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 24px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}

.contact-form button:hover {
  background: #ff4081;
}

.cotizacion-tipo {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.tipo-btn {
  background: #111214;
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 24px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}

.tipo-btn.selected,
.tipo-btn:hover {
  background: #ff4081;
}

.map-section {
  background: #fff;
  text-align: center;
  width: 100%;
  margin: auto;
}

.map-container {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.map-container iframe {
  width: 100vw;
  height: 350px;
  display: block;
  border-radius: 0;
  border: none;
}
@media (max-width: 700px) {
  .map-container iframe {
    height: 220px;
  }
}

.ubicacion-info {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem;
}
.info-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 1rem 1.5rem;
  min-width: 220px;
}
.info-block .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
}
.info-block .icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.info-block a {
  color: #222;
  text-decoration: none;
  margin-right: 0.5rem;
}
.info-block a img {
  width: 36px;
  height: 36px;
  vertical-align: middle;
  display: inline-block;
}
.info-block p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 4rem;
}
.info-block a:hover {
  text-decoration: underline;
}
@media (max-width: 700px) {
  .ubicacion-info {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .info-block {
    justify-content: flex-start;
    min-width: unset;
  }
}

.site-footer {
  background: #222;
  color: #fff;
  padding: 2rem 0 1rem 0;
  font-size: 0.95rem;
}
.footer-content {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social img {
  width: 24px;
  height: 24px;
  filter: brightness(1.2);
  transition: transform 0.2s;
}
.footer-social a:hover img {
  transform: scale(1.15);
}
.footer-legal {
  text-align: center;
  opacity: 0.85;
}
.footer-legal a {
  color: #fff;
  text-decoration: underline;
  margin: 0 0.5rem;
}
@media (max-width: 600px) {
  .footer-content {
    padding: 0 1rem;
  }
  .footer-logo span {
    font-size: 1rem;
  }
}

.payments-section {
  background: #fff;
  padding: 2rem 0;
  text-align: center;
  color: #111214;
  position: relative;
}

.payments-section h2 {
  margin: 0 0 1rem 0;
  font-size: 1.6rem;
}

.payments-grid {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.payment-card {
  background: #f8f8f8;
  border: 1px solid rgba(17,18,20,0.06);
  padding: 1rem;
  border-radius: 12px;
  width: 320px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  text-align: left;
}

.payment-card h3 {
  margin: 0 0 0.5rem 0;
  color: #111214;
}

.transfer-info {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.transfer-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0;
}

.transfer-info li strong {
  width: 90px;
  display: inline-block;
  color: #222;
}

.copy-value {
  flex: 1 1 auto;
  color: #333;
  word-break: break-all;
}

.copy-btn {
  background: transparent;
  color: #111214;
  border: 1px solid rgba(17,18,20,0.12);
  padding: 0.4rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.12s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.copy-btn:hover,
.copy-btn:focus {
  background: #111214;
  color: #fff;
  border-color: #111214;
  outline: none;
  transform: translateY(-1px);
}

.copy-btn.copied {
  background: #28a745;
  color: #fff;
  border-color: #28a745;
}

/* icon inside button */
.icon-copy {
  display: block;
  fill: currentColor;
  width: 18px;
  height: 18px;
}

/* optional: check icon style (used when copied) */
.icon-check {
  display: block;
  width: 18px;
  height: 18px;
  fill: #fff;
}