/* ============ TOKENS ============ */
:root{
  --navy: #092C4B;
  --navy-deep: #051C30;
  --navy-soft: #1A3F61;
  --beige: #D3C2B9;
  --beige-light: #EFE6E0;
  --cream: #FAF7F2;
  --ink: #1A1A1A;
  --text: #2A2A2A;
  --text-muted: #5A5A5A;
  --text-faint: #8A8A8A;
  --border: #E8E2DA;
  --success: #2E7D5B;
  --warning: #B85C1A;
  --danger: #A12C20;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(9,44,75,0.04), 0 1px 3px rgba(9,44,75,0.06);
  --shadow: 0 4px 16px rgba(9,44,75,0.08);
  --shadow-lg: 0 12px 32px rgba(9,44,75,0.12);

  --container: 1180px;
  --gap-section: clamp(60px, 9vw, 120px);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; color: var(--navy); line-height: 1.15; letter-spacing: -0.01em; margin: 0; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 600; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-family: var(--font-body); font-weight: 600; letter-spacing: -0.005em; }
.eyebrow { font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-soft); margin-bottom: 12px; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--text-muted); line-height: 1.65; }

/* ============ BUTTONS ============ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 26px; border-radius: var(--radius); font-size: 15px; font-weight: 600; letter-spacing: 0.01em; transition: all 200ms ease; cursor: pointer; white-space: nowrap; }
.btn-primary { background: var(--navy); color: white; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-whatsapp { background: #25D366; color: white; box-shadow: 0 4px 12px rgba(37,211,102,0.25); }
.btn-whatsapp:hover { background: #1FAE54; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: white; }
.btn svg { width: 18px; height: 18px; }

/* ============ HEADER ============ */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(250, 247, 242, 0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: var(--container); margin: 0 auto; gap: 24px; }
.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.logo-wrap img { height: 44px; width: auto; }
.main-nav { display: flex; gap: 28px; align-items: center; flex: 1; justify-content: center; }
.main-nav a { font-size: 14px; font-weight: 500; color: var(--text); transition: color 150ms ease; }
.main-nav a:hover, .main-nav a.active { color: var(--navy); }
.main-nav a.active { font-weight: 600; }
.header-cta { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.header-cta .btn { padding: 10px 18px; font-size: 14px; }
.mobile-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.mobile-toggle svg { width: 24px; height: 24px; color: var(--navy); }
@media (max-width: 900px){
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--cream); padding: 20px 24px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 8px 0; width: 100%; }
  .mobile-toggle { display: block; }
  .header-cta .btn-secondary { display: none; }
}
@media (max-width: 600px){ .header-cta .btn-secondary { display: none; } }

/* ============ HERO ============ */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,44,75,0.92) 0%, rgba(9,44,75,0.78) 45%, rgba(9,44,75,0.45) 75%, rgba(9,44,75,0.30) 100%); }
@media (max-width: 800px){ .hero-bg::after { background: linear-gradient(180deg, rgba(9,44,75,0.92) 0%, rgba(9,44,75,0.75) 100%); } }
.hero-content { position: relative; z-index: 2; color: white; padding: 80px 0; max-width: 720px; }
.hero h1 { color: white; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--beige); font-weight: 500; }
.hero-sub { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: rgba(255,255,255,0.88); line-height: 1.6; margin-bottom: 36px; max-width: 600px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; background: rgba(211,194,185,0.18); border: 1px solid rgba(211,194,185,0.35); border-radius: 999px; color: var(--beige-light); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; margin-bottom: 28px; }
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--beige); }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.18); }
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-item strong { font-family: var(--font-display); font-size: 1.8rem; color: var(--beige); font-weight: 600; line-height: 1; margin-bottom: 4px; }
.hero-trust-item span { font-size: 13px; color: rgba(255,255,255,0.7); }

/* Compact page hero for interior pages */
.page-hero { position: relative; background: var(--navy); color: white; padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 9vw, 90px); overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(211,194,185,0.10) 0%, transparent 70%); }
.page-hero-inner { position: relative; z-index: 1; max-width: 820px; }
.page-hero .eyebrow { color: var(--beige); margin-bottom: 18px; }
.page-hero h1 { color: white; margin-bottom: 20px; font-size: clamp(1.8rem, 4vw, 3rem); }
.page-hero h1 em { font-style: italic; color: var(--beige); font-weight: 500; }
.page-hero .lead { color: rgba(255,255,255,0.85); font-size: clamp(1rem, 1.4vw, 1.15rem); }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.breadcrumb a { color: var(--beige); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============ SECTION BASE ============ */
section { padding: var(--gap-section) 0; }
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head h2 { margin-bottom: 16px; }
.section-head .lead { font-size: 1.1rem; }

/* ============ SITUATIONS ============ */
.situations { background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.situations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.situation-card { padding: 32px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--cream); transition: all 250ms ease; }
.situation-card:hover { border-color: var(--beige); transform: translateY(-2px); box-shadow: var(--shadow); }
.situation-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.situation-icon svg { width: 22px; height: 22px; color: var(--beige); }
.situation-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.15rem; }
.situation-card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ============ LAW SECTION ============ */
.law { background: var(--cream); }
.law-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px){ .law-grid { grid-template-columns: 1fr; gap: 40px; } }
.law-text h2 { margin-bottom: 24px; }
.law-text p { color: var(--text-muted); margin-bottom: 20px; font-size: 1.05rem; }
.law-text strong { color: var(--navy); font-weight: 600; }
.law-quote { background: white; border-left: 3px solid var(--beige); padding: 28px 32px; border-radius: 0 var(--radius) var(--radius) 0; box-shadow: var(--shadow-sm); }
.law-quote-cite { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--navy); line-height: 1.5; margin-bottom: 16px; }
.law-quote-source { font-size: 13px; color: var(--text-faint); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

/* ============ STEPS ============ */
.steps { background: white; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
@media (max-width: 800px){ .steps-grid { grid-template-columns: 1fr; gap: 0; } }
.step { padding: 36px 28px; position: relative; }
.step:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 24%; bottom: 24%; width: 1px; background: var(--border); }
@media (max-width: 800px){ .step:not(:last-child)::after { right: auto; left: 24%; right: 24%; top: auto; bottom: 0; height: 1px; width: auto; } }
.step-num { font-family: var(--font-display); font-size: 3.5rem; line-height: 1; color: var(--beige); font-weight: 600; margin-bottom: 16px; }
.step h3 { margin-bottom: 10px; color: var(--navy); }
.step p { color: var(--text-muted); margin: 0; font-size: 0.98rem; }

/* ============ ABOUT ============ */
.about { background: var(--navy); color: white; position: relative; overflow: hidden; }
.about::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(211,194,185,0.08) 0%, transparent 70%); }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 900px){ .about-grid { grid-template-columns: 1fr; gap: 32px; } }
.about h2 { color: white; margin-bottom: 24px; }
.about h2 em { font-style: italic; color: var(--beige); }
.about p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 18px; }
.about-credentials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 36px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); }
.cred { display: flex; align-items: flex-start; gap: 12px; }
.cred-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: rgba(211,194,185,0.18); display: flex; align-items: center; justify-content: center; }
.cred-icon svg { width: 14px; height: 14px; color: var(--beige); }
.cred-text { font-size: 0.92rem; color: rgba(255,255,255,0.92); line-height: 1.4; }
.cred-text strong { color: var(--beige); font-weight: 600; display: block; margin-bottom: 2px; }

.about-photo { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; background: var(--navy); box-shadow: 0 20px 60px rgba(9,44,75,0.18); }
.about-photo-img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; }
.about-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(9,44,75,0.85) 100%); pointer-events: none; }
.about-photo-caption { position: absolute; bottom: 24px; left: 24px; right: 24px; padding: 16px 20px; background: rgba(9,44,75,0.92); backdrop-filter: blur(8px); border-radius: var(--radius); color: white; }
.about-photo-caption strong { font-family: var(--font-display); font-size: 1.3rem; display: block; margin-bottom: 2px; color: var(--beige); }
.about-photo-caption span { font-size: 13px; color: rgba(255,255,255,0.8); }

/* ============ FAQ ============ */
.faq { background: var(--cream); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: all 200ms ease; }
.faq-item[open] { border-color: var(--beige); box-shadow: var(--shadow-sm); }
.faq-item summary { padding: 22px 28px; cursor: pointer; font-weight: 600; color: var(--navy); font-size: 1.02rem; display: flex; align-items: center; justify-content: space-between; gap: 16px; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; color: var(--beige); transition: transform 250ms ease; flex-shrink: 0; line-height: 0.8; }
.faq-item[open] summary::after { content: '−'; }
.faq-item-content { padding: 0 28px 24px; color: var(--text-muted); line-height: 1.65; }
.faq-item-content p { margin: 0 0 12px; }
.faq-item-content p:last-child { margin: 0; }
.faq-item-content strong { color: var(--navy); }

/* ============ FORM ============ */
.form-section { background: white; }
.form-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
@media (max-width: 900px){ .form-wrap { grid-template-columns: 1fr; gap: 40px; } }
.form-intro h2 { margin-bottom: 16px; }
.form-intro .lead { margin-bottom: 32px; }
.form-benefits { list-style: none; padding: 0; margin: 0; }
.form-benefits li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.form-benefits li:last-child { border: 0; }
.form-benefits svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--success); margin-top: 2px; }
.form-benefits div strong { color: var(--navy); display: block; margin-bottom: 2px; font-size: 0.98rem; }
.form-benefits div span { color: var(--text-muted); font-size: 0.92rem; }

.contact-form { background: var(--cream); padding: 36px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; letter-spacing: 0.02em; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); background: white; font-family: inherit; font-size: 15px; color: var(--text); transition: border-color 150ms ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(9,44,75,0.08); }
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px){ .field-row { grid-template-columns: 1fr; } }
.form-submit { width: 100%; margin-top: 8px; padding: 16px; font-size: 16px; }
.form-disclaimer { margin-top: 16px; font-size: 12px; color: var(--text-faint); line-height: 1.5; text-align: center; }
.form-disclaimer a { color: var(--navy); text-decoration: underline; }

.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success svg { width: 56px; height: 56px; color: var(--success); margin: 0 auto 16px; }
.form-success h3 { color: var(--navy); font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); margin: 0; }
.contact-form.submitted .form-fields { display: none; }
.contact-form.submitted .form-success { display: block; }

/* ============ AREAS ============ */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.area-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: all 250ms ease; display: flex; flex-direction: column; }
.area-card:hover { border-color: var(--beige); transform: translateY(-3px); box-shadow: var(--shadow); }
.area-card-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.area-card-icon svg { width: 24px; height: 24px; color: var(--beige); }
.area-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.2rem; }
.area-card p { color: var(--text-muted); font-size: 0.96rem; margin: 0 0 20px; flex: 1; }
.area-card-cta { color: var(--navy); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.area-card-cta::after { content: '→'; transition: transform 200ms ease; }
.area-card:hover .area-card-cta::after { transform: translateX(4px); }

/* ============ BLOG ============ */
.blog-index { background: var(--cream); padding-top: 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 32px; }
.blog-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 250ms ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--beige); }
.blog-card-img { aspect-ratio: 16/9; background: var(--navy-soft); position: relative; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.03); }
.blog-card-cat { position: absolute; top: 14px; left: 14px; background: rgba(9,44,75,0.92); color: var(--beige); padding: 5px 12px; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.blog-card-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { font-size: 12px; color: var(--text-faint); margin-bottom: 12px; letter-spacing: 0.04em; }
.blog-card h3 { color: var(--navy); font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; line-height: 1.25; margin-bottom: 12px; letter-spacing: -0.01em; }
.blog-card p { color: var(--text-muted); font-size: 0.95rem; margin: 0 0 18px; flex: 1; }
.blog-card-cta { color: var(--navy); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.blog-card-cta::after { content: '→'; transition: transform 200ms ease; }
.blog-card:hover .blog-card-cta::after { transform: translateX(4px); }

.blog-filters { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 50px; }
.blog-filter { padding: 8px 18px; border-radius: 999px; border: 1px solid var(--border); background: white; color: var(--text-muted); font-size: 14px; font-weight: 500; cursor: pointer; transition: all 200ms ease; }
.blog-filter:hover { border-color: var(--navy); color: var(--navy); }
.blog-filter.active { background: var(--navy); color: white; border-color: var(--navy); }

/* ============ ARTICLE ============ */
.article { background: white; padding: clamp(40px, 6vw, 80px) 0 var(--gap-section); }
.article-container { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--text-faint); margin-bottom: 20px; letter-spacing: 0.02em; }
.article-meta strong { color: var(--navy); font-weight: 600; }
.article h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 22px; line-height: 1.2; }
.article-lead { font-size: 1.18rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 40px; padding-bottom: 30px; border-bottom: 1px solid var(--border); font-family: var(--font-display); font-style: italic; }
.article-body { font-size: 1.05rem; line-height: 1.75; color: var(--text); }
.article-body h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 50px 0 18px; color: var(--navy); }
.article-body h3 { font-size: 1.3rem; margin: 38px 0 14px; color: var(--navy); font-family: var(--font-display); font-weight: 600; }
.article-body p { margin: 0 0 22px; }
.article-body ul, .article-body ol { margin: 0 0 22px; padding-left: 26px; }
.article-body li { margin-bottom: 10px; }
.article-body strong { color: var(--navy); font-weight: 600; }
.article-body a { color: var(--navy); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.article-body blockquote { border-left: 3px solid var(--beige); padding: 20px 28px; margin: 30px 0; background: var(--cream); border-radius: 0 var(--radius) var(--radius) 0; font-family: var(--font-display); font-style: italic; color: var(--navy); font-size: 1.15rem; line-height: 1.5; }
.article-body blockquote cite { display: block; margin-top: 12px; font-size: 0.85rem; font-style: normal; font-family: var(--font-body); color: var(--text-faint); letter-spacing: 0.04em; text-transform: uppercase; }
.article-callout { background: var(--navy); color: white; padding: 28px 32px; border-radius: var(--radius-lg); margin: 36px 0; }
.article-callout h3 { color: var(--beige); margin: 0 0 12px; font-family: var(--font-display); }
.article-callout p { color: rgba(255,255,255,0.9); margin: 0 0 18px; }
.article-callout p:last-child { margin: 0; }

.article-author { display: flex; gap: 18px; align-items: center; padding: 24px; background: var(--cream); border-radius: var(--radius-lg); margin: 50px 0 30px; border: 1px solid var(--border); }
.article-author img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: center 18%; flex-shrink: 0; }
.article-author-text strong { color: var(--navy); font-family: var(--font-display); font-size: 1.15rem; display: block; margin-bottom: 4px; }
.article-author-text span { font-size: 13px; color: var(--text-muted); }

.article-cta-box { background: var(--navy); color: white; padding: 36px; border-radius: var(--radius-lg); margin: 40px 0; text-align: center; }
.article-cta-box h3 { color: white; font-family: var(--font-display); font-size: 1.6rem; margin: 0 0 12px; }
.article-cta-box p { color: rgba(255,255,255,0.85); margin: 0 0 24px; }
.article-cta-box .btn-whatsapp { padding: 14px 28px; }

.article-related { background: var(--cream); padding: var(--gap-section) 0; border-top: 1px solid var(--border); }
.article-related h2 { text-align: center; margin-bottom: 40px; }

/* ============ EMPRESA ============ */
.empresa-info { background: white; }
.empresa-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }
@media (max-width: 900px){ .empresa-grid { grid-template-columns: 1fr; gap: 32px; } }
.empresa-body { font-size: 1.02rem; line-height: 1.75; color: var(--text); }
.empresa-body h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 40px 0 18px; color: var(--navy); }
.empresa-body h2:first-child { margin-top: 0; }
.empresa-body p { margin: 0 0 18px; }
.empresa-body strong { color: var(--navy); }
.empresa-body ul { margin: 0 0 22px; padding-left: 24px; }
.empresa-body li { margin-bottom: 8px; }
.empresa-sidebar { position: sticky; top: 100px; }
.empresa-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; }
.empresa-card h3 { color: var(--navy); margin-bottom: 18px; font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }
.empresa-card-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: 14px; }
.empresa-card-row:last-child { border: 0; }
.empresa-card-row span { color: var(--text-muted); }
.empresa-card-row strong { color: var(--navy); font-weight: 600; text-align: right; }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 60px 0 30px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px){ .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 60px; width: auto; filter: brightness(1.1); }
.footer-about { line-height: 1.6; }
.footer h4 { font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--beige); margin-bottom: 16px; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 10px; }
.footer-list a { color: rgba(255,255,255,0.7); transition: color 150ms ease; }
.footer-list a:hover { color: var(--beige); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; margin-top: 3px; color: var(--beige); flex-shrink: 0; }
.footer-bottom { padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-bottom strong { color: rgba(255,255,255,0.7); }

/* ============ WHATSAPP FLOAT ============ */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 100; width: 60px; height: 60px; border-radius: 50%; background: #25D366; box-shadow: 0 8px 24px rgba(37,211,102,0.4); display: flex; align-items: center; justify-content: center; transition: all 200ms ease; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; color: white; }
.wa-float::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #25D366; opacity: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 0.6; transform: scale(1); } 100% { opacity: 0; transform: scale(1.4); } }
@media (max-width: 600px){ .wa-float { width: 56px; height: 56px; bottom: 18px; right: 18px; } }

/* ============ REVEAL ANIMATION ============ */
/* Only hide reveal when JS is available — otherwise content must be visible */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.js .reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){ .js .reveal { opacity: 1; transform: none; transition: none; } .wa-float::after { animation: none; } }
