/* =============================================
   VARIABLES
============================================= */
:root {
  --gold:       #b8902e;
  --gold-light: #d4b06a;
  --gold-pale:  #e8d4a8;
  --cream:      #faf6f0;
  --warm:       #f4ece0;
  --warm2:      #ede3d5;
  --dark:       #1a1510;
  --text:       #2e2820;
  --text-mid:   #5a5048;
  --text-light: #8a7a6a;
  --white:      #ffffff;
  --border:     #e0d4c0;
  --nav-h:      72px;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Raleway', sans-serif;
}

/* =============================================
   RESET
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--text); line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--sans); border: none; background: none; }

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(250,246,240,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(26,21,16,.06);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.nav-logo-text .brand {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--dark);
  display: block;
}
.nav-logo-text .brand span {
  color: var(--gold);
  font-weight: 300;
  margin-left: 6px;
  font-size: .82rem;
  letter-spacing: .22em;
}
.nav-logo-text .tagline {
  font-size: .62rem;
  letter-spacing: .14em;
  color: var(--text-light);
  font-style: italic;
  font-family: var(--serif);
}
.nav-links {
  display: flex;
  align-items: center;
}
.nav-links a {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 8px 13px;
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 13px; right: 13px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-wa {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 8px 12px;
  transition: color .3s;
}
.btn-wa:hover { color: #25d366; }
.btn-presupuesto {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 9px 18px;
  border-radius: 3px;
  transition: all .3s;
}
.btn-presupuesto:hover { background: var(--gold); color: var(--white); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: all .3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(250,246,240,.99);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color .3s;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--gold); }
.mobile-menu .mob-btns {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

/* =============================================
   LAYOUT
============================================= */
.page-wrap { padding-top: var(--nav-h); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

/* =============================================
   TYPOGRAPHY HELPERS
============================================= */
.eyebrow {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.divider {
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  margin: 0 0 40px;
}
.divider.center { margin: 0 auto 40px; }
.section-desc {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 600px;
}
.text-center { text-align: center; }
.text-center .divider { margin: 0 auto 40px; }
.text-center .section-desc { margin: 0 auto; }

/* =============================================
   BUTTONS
============================================= */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 3px;
  border: 1.5px solid var(--gold);
  transition: all .3s;
}
.btn-gold:hover { background: var(--dark); border-color: var(--dark); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 3px;
  border: 1.5px solid rgba(255,255,255,.6);
  transition: all .3s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.12); }
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 3px;
  border: 1.5px solid var(--gold);
  transition: all .3s;
}
.btn-outline-dark:hover { background: var(--gold); color: var(--white); }

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  height: clamp(380px, 55vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a1510;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,7,3,.52) 0%, rgba(10,7,3,.62) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 760px;
}
.hero-content .eyebrow { color: var(--gold-light); text-align: center; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: .92rem;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Hero inicio (taller) */
.hero-inicio { height: clamp(560px, 75vh, 780px); }

/* =============================================
   INICIO - Servicios grid
============================================= */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.servicios-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px 44px;
  transition: all .3s;
}
.servicios-col:hover { box-shadow: 0 6px 30px rgba(26,21,16,.08); border-color: var(--gold-pale); }
.servicios-col-head {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.servicios-item { display: flex; gap: 12px; margin-bottom: 20px; }
.servicios-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: var(--gold-pale);
  flex-shrink: 0;
  margin-top: 8px;
}
.servicios-item h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 4px;
}
.servicios-item p { font-size: .84rem; color: var(--text-mid); line-height: 1.6; }
.link-arrow {
  margin-top: 24px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s;
}
.link-arrow:hover { gap: 10px; }

/* =============================================
   TESTIMONIALS
============================================= */
.bg-warm { background: var(--warm); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 4.5rem;
  color: var(--gold-pale);
  position: absolute;
  top: 12px; left: 22px;
  line-height: 1;
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin: 24px 0 20px;
}
.testimonial-author {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================
   PORTFOLIO
============================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.portfolio-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  background: var(--warm2);
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.portfolio-item:hover img { transform: scale(1.06); }

/* =============================================
   DIFERENCIA
============================================= */
.diferencia-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.diferencia-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all .3s;
}
.diferencia-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(26,21,16,.08); border-color: var(--gold-pale); }
.diferencia-icon { width: 38px; height: 38px; color: var(--gold); margin: 0 auto 14px; }
.diferencia-card h4 { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.diferencia-card p { font-size: .82rem; color: var(--text-mid); line-height: 1.6; }

/* =============================================
   PROCESO
============================================= */
.proceso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.proceso-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.66% + 27px);
  right: calc(16.66% + 27px);
  height: 1px;
  background: var(--border);
}
.proceso-step { text-align: center; padding: 0 28px; }
.proceso-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.proceso-step h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.proceso-step p { font-size: .88rem; color: var(--text-mid); line-height: 1.7; }

/* =============================================
   FAQ
============================================= */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 4px;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
  transition: color .3s;
}
.faq-q:hover, .faq-q.open { color: var(--gold); }
.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  border: 1.5px solid var(--gold-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s;
  color: var(--gold-light);
}
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a.open { max-height: 300px; }
.faq-a-inner { padding: 0 22px 20px; font-size: .9rem; color: var(--text-mid); line-height: 1.75; }

/* =============================================
   SERVICIOS PAGE - Cards
============================================= */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 26px;
  transition: all .3s;
}
.service-card:hover { border-color: var(--gold-pale); box-shadow: 0 6px 24px rgba(26,21,16,.07); transform: translateY(-3px); }
.service-card-icon { width: 34px; height: 34px; color: var(--gold-light); margin-bottom: 18px; }
.service-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: .87rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }

/* Includes checklist */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
  max-width: 840px;
  margin: 0 auto 48px;
}
.includes-item { display: flex; align-items: flex-start; gap: 12px; font-size: .88rem; color: var(--text); }
.includes-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }

/* =============================================
   FEATURE LIST (bodas/corporativos)
============================================= */
.feature-list { max-width: 680px; margin: 0 auto; }
.feature-item { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.feature-item:last-child { border-bottom: none; }
.feature-icon { width: 36px; height: 36px; flex-shrink: 0; color: var(--gold-light); margin-top: 2px; }
.feature-item h3 { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.feature-item p { font-size: .88rem; color: var(--text-mid); line-height: 1.7; }

/* =============================================
   NOSOTROS
============================================= */
.nosotros-text { max-width: 700px; }
.nosotros-text p { font-size: .95rem; line-height: 1.85; color: var(--text); margin-bottom: 20px; }
.nosotros-text p:last-child { margin-bottom: 0; }

.equipo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
}
.equipo-card { text-align: center; }
.equipo-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 2px solid var(--border);
}
.equipo-avatar img { width: 100%; height: 100%; object-fit: cover; }
.equipo-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.equipo-role {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1.5;
}
.equipo-card p { font-size: .84rem; color: var(--text-mid); line-height: 1.65; }

/* =============================================
   CONTACTO
============================================= */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contacto-info h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400; color: var(--dark); margin-bottom: 8px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.contact-label { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.contact-value { font-size: .92rem; color: var(--text); display: block; }
.contact-value a { color: var(--text); transition: color .3s; }
.contact-value a:hover { color: var(--gold); }
.contact-note { font-size: .82rem; font-style: italic; color: var(--text-light); margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }

/* Form */
.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--text-mid); }
.form-group label .req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 3px;
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--dark);
  outline: none;
  transition: border-color .3s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold-light); }
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a7a6a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background .3s;
}
.btn-submit:hover { background: var(--dark); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-error { display: none; background: #fef2f2; border: 1px solid #fca5a5; color: #b91c1c; padding: 10px 14px; border-radius: 3px; font-size: .85rem; }
.form-error.show { display: block; }
.form-success { display: none; text-align: center; padding: 36px 20px; border: 1.5px solid var(--gold-pale); border-radius: 6px; background: #fdf9f0; }
.form-success.show { display: block; }
.form-success h3 { font-family: var(--serif); font-size: 1.6rem; color: var(--dark); margin: 10px 0 8px; }
.form-success p { font-size: .9rem; color: var(--text-mid); }

/* =============================================
   LEGAL PAGES
============================================= */
.legal-content { max-width: 800px; }
.legal-content h1 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 400; color: var(--dark); margin-bottom: 6px; }
.legal-date { font-size: .78rem; color: var(--text-light); letter-spacing: .1em; display: block; margin-bottom: 40px; }
.legal-content h2 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--dark); margin: 32px 0 10px; }
.legal-content p, .legal-content li { font-size: .92rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 12px; }
.legal-content ul { list-style: disc; padding-left: 20px; margin-bottom: 14px; }
.legal-content ul li { margin-bottom: 5px; }
.legal-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal-footnote { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--border); font-size: .78rem; color: var(--text-light); font-style: italic; }

/* =============================================
   FOOTER
============================================= */
.footer {
  background: linear-gradient(180deg, var(--warm2) 0%, #e8d8c4 100%);
  padding: 56px 0 0;
}
.footer-inner { max-width: 900px; margin: 0 auto; padding: 0 32px; text-align: center; }
.footer-logo { display: inline-block; margin-bottom: 20px; cursor: pointer; }
.footer-logo img { width: 38px; height: 38px; object-fit: contain; }
.footer-divider { width: 40px; height: 1px; background: var(--gold-light); margin: 0 auto 28px; }
.footer-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 18px; margin-bottom: 24px; }
.footer-nav a { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--text-mid); transition: color .3s; }
.footer-nav a:hover { color: var(--gold); }
.footer-social { display: flex; justify-content: center; gap: 14px; margin-bottom: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid);
  transition: all .3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 15px; height: 15px; }
.footer-legal {
  border-top: 1px solid rgba(200,180,150,.4);
  padding: 18px 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: .72rem;
  color: var(--text-light);
}
.footer-legal a { color: var(--text-light); transition: color .3s; }
.footer-legal a:hover { color: var(--gold); }
.footer-legal .sep { color: var(--border); }
.footer-copy { width: 100%; text-align: center; font-size: .74rem; color: var(--text-light); margin-top: 4px; }

/* =============================================
   WHATSAPP FLOAT
============================================= */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  z-index: 900;
  transition: transform .3s, box-shadow .3s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.45); }
.wa-float svg { width: 26px; height: 26px; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .diferencia-grid { grid-template-columns: repeat(3, 1fr); }
  .servicios-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .diferencia-grid { grid-template-columns: repeat(2, 1fr); }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .equipo-grid { grid-template-columns: repeat(2, 1fr); }
  .proceso-grid { grid-template-columns: 1fr; gap: 36px; }
  .proceso-grid::before { display: none; }
  .includes-grid { grid-template-columns: 1fr; }
  .contacto-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 62px; }
  .nav-links, .nav-actions { display: none; }
  .burger { display: flex; }
  .container, .container-wide { padding: 0 20px; }
  .section { padding: 56px 0; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .diferencia-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-cards { grid-template-columns: 1fr; }
  .equipo-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; gap: 8px; }
  .wa-float { bottom: 18px; right: 18px; width: 46px; height: 46px; }
}
