/* Fabrício Pastana Advocacia — Site estático (HTML/CSS/JS) */
/* Design system convertido do projeto Lovable para CSS puro */

:root {
  --navy-deep: #14172e;
  --navy: #1c2040;
  --gold: #d4b16a;
  --gold-soft: #e2c587;

  --background: #faf8f3;
  --foreground: #14172e;
  --card: #ffffff;
  --secondary: #f1ede4;
  --muted-foreground: #5a5e75;
  --border: #d8d2c4;
  --white: #ffffff;

  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* Reset básico */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Tipografia */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.15;
}
p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  line-height: 1.7;
}

/* Evita justificar em endereços, e-mails, telefones */
address, address p,
.contact-block, .contact-block p, .contact-block li,
li,
a[href^="mailto:"], a[href^="tel:"],
a[href^="https://wa.me"], a[href^="https://web.whatsapp.com"] {
  text-align: left;
  text-indent: 0;
  hyphens: manual;
  -webkit-hyphens: manual;
  font-style: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}
.no-justify, .no-justify p { text-align: left; text-indent: 0; hyphens: manual; }

/* Cores utilitárias */
.bg-navy-deep { background: var(--navy-deep); }
.bg-navy { background: var(--navy); }
.bg-gold { background: var(--gold); }
.bg-card { background: var(--card); }
.bg-secondary { background: var(--secondary); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-navy { color: var(--navy-deep); }
.text-muted { color: var(--muted-foreground); }
.font-serif { font-family: var(--font-serif); }

/* Layout helpers */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }

/* Linha dourada */
.gold-rule {
  height: 1px; width: 8rem; margin: 1.5rem 0;
  background: linear-gradient(to right, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
}
.gold-rule.center { margin-left: auto; margin-right: auto; }
.gold-rule.sm { width: 4rem; }
.gold-rule.md { width: 6rem; }

/* Botões */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.25em;
  border-radius: 2px;
  transition: all .25s ease;
  cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy-deep); }
.btn-outline-gold.on-light { color: var(--navy-deep); }
.btn-outline-gold.on-light:hover { color: var(--navy-deep); }

/* Eyebrow + subtítulos */
.eyebrow {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

/* ==================== HEADER ==================== */
.site-header {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(212, 177, 106, 0.2);
  position: sticky; top: 0; z-index: 50;
}
.site-header .inner {
  max-width: 1200px; margin: 0 auto; padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand img { height: 48px; width: 48px; object-fit: contain; }
.brand-text { line-height: 1.1; }
.brand-name {
  font-family: var(--font-serif); color: var(--gold);
  font-size: 1.05rem; letter-spacing: 0.04em; text-transform: uppercase;
}
.brand-sub {
  font-size: 0.625rem; text-transform: uppercase;
  letter-spacing: 0.25em; color: rgba(212, 177, 106, 0.7);
}
.nav-main { display: none; align-items: center; gap: 2rem; }
.nav-main a {
  font-size: 0.875rem; color: rgba(255, 255, 255, 0.8);
  transition: color .2s;
}
.nav-main a:hover, .nav-main a.active { color: var(--gold); }
.nav-main .phone-link {
  color: var(--gold); display: inline-flex; align-items: center; gap: 0.5rem;
}
.nav-main .btn { padding: 0.55rem 1.25rem; }
.menu-toggle { color: var(--gold); display: block; padding: 0.25rem; }
.menu-toggle svg { width: 28px; height: 28px; }

.mobile-nav {
  display: none;
  background: var(--navy-deep);
  border-top: 1px solid rgba(212, 177, 106, 0.2);
  padding: 1rem 1.5rem;
  flex-direction: column; gap: 1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: rgba(255, 255, 255, 0.85); }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .divider { border-top: 1px solid rgba(212, 177, 106, 0.2); padding-top: 0.75rem; color: var(--gold); display: inline-flex; align-items: center; gap: 0.5rem; }

@media (min-width: 1024px) {
  .nav-main { display: flex; }
  .menu-toggle { display: none; }
}
@media (max-width: 639px) {
  .brand-text { display: none; }
}

/* ==================== HERO PRINCIPAL (Home) ==================== */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy-deep); color: white;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/fabricio-seated.jpg');
  background-size: cover; background-position: center;
  opacity: 0.08; filter: grayscale(100%) contrast(1.1);
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,177,106,0.18) 0%, transparent 60%);
}
.hero-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--navy-deep), transparent, rgba(20,23,46,0.4));
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem 0;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: end;
  min-height: 640px;
}
.hero-copy { text-align: center; padding-bottom: 3rem; }
.hero-copy h1 {
  font-family: var(--font-serif); color: white;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1; letter-spacing: 0.04em;
}
.hero-copy p {
  color: rgba(255,255,255,0.8); font-size: 1.1rem;
  max-width: 36rem; margin: 0 auto; text-align: center;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; justify-content: center; }
.hero-img { position: relative; display: flex; align-items: flex-end; justify-content: center; }
.hero-img img { max-height: 600px; width: auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.5)); }
.hero-divider { height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); }

@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1.1fr 1fr; align-items: center; padding: 6rem 1.5rem; }
  .hero-copy { text-align: left; padding-bottom: 0; }
  .hero-copy p { margin-left: 0; text-align: justify; }
  .hero-actions { justify-content: flex-start; }
}

/* ==================== PAGE HERO (subpáginas) ==================== */
.page-hero {
  background: var(--navy-deep); color: white;
  padding: 5rem 1.5rem; text-align: center;
  border-bottom: 1px solid rgba(212,177,106,0.2);
}
.page-hero h1 {
  font-family: var(--font-serif); color: var(--gold);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}
.page-hero p {
  color: rgba(255,255,255,0.75); max-width: 42rem; margin: 1.5rem auto 0;
  text-align: center;
}

/* ==================== SEÇÕES GENÉRICAS ==================== */
.section { padding: 5rem 1.5rem; }
.section-title { text-align: center; margin-bottom: 3.5rem; }
.section-title h2 {
  font-family: var(--font-serif); color: var(--navy-deep);
  font-size: clamp(2rem, 4vw, 3rem);
}
.section-title.on-dark h2 { color: var(--gold); }

/* About (home) */
.about { padding: 5rem 1.5rem; background: var(--background); }
.about-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
.about-image { position: relative; }
.about-image .frame { position: absolute; inset: -1rem; border: 1px solid rgba(212,177,106,0.5); }
.about-image img { position: relative; width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--navy-deep); color: white;
  padding: 1rem 1.5rem; border-left: 2px solid var(--gold);
  display: none;
}
.about-badge .lbl { font-size: 0.625rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(212,177,106,0.8); }
.about-badge .val { font-family: var(--font-serif); font-size: 1.25rem; color: var(--gold); }
.about h2 { font-family: var(--font-serif); color: var(--navy-deep); font-size: clamp(2rem, 4vw, 3rem); }
.about .stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.about .stats > div { border-left: 2px solid var(--gold); padding-left: 1rem; }
.about .stats .n { font-family: var(--font-serif); font-size: 1.5rem; color: var(--navy-deep); }
.about .stats .l { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-foreground); }
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; }
  .about-badge { display: block; }
}

/* Diferenciais */
.diff { background: var(--navy-deep); color: white; padding: 5rem 1.5rem; border-top: 1px solid rgba(212,177,106,0.2); border-bottom: 1px solid rgba(212,177,106,0.2); }
.diff-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.diff-card {
  text-align: center; padding: 1.5rem;
  border: 1px solid rgba(212,177,106,0.2);
  transition: all .25s;
}
.diff-card:hover { border-color: rgba(212,177,106,0.6); transform: translateY(-4px); }
.diff-card .ico { color: var(--gold); margin: 0 auto 1rem; }
.diff-card p { color: rgba(255,255,255,0.85); font-size: 0.9rem; text-align: center; }
@media (min-width: 640px) { .diff-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .diff-grid { grid-template-columns: repeat(5, 1fr); } }

/* Cards de áreas */
.areas-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem; }
.area-card {
  background: var(--card); border: 1px solid var(--border);
  padding: 2.5rem; transition: all .25s;
}
.area-card:hover { border-color: var(--gold); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15); transform: translateY(-4px); }
.area-card .ico-box {
  width: 64px; height: 64px; margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-deep); transition: background .25s;
}
.area-card:hover .ico-box { background: var(--gold); }
.area-card .ico-box svg { color: var(--gold); transition: color .25s; }
.area-card:hover .ico-box svg { color: var(--navy-deep); }
.area-card h3 { font-family: var(--font-serif); color: var(--navy-deep); font-size: 1.25rem; margin-bottom: 1rem; }
.area-card ul { display: flex; flex-direction: column; gap: 0.75rem; }
.area-card li { display: flex; gap: 0.75rem; font-size: 0.9rem; color: var(--muted-foreground); }
.area-card li .bullet { color: var(--gold); }
@media (min-width: 768px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }

/* Autoridade */
.authority {
  position: relative; color: white;
  padding: 5rem 1.5rem;
  background: linear-gradient(rgba(20,23,46,0.92), rgba(20,23,46,0.95)), url('../assets/fabricio-seated.jpg') center/cover;
}
.authority-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.authority-card {
  text-align: center; padding: 2rem;
  border: 1px solid rgba(212,177,106,0.3);
  background: rgba(20,23,46,0.3); backdrop-filter: blur(4px);
}
.authority-card .ico { color: var(--gold); margin: 0 auto 1rem; }
.authority-card .n { font-family: var(--font-serif); color: var(--gold); font-size: clamp(2rem, 4vw, 3rem); }
.authority-card .l { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 0.75rem; }
@media (min-width: 1024px) { .authority-grid { grid-template-columns: repeat(4, 1fr); } }

/* Blog */
.blog { background: var(--secondary); padding: 5rem 1.5rem; }
.blog-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem; }
.blog-card { background: var(--card); border: 1px solid var(--border); transition: border-color .25s; }
.blog-card:hover { border-color: var(--gold); }
.blog-thumb {
  height: 12rem; position: relative;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  display: flex; align-items: center; justify-content: center;
}
.blog-thumb .cat {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.625rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(212,177,106,0.4); padding: 0.25rem 0.75rem;
}
.blog-card .body { padding: 1.75rem; }
.blog-card .date { font-size: 0.625rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 0.75rem; }
.blog-card h3 { font-family: var(--font-serif); color: var(--navy-deep); font-size: 1.1rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

/* Contato (home) */
.contact-section { padding: 5rem 1.5rem; background: var(--background); }
.wa-cta {
  display: block; max-width: 1100px; margin: 0 auto 3rem;
  background: var(--navy-deep); border-left: 4px solid var(--gold);
  padding: 2rem; transition: background .2s;
}
.wa-cta:hover { background: var(--navy); }
.wa-cta-inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1.5rem; }
.wa-cta .left { display: flex; align-items: center; gap: 1.25rem; }
.wa-cta .ico-box { width: 56px; height: 56px; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-cta .ico-box svg { color: var(--navy-deep); }
.wa-cta .lbl { font-size: 0.625rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); }
.wa-cta .ttl { font-family: var(--font-serif); font-size: 1.5rem; color: white; margin-top: 0.25rem; }
.wa-cta .arrow { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
@media (min-width: 768px) { .wa-cta-inner { flex-direction: row; } }

.contact-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.contact-form-card { background: var(--card); border: 1px solid var(--border); padding: 2.5rem; }
.contact-form-card h3 { font-family: var(--font-serif); color: var(--navy-deep); font-size: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.contact-form input, .contact-form textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--border);
  padding: 0.5rem 0; font: inherit; color: var(--navy-deep);
}
.contact-form textarea { border: 1px solid var(--border); padding: 0.75rem; font-size: 0.9rem; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-info-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-list a {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--card); padding: 1.25rem;
  border-left: 2px solid var(--gold);
  transition: opacity .2s;
}
.contact-info-list a:hover { opacity: 0.85; }
.contact-info-list .ico-box { width: 44px; height: 44px; background: var(--navy-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-list .ico-box svg { color: var(--gold); }
.contact-info-list .t { font-family: var(--font-serif); color: var(--navy-deep); }
.contact-info-list .d { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.25rem; }
.offices-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
.office-card { background: var(--card); padding: 1.25rem; border-left: 2px solid var(--gold); }
.office-card .head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.office-card .head svg { color: var(--gold); }
.office-card .head p { font-family: var(--font-serif); color: var(--navy-deep); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem; }
.office-card .body { font-size: 0.875rem; color: var(--muted-foreground); }
.office-card .body p { text-align: left; }
@media (min-width: 640px) { .offices-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

/* Página /areas — cards maiores 2 cols */
.areas-page-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem; }
.areas-page-grid .area-card .head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.areas-page-grid .area-card .head svg { color: var(--gold); }
.areas-page-grid .area-card h2 { font-family: var(--font-serif); color: var(--navy-deep); font-size: 1.5rem; }
@media (min-width: 768px) { .areas-page-grid { grid-template-columns: 1fr 1fr; } }
.alert-box {
  max-width: 700px; margin: 4rem auto 0;
  padding: 2rem; border-left: 4px solid var(--gold);
  background: var(--secondary); display: flex; gap: 1rem;
}
.alert-box svg { color: var(--gold); flex-shrink: 0; }
.alert-box h3 { font-family: var(--font-serif); color: var(--navy-deep); font-size: 1.25rem; margin-bottom: 0.5rem; }
.alert-box p { font-size: 0.9rem; color: var(--muted-foreground); }

/* Página /criminal */
.cards-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 5rem; }
.cards-3 .card-mini { text-align: center; padding: 2rem; border: 1px solid var(--border); }
.cards-3 .card-mini svg { color: var(--gold); margin: 0 auto 1rem; }
.cards-3 .card-mini h3 { font-family: var(--font-serif); color: var(--navy-deep); font-size: 1.25rem; margin-bottom: 0.5rem; }
.cards-3 .card-mini p { font-size: 0.875rem; color: var(--muted-foreground); text-align: center; }
@media (min-width: 768px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }

.phases-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
.phase-card { background: var(--navy-deep); color: white; padding: 2rem; border-left: 2px solid var(--gold); }
.phase-card .num { color: var(--gold); font-family: var(--font-serif); font-size: 1.875rem; }
.phase-card h3 { font-family: var(--font-serif); color: var(--gold); font-size: 1.5rem; margin: 0.5rem 0 0.75rem; }
.phase-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
@media (min-width: 768px) { .phases-grid { grid-template-columns: 1fr 1fr; } }

.criminal-services { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-top: 5rem; align-items: start; }
.criminal-services h2 { font-family: var(--font-serif); color: var(--navy-deep); font-size: 1.875rem; }
.criminal-services ul { display: flex; flex-direction: column; gap: 0.75rem; }
.criminal-services li { display: flex; gap: 0.75rem; color: var(--muted-foreground); }
.criminal-services .bullet { color: var(--gold); }
.urgency-box { background: var(--secondary); padding: 2.5rem; border-top: 2px solid var(--gold); }
.urgency-box svg { color: var(--gold); margin-bottom: 1rem; }
.urgency-box h3 { font-family: var(--font-serif); color: var(--navy-deep); font-size: 1.5rem; margin-bottom: 0.75rem; }
.urgency-box p { font-size: 0.9rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .criminal-services { grid-template-columns: 1fr 1fr; } }

/* Página /sobre */
.sobre-row { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; padding: 0 0 5rem; }
.sobre-row + .sobre-row { padding-top: 0; }
.sobre-image { position: relative; }
.sobre-image .frame { position: absolute; inset: 0; border: 1px solid var(--gold); transform: translate(1.25rem, 1.25rem); }
.sobre-image.left .frame { transform: translate(-1.25rem, 1.25rem); }
.sobre-image img { position: relative; width: 100%; object-fit: cover; }
.sobre-text h2 { font-family: var(--font-serif); color: var(--navy-deep); font-size: 2rem; }
.sobre-text p { color: var(--muted-foreground); margin-bottom: 1rem; }
.sobre-text ul { display: flex; flex-direction: column; gap: 1.25rem; color: var(--muted-foreground); }
.sobre-text ul strong { display: block; font-family: var(--font-serif); color: var(--navy-deep); font-size: 1.1rem; margin-bottom: 0.25rem; font-weight: 500; }
@media (min-width: 768px) { .sobre-row { grid-template-columns: 1fr 1fr; } .sobre-row.reverse .sobre-image { order: 2; } }

/* Página /contato */
.contato-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 4rem; }
.contato-grid h2 { font-family: var(--font-serif); color: var(--navy-deep); font-size: 1.875rem; }
.contato-grid .col-form { background: var(--navy-deep); color: white; padding: 2.5rem; }
.contato-grid .col-form h2 { color: var(--gold); }
.contato-grid .col-form label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(212,177,106,0.8); margin-bottom: 0.5rem; }
.contato-grid .col-form input { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(212,177,106,0.3); padding: 0.5rem 0; color: white; font: inherit; }
.contato-grid .col-form textarea { width: 100%; background: transparent; border: 1px solid rgba(212,177,106,0.3); padding: 0.75rem; color: white; font: inherit; font-size: 0.9rem; resize: vertical; }
.contato-grid .col-form input:focus, .contato-grid .col-form textarea:focus { outline: none; border-color: var(--gold); }
.contato-grid .col-form form { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.contato-grid .col-form .field { display: block; }
.contato-grid .col-form .note { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-align: center; }
.channels { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.channels .ch {
  display: flex; gap: 1.25rem; align-items: flex-start;
  border-bottom: 1px solid var(--border); padding-bottom: 1.25rem;
  transition: opacity .2s;
}
.channels .ch:hover { opacity: 0.8; }
.channels .ico-box { width: 48px; height: 48px; background: var(--navy-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.channels .ico-box svg { color: var(--gold); }
.channels .t { font-family: var(--font-serif); color: var(--navy-deep); font-size: 1.05rem; }
.channels .d { font-size: 0.875rem; color: var(--muted-foreground); }
@media (min-width: 768px) { .contato-grid { grid-template-columns: 1fr 1fr; } }

/* Página /agendar */
.agendar-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem; }
.agendar-card { display: flex; flex-direction: column; justify-content: space-between; padding: 2.5rem; transition: all .25s; }
.agendar-card.dark { background: var(--navy-deep); color: white; }
.agendar-card.dark:hover { background: rgba(20,23,46,0.92); }
.agendar-card.light { background: white; border: 1px solid var(--border); }
.agendar-card.light:hover { border-color: var(--gold); }
.agendar-card .ico-box { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.agendar-card.dark .ico-box { background: rgba(212,177,106,0.15); }
.agendar-card.dark .ico-box svg { color: var(--gold); }
.agendar-card.light .ico-box { background: var(--navy-deep); }
.agendar-card.light .ico-box svg { color: var(--gold); }
.agendar-card .lbl { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 0.75rem; }
.agendar-card.dark .lbl { color: rgba(212,177,106,0.8); }
.agendar-card.light .lbl { color: var(--muted-foreground); }
.agendar-card h2 { font-family: var(--font-serif); font-size: 1.875rem; margin-bottom: 1rem; }
.agendar-card.dark h2 { color: var(--gold); }
.agendar-card.light h2 { color: var(--navy-deep); }
.agendar-card .desc { line-height: 1.7; }
.agendar-card.dark .desc { color: rgba(255,255,255,0.8); }
.agendar-card.light .desc { color: var(--muted-foreground); }
.agendar-card .meta { font-size: 0.875rem; margin-top: 1rem; }
.agendar-card.dark .meta { color: rgba(255,255,255,0.6); }
.agendar-card.light .meta { color: var(--muted-foreground); }
.agendar-card .arrow { margin-top: 2.5rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.25em; }
.agendar-card.dark .arrow { color: var(--gold); }
.agendar-card.light .arrow { color: var(--navy-deep); }
@media (min-width: 768px) { .agendar-grid { grid-template-columns: 1fr 1fr; } }

.video-card {
  max-width: 1000px; margin: 2rem auto 0;
  display: flex; flex-direction: column; gap: 1.5rem;
  border: 1px solid var(--gold);
  background: linear-gradient(to right, var(--navy-deep), rgba(20,23,46,0.9));
  color: white; padding: 2rem;
}
.video-card .ico-box { width: 56px; height: 56px; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.video-card .ico-box svg { color: var(--navy-deep); }
.video-card .lbl { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(212,177,106,0.8); margin-bottom: 0.5rem; }
.video-card h2 { font-family: var(--font-serif); color: var(--gold); font-size: 1.5rem; }
.video-card .desc { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-top: 0.5rem; }
.video-card .arrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.25em; color: var(--gold); }
@media (min-width: 768px) { .video-card { flex-direction: row; align-items: center; } }

.agendar-notes { max-width: 1000px; margin: 2.5rem auto 0; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.agendar-notes .note { display: flex; align-items: flex-start; gap: 1rem; border-left: 2px solid var(--gold); padding-left: 1.25rem; }
.agendar-notes .note svg { color: var(--gold); flex-shrink: 0; margin-top: 0.25rem; }
.agendar-notes .note p:first-child { font-family: var(--font-serif); color: var(--navy-deep); }
.agendar-notes .note .sub { font-size: 0.875rem; color: var(--muted-foreground); }
@media (min-width: 640px) { .agendar-notes { grid-template-columns: 1fr 1fr; } }

/* ==================== FOOTER ==================== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); margin-top: 6rem; }
.site-footer .top { max-width: 1200px; margin: 0 auto; padding: 4rem 1.5rem; display: grid; grid-template-columns: 1fr; gap: 3rem; }
.site-footer img.logo { height: 64px; width: 64px; margin-bottom: 1rem; }
.site-footer .brand-line { font-family: var(--font-serif); color: var(--gold); font-size: 1.25rem; text-transform: uppercase; }
.site-footer .brand-sub { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(212,177,106,0.6); margin-top: 0.25rem; }
.site-footer .lead { margin-top: 1.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.site-footer .oab { margin-top: 1rem; font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(212,177,106,0.7); }
.site-footer h4 { color: var(--gold); text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.25em; margin-bottom: 1rem; font-family: var(--font-sans); font-weight: 600; }
.site-footer ul { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.site-footer a:hover { color: var(--gold); }
.site-footer .contact-li { display: inline-flex; align-items: flex-start; gap: 0.5rem; }
.site-footer .contact-li svg { color: var(--gold); flex-shrink: 0; margin-top: 0.15rem; }
.site-footer .bottom { border-top: 1px solid rgba(212,177,106,0.15); }
.site-footer .bottom .inner {
  max-width: 1200px; margin: 0 auto; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.4);
}
@media (min-width: 768px) {
  .site-footer .top { grid-template-columns: repeat(3, 1fr); }
  .site-footer .bottom .inner { flex-direction: row; justify-content: space-between; }
}

/* ==================== FLOATING CONTACT ==================== */
.floating { position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 60; display: flex; flex-direction: column; gap: 0.75rem; }
.floating a {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform .2s, background .2s;
}
.floating .wa { background: #25D366; }
.floating .wa:hover { transform: scale(1.05); }
.floating .wa svg { color: white; }
.floating .phone { background: var(--navy-deep); border: 1px solid rgba(212,177,106,0.4); }
.floating .phone:hover { background: var(--gold); }
.floating .phone svg { color: var(--gold); }
.floating .phone:hover svg { color: var(--navy-deep); }
@media (min-width: 768px) { .floating .phone { display: none; } }
