/* -----------------------------------
   PALETA PREMIUM BLACK & GOLD
----------------------------------- */
/*
    Negro profundo: #0b0b0d
    Negro carbón: #111114
    Blanco puro: #ffffff
    Blanco suave: #e8e8e8
    Dorado premium: #c9a86a
    Dorado intenso: #d8b878
    Dorado hover: #e3c68b
*/

/* -----------------------------------
   RESET & BASE
----------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Tipografía global */
body {
  font-family: "Poppins", sans-serif;
  background-color: #0b0b0d;
  color: #ffffff;
  line-height: 1.65;
  overflow-x: hidden;
  font-weight: 300; /* más elegante */
}

/* Títulos premium */
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #ffffff;
}

/* Contenedor */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Iconos globales */
.icon-gold {
  color: #c9a86a;
  vertical-align: -2px;
}

/* -----------------------------------
   MENÚ PREMIUM BLACK & GOLD
----------------------------------- */
nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(11, 11, 13, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(201, 168, 106, 0.25);
  transition: 0.35s ease;
}

/* Contenedor interno del nav */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Menú */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
}

/* Enlaces del menú */
.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  transition: color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-links a:hover {
  color: #c9a86a;
}

/* Subrayado dorado ultra-fino desde el centro */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0%;
  height: 0.8px; /* grosor fino pero visible */
  background: #c9a86a;
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Botón Propuesta */
.nav-links li:last-child a.btn-primary {
  margin-left: 12px;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
}

/* Subrayado dorado ultra-fino solo en los enlaces con icono */
.nav-links a.link-underline {
  position: relative;
  overflow: visible;
}

/* Línea dorada animada desde el centro */
.nav-links a.link-underline::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 0;
  height: 1px; /* fino pero visible */
  background: #c9a86a;
  transition: width 0.3s ease;
}

.nav-links a.link-underline:hover::after {
  width: 100%;
}

/* -----------------------------------
   NAV RESPONSIVE
----------------------------------- */
@media (min-width: 701px) {
  .nav-toggle {
    display: none;
  }
}

@media (max-width: 700px) {
  .nav-toggle {
    display: inline-flex;
    background: transparent;
    border: none;
    padding: 6px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #111114;
    border: 1px solid rgba(201, 168, 106, 0.25);
    flex-direction: column;
    width: 220px;
    padding: 20px;
    gap: 18px;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }
}

/* -----------------------------------
   HERO
----------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero picture,
.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.82) contrast(1.15) saturate(1.1);
}

/* Overlay cinematográfico */
.hero .overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.55)
  );
}

/* Halo dorado */
.hero .overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background: radial-gradient(
    circle at center,
    rgba(201, 168, 106, 0.12) 0%,
    rgba(0, 0, 0, 0.85) 70%
  );
}

.hero-content {
  position: relative;
  z-index: 4;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 10px;
}

.subtitle {
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin-bottom: 25px;
  opacity: 0.9;
}

/* Botón premium */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #c9a86a;
  color: #0b0b0d !important; /* texto visible siempre */
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

/* Icono dentro del botón */
.btn-primary i {
  color: #0b0b0d !important; /* icono visible */
  font-size: 20px;
  transition: color 0.3s ease;
}

/* Hover premium */
.btn-primary:hover {
  background: #e3c68b;
  transform: translateY(-2px);
}

/* -----------------------------------
   SEGMENTADORES PREMIUM
----------------------------------- */
/* Separador GOLD fino y estable */
section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 1px; /* más fino */
  background: linear-gradient(90deg, #c9a86a, #e3c68b, #c9a86a);
  opacity: 0.7;
  transition: width 0.9s cubic-bezier(0.25, 0.85, 0.25, 1);
}

/* Animación suave sin “locuras” */
section:hover::before {
  width: 32%; /* más corto, más premium */
}

/* -----------------------------------
   ABOUT
----------------------------------- */
.about {
  padding: 100px 0;
  text-align: center;
}

.about h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.85;
  font-size: 1.1rem;
}

/* -----------------------------------
   SERVICES
----------------------------------- */
.services {
  padding: 100px 0;
}

.services h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 50px;
}

/* GRID EN 3 COLUMNAS */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

/* TARJETAS */
.service-card {
  background: #111114;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 106, 0.25);
  text-align: center;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #c9a86a;
  box-shadow: 0 0 25px rgba(201, 168, 106, 0.35);
}

/* TÍTULOS */
.service-card h3 {
  margin-top: 16px;
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
}

/* SEPARADOR DENTRO DE LA CARD */
.service-card .contact-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 168, 106, 0.45),
    transparent
  );
  margin: 16px 0;
}

/* TEXTO */
.service-card p {
  color: #d1d1d1;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}
.service-card,
.service-card:link,
.service-card:visited,
.service-card:hover,
.service-card:active {
  text-decoration: none;
  color: inherit;
}

/*foto redonda con borde dorado y sombra premium*/
.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0 2rem 0;
}

.about-image img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #c9a86a;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
}

.premium-frame {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(201, 168, 106, 0.35);
  background: linear-gradient(145deg, #111, #1a1a1a);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.premium-frame img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.premium-frame img:hover {
  transform: scale(1.04);
  filter: grayscale(0%);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-text .premium-frame {
  margin-left: auto;
  margin-right: auto;
}
.photo-caption {
  display: block;
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: #c9a86a;
  opacity: 0.85;
  font-weight: 500;
}

.photo-caption {
  display: block;
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  color: #c9a86a;
  opacity: 0.85;
  font-weight: 500;
}

.about-text .premium-frame {
  margin-left: auto;
  margin-right: auto;
}

.section-intro-centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

/* --- Testimonios premium editoriales --- */

.testimonials {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.testimonial-grid {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.testimonial-card {
  flex: 1 1 calc(33.333% - 2.5rem);
  max-width: 380px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Comillas grandes */
.testimonial-card::before {
  content: "“";
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  color: #c9a86a;
  position: absolute;
  top: -10px;
  left: 20px;
  opacity: 0.25;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 500;
  font-size: 0.95rem;
  color: #c9a86a;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 900px) {
  .about-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }

  .about-text {
    flex: 2;
  }

  .premium-frame {
    flex: 1;
    max-width: 260px;
    margin-top: 1rem;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------
   FOOTER
----------------------------------- */
.footer {
  padding: 40px 0;
  text-align: center;
  background: #0b0b0d;
  border-top: 1px solid rgba(201, 168, 106, 0.25);
}

.footer p {
  opacity: 0.75;
  margin-bottom: 10px;
}

.footer .social {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer .social a {
  color: #c9a86a;
  font-size: 1.4rem;
  transition: 0.3s ease;
}

.footer .social a:hover {
  color: #e3c68b;
  transform: scale(1.15);
}

/* -----------------------------------
   CONTACTO
----------------------------------- */
.contact {
  padding: 100px 0;
  text-align: center;
}

.contact-info {
  list-style: none;
  margin: 25px 0;
  opacity: 0.9;
  font-size: 1.1rem;
}

.contact-info li {
  margin-bottom: 8px;
}

/* Enlaces */
.contact-info a,
.footer .social a,
.contact a {
  text-decoration: none;
  color: #c9a86a;
  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

.contact-info a:hover,
.footer .social a:hover,
.contact a:hover {
  color: #e3c68b;
  opacity: 0.9;
}

.contact-info a:active,
.footer .social a:active,
.contact a:active {
  text-decoration: none;
}

/* -----------------------------------
   CARD PREMIUM
----------------------------------- */
.contact-card {
  margin: 40px auto 60px; /* incluye margen inferior */
  max-width: 520px;
  padding: 32px;
  background: #0f0f11;
  border: 1px solid rgba(201, 168, 106, 0.35);
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(201, 168, 106, 0.08);
}

/* -----------------------------------
   FORMULARIO PREMIUM
----------------------------------- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: "Poppins", sans-serif;
}

/* Grupo con icono */
.form-group {
  position: relative;
  display: flex;
  align-items: center;
}

.form-group i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #c9a86a;
  pointer-events: none;
}

/* Inputs, selects y textarea unificados */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #111114;
  border: 1px solid rgba(201, 168, 106, 0.35);
  padding: 14px 16px 14px 48px;
  border-radius: 6px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.2px;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
  appearance: none;
}

/* Placeholder */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b3b3b3;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* Select con flecha */
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg fill='%23c9a86a' height='20' width='20' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  cursor: pointer;
}

/* Focus */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #c9a86a;
  background: #141416;
  outline: none;
}

/* Textarea */
.contact-form textarea {
  resize: none;
}

/* -----------------------------------
   BOTÓN SECUNDARIO (GOOGLE CALENDAR)
----------------------------------- */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 22px;
  background: transparent;
  border: 1px solid #c9a86a;
  color: #c9a86a;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-secondary i {
  font-size: 20px;
  color: #c9a86a;
}

.btn-secondary:hover {
  background: #c9a86a;
  color: #0b0b0d;
}

.btn-secondary:hover i {
  color: #0b0b0d;
}

/* -----------------------------------
   TÍTULO Y SEPARADORES PREMIUM
----------------------------------- */
.contact-title {
  font-size: 1.6rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-title i {
  font-size: 26px;
  color: #c9a86a;
}

.contact-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 168, 106, 0.45),
    transparent
  );
  margin: 20px 0;
}
/* -----------------------------------------
   SECCIÓN DEMO — CTA PREMIUM
----------------------------------------- */

.demo {
  text-align: center;
}

.btn-demo {
  background: #c6a667;
  color: #fff;
  padding: 14px 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(198, 166, 103, 0.25);

  text-decoration: none;
  margin-bottom: 40px; /* ← ESPACIO INFERIOR ELEGANTE */
}

.btn-demo svg {
  stroke: #fff;
  transition: transform 0.35s ease;
}

.btn-demo:hover {
  background: #a88b4f;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(168, 139, 79, 0.35);
}

.btn-demo:hover svg {
  transform: translateX(4px);
}
