/* ===== CSS VARIABLES ===== */
:root {
  --primary: #163967;
  --secondary: #00C9A7;
  --tertiary: #845EC2;
  --bg: #ECF0F1;
  --white: #ffffff;
  --text: #1a2740;
  --text-light: #5a6a7e;
  --text-muted: #8fa0b2;
  --border: rgba(22, 57, 103, 0.1);
  --shadow-sm: 0 2px 12px rgba(22, 57, 103, 0.08);
  --shadow-md: 0 8px 32px rgba(22, 57, 103, 0.12);
  --shadow-lg: 0 20px 60px rgba(22, 57, 103, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 80px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: var(--header-h);
  background: transparent;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.header.scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(22,57,103,.1);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.logo-icon {
  color: var(--secondary);
  font-size: 1.4rem;
  line-height: 1;
}
.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
  flex-shrink: 0;
}
.logo-img-light { filter: brightness(1.1); }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: .02em;
}
.logo-light .logo-name { color: var(--white); }
.logo-title {
  font-size: .65rem;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link {
  font-size: .82rem;
  font-weight: 500;
  padding: .5rem .75rem;
  border-radius: 8px;
  color: var(--primary);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--secondary); background: rgba(0,201,167,.08); }
.header:not(.scrolled) .nav-link { color: rgba(255,255,255,.9); }
.header:not(.scrolled) .nav-link:hover { background: rgba(255,255,255,.15); color: var(--white); }
.btn-header {
  background: var(--secondary);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  padding: .55rem 1.25rem;
  border-radius: 50px;
  margin-left: .5rem;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn-header:hover { background: var(--primary); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,201,167,.3); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.header:not(.scrolled) .hamburger span { background: var(--white); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--secondary);
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  padding: .8rem 2rem;
  border-radius: 50px;
  letter-spacing: .02em;
  transition: transform .2s, box-shadow .2s, background .2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #00b094; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,201,167,.35); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--white);
  font-size: .9rem;
  font-weight: 500;
  padding: .8rem 2rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.5);
  letter-spacing: .02em;
  transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.9); }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  transition: transform .2s, box-shadow .2s;
  margin-top: 2rem;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.35); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f2647 0%, #163967 50%, #1d4d8a 100%);
}
.hero-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: 55%;
  object-fit: contain;
  object-position: bottom right;
  z-index: 1;
  opacity: .35;
  mix-blend-mode: luminosity;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 70% 50%, rgba(0,201,167,.15) 0%, transparent 60%),
              radial-gradient(ellipse 50% 80% at 20% 80%, rgba(132,94,194,.2) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 2rem;
  text-align: center;
  color: var(--white);
}
.hero-badge {
  display: inline-block;
  background: rgba(0,201,167,.2);
  border: 1px solid rgba(0,201,167,.4);
  color: var(--secondary);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.hero-title em {
  font-style: italic;
  color: var(--secondary);
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.5;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.1)} }

/* ===== SECTIONS ===== */
.section { padding: 6rem 2rem; }
.section-alt { background: var(--white); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; max-width: 660px; margin: 0 auto 4rem; }
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: .75rem;
}
.section-label.light { color: rgba(255,255,255,.7); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title.left { text-align: left; }
.section-title.light { color: var(--white); }
.section-sub {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--secondary), var(--tertiary));
  transform: scaleX(0);
  transition: transform .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(0,201,167,.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}
.card-icon svg { width: 28px; height: 28px; }
.card-icon-img {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
  margin-bottom: 1.5rem;
}
.card-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .card-icon-img img { transform: scale(1.06); }
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .75rem;
}
.service-card p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.card-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: gap .2s;
}
.card-link:hover { gap: .7rem; }

/* ===== OTHER SERVICES ===== */
.other-services {
  background: linear-gradient(135deg, rgba(22,57,103,.04), rgba(0,201,167,.04));
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.other-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}
.other-tags { display: flex; flex-wrap: wrap; gap: .6rem; }
.other-tags span {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-size: .82rem;
  padding: .35rem .9rem;
  border-radius: 50px;
  transition: background .2s, color .2s, border-color .2s;
  cursor: default;
}
.other-tags span:hover { background: var(--secondary); color: var(--white); border-color: var(--secondary); }

/* ===== TWO COL ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}
.img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.img-placeholder {
  background: linear-gradient(135deg, rgba(22,57,103,.05), rgba(0,201,167,.05));
  border-radius: 24px;
  border: 2px dashed rgba(22,57,103,.15);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-placeholder svg { width: 100%; height: auto; max-width: 200px; }
.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.img-frame:hover .img-placeholder img { transform: scale(1.04); }
.img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
  background: var(--secondary);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: .6rem 1.2rem;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
}
.col-text { display: flex; flex-direction: column; gap: 1rem; }
.body-text { font-size: .95rem; color: var(--text-light); line-height: 1.85; }
.body-text.emotional {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--primary);
  line-height: 1.6;
  border-left: 3px solid var(--secondary);
  padding-left: 1.25rem;
}
.stats-row {
  display: flex;
  gap: 2rem;
  margin: .5rem 0 1rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat span { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }

/* ===== VIDEO GRID ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #163967, #1d4d8a);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-info { padding: 1.25rem 1.5rem; }
.video-info h4 { font-size: .95rem; font-weight: 700; color: var(--primary); margin-bottom: .4rem; }
.video-info p { font-size: .82rem; color: var(--text-light); }

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0d2540 100%);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 20%, rgba(0,201,167,.15) 0%, transparent 60%);
}
.contact-inner {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.contact-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  max-width: 540px;
  margin: 1rem auto 0;
}
.contact-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 500;
  padding: .6rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.2);
  transition: background .2s, border-color .2s;
}
.contact-item:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); }
.contact-item svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer { background: #0d2540; color: rgba(255,255,255,.7); padding: 4rem 2rem 2rem; }
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  margin-top: 1rem;
  line-height: 1.6;
}
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav h5, .footer-contact h5 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: .5rem;
}
.footer-nav a, .footer-contact a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--secondary); }
.social-row { display: flex; gap: .75rem; margin-top: .5rem; }
.social-row a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s, border-color .2s;
}
.social-row a:hover { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.social-row svg { width: 16px; height: 16px; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  width: 58px; height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.5); }
.whatsapp-fab svg { width: 28px; height: 28px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary), #1d4d8a);
  padding: 10rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,201,167,.12) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ===== PROCESS SECTION ===== */
.process-section { padding: 5rem 2rem; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.process-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.process-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.process-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(0,201,167,.1), rgba(22,57,103,.08));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--secondary);
}
.process-icon svg { width: 34px; height: 34px; }
.process-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: .75rem; }
.process-card p { font-size: .9rem; color: var(--text-light); line-height: 1.75; }

/* ===== ABOUT PAGE ===== */
.portfolio-section { background: var(--bg); }
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: .88rem;
  color: var(--text);
  transition: box-shadow .2s;
}
.credential-item:hover { box-shadow: var(--shadow-sm); }
.cred-dot {
  width: 8px; height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.commitment-box {
  background: linear-gradient(135deg, var(--primary), #1d4d8a);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}
.commitment-box p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-form-section { padding: 5rem 2rem; }
.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .875rem 1.125rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(0,201,167,.12); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-msg {
  padding: 1rem 1.25rem;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 500;
  display: none;
  margin-top: 1rem;
}
.form-msg.success { background: rgba(0,201,167,.1); color: #008f75; border: 1px solid rgba(0,201,167,.3); display: block; }
.form-msg.error { background: rgba(220,53,69,.08); color: #c82333; border: 1px solid rgba(220,53,69,.2); display: block; }
.form-divider { text-align: center; color: var(--text-muted); font-size: .85rem; margin: 1.5rem 0; }
.btn-wa-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  background: transparent;
  border: 2px solid #25D366;
  color: #25D366;
  font-size: .92rem;
  font-weight: 600;
  padding: .875rem;
  border-radius: 50px;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.btn-wa-alt:hover { background: #25D366; color: var(--white); }

/* ===== TESTIMONIOS FOTO ===== */
.testimonios-foto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonio-foto-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform .3s, box-shadow .3s;
}
.testimonio-foto-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonio-foto-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}
.testimonio-foto-card:hover img {
  transform: scale(1.02);
}
@media (max-width: 600px) {
  .testimonios-foto-grid {
    grid-template-columns: 1fr;
  }
}
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .8s ease forwards;
}
.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }
.delay-3 { animation-delay: .6s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .15s; }
.reveal.delay-2 { transition-delay: .3s; }
.reveal.delay-3 { transition-delay: .45s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 100vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    box-shadow: -8px 0 40px rgba(0,0,0,.15);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    gap: .25rem;
    z-index: 999;
  }
  .nav.open { transform: translateX(0); }
  .nav-link { color: var(--primary) !important; background: transparent !important; font-size: 1rem; padding: .75rem 1rem; width: 100%; border-radius: 10px; }
  .nav-link:hover { background: var(--bg) !important; }
  .btn-header { width: 100%; text-align: center; margin-left: 0; margin-top: .5rem; }
  .hamburger { display: flex; z-index: 1000; }
  .cards-grid, .video-grid, .process-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-row { gap: 1.25rem; }
  .hero-title { font-size: 2.4rem; }
  .section { padding: 4rem 1.25rem; }
  .contact-form-wrap { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .contact-links { flex-direction: column; align-items: center; }
}

/* ===== REAL PHOTOS ===== */
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.35;
  mix-blend-mode: luminosity;
}
.hero-photo-cutout {
  position: absolute;
  right: 5%;
  bottom: 0;
  height: 92%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  z-index: 1;
  filter: drop-shadow(0 0 60px rgba(0,0,0,.4));
}
.img-real {
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
  background: linear-gradient(135deg, rgba(22,57,103,.05), rgba(0,201,167,.05));
}
.img-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s;
  display: block;
  min-height: 480px;
}
.img-frame:hover .img-real img { transform: scale(1.04); }

/* ===== LOGO IMAGE ===== */
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  padding: 2px;
  filter: invert(1) brightness(2);
}
.logo-img-light {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.header.scrolled .logo-img {
  filter: none;
}
