.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.navbar a {
  position: relative;
  text-decoration: none;
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.navbar a:link, .navbar a:visited {
  color: #f5f5f5;
}
.navbar a:hover {
  color: #c9a86a;
  letter-spacing: 3px;
}
.navbar a:active {
  color: #c9a86a;
}
.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background-color: #c9a86a;
  transition: width 0.3s ease;
}
.navbar a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }
}

/* ================= HEADER ================= */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px 10px;
}
header .logo-header {
  height: 300px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}
header h1 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 3px;
  margin: 0;
  color: #f5f5f5;
}
header {
  /* Responsive header */
}
@media (max-width: 768px) {
  header .logo-header {
    height: 60px;
  }
  header h1 {
    font-size: 20px;
    letter-spacing: 0.5px;
  }
}

/* ================= GLOBAL BODY ================= */
body {
  background-color: #0f0f14;
  color: #f5f5f5;
  font-family: "Lucida Sans", "Lucida Sans Regular", cursive;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: 0.5px;
}

/* ================= MAIN TITLE ================= */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

main h1 {
  color: #f5f5f5;
  text-align: center;
  font-size: 42px;
  margin: 20px 0;
}
@media (max-width: 768px) {
  main h1 {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  main h1 {
    font-size: 26px;
  }
}

/* ================= SECTION TITLES ================= */
section {
  margin-bottom: 60px;
  transition: transform 0.3s ease;
}
section:hover {
  transform: translateY(-3px);
}

section h2 {
  color: #e8b4b8;
  text-align: center;
  font-size: 32px;
  padding-top: 60px;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  section h2 {
    font-size: 26px;
    padding-top: 40px;
  }
}
@media (max-width: 480px) {
  section h2 {
    font-size: 22px;
  }
}

/* ================= IMAGES ================= */
.fotodescripcion {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid #c9a86a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: block;
  margin: 30px auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fotodescripcion:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .fotodescripcion {
    margin: 20px auto;
  }
}

/* ================= TEXT ================= */
p {
  color: #f5f5f5;
  line-height: 1.6;
  margin: 0 auto 20px auto;
  max-width: 800px;
  text-align: center;
}
@media (max-width: 480px) {
  p {
    font-size: 14px;
  }
}

/* ===== Services Carousel ===== */
.carousel {
  margin: 60px auto;
  max-width: 1100px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 40px;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 320px;
  min-height: 260px;
  scroll-snap-align: center;
  background: #1a1a22;
  border: 1px solid #c6a75e;
  border-radius: 18px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, opacity 0.35s ease;
}
.service-card:hover {
  transform: scale(1.05);
}
.service-card h2 {
  color: #e8b4b8;
  font-size: 28px;
  margin-bottom: 12px;
}
.service-card .description {
  color: #f5f5f5;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 18px;
}
.service-card .price {
  color: #c6a75e;
  font-size: 34px;
  font-weight: bold;
}

/* ===== Agenda ===== */
.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 800px;
  margin: 60px auto;
}

.infodecliente, .infodefecha {
  background-color: #1a1a22;
  border: 1px solid #c6a75e;
  padding: 15px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
}

#submitbutton {
  background-color: #c6a75e;
  color: black;
  font-weight: bold;
  letter-spacing: 1px;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  grid-column: 1/3;
  justify-self: center;
  margin-top: 10px;
}

/* ===== Contact ===== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 60px auto;
  padding: 20px;
}

.contact-info, .location-info {
  background: #1a1a22;
  border: 1px solid #c6a75e;
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.contact-info a {
  color: #c6a75e;
  text-decoration: none;
  font-size: 20px;
  display: block;
  margin: 15px 0;
  transition: 0.3s ease;
}
.contact-info a:hover {
  color: #e8b4b8;
}

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 60px auto;
  padding: 20px;
}

.gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid #c6a75e;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 20px 0;
}
footer p {
  color: #f5f5f5;
  font-size: 20px;
  margin: 30px 0;
}
footer .logo {
  margin-top: 40px;
  height: 40px;
  width: auto;
  display: inline;
}

.footer-social {
  margin-top: 40px;
}
.footer-social ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  list-style: none;
  padding: 0;
}
.footer-social li {
  list-style: none;
}
.footer-social a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #f5f5f5;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
  /* Make icons neutral (remove blue/green) */
  filter: grayscale(100%) brightness(0.4);
  transition: all 0.3s ease;
}
.footer-social a:hover {
  color: #c9a86a;
}
.footer-social a:hover img {
  transform: scale(1.15);
  filter: brightness(0) saturate(100%) invert(76%) sepia(22%) saturate(450%);
}

@media (max-width: 768px) {
  section {
    margin-bottom: 40px;
  }
  main {
    padding: 20px 15px;
  }
}
/* ================= FADE IN ON LOAD ================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section:nth-of-type(1) {
  animation-delay: 0.2s;
}

section:nth-of-type(2) {
  animation-delay: 0.4s;
}

section:nth-of-type(3) {
  animation-delay: 0.6s;
}

section:nth-of-type(4) {
  animation-delay: 0.8s;
}

/*# sourceMappingURL=styles.css.map */
