/* ============================================================
   RMBG ADVOGADOS — TEMA WORDPRESS
   Versão: 1.0.0
   ============================================================ */

/* ── VARIÁVEIS ─────────────────────────────────────────────── */
:root {
  --green-dark:    #2C4A3E;
  --green-mid:     #3D6B5A;
  --green-light:   #4E8C73;
  --beige:         #F5F0E8;
  --beige-dark:    #EAE3D5;
  --gold:          #C9A84C;
  --gold-light:    #E8C96B;
  --white:         #FFFFFF;
  --gray-100:      #F8F9FA;
  --gray-200:      #E9ECEF;
  --gray-400:      #9CA3AF;
  --gray-600:      #6B7280;
  --gray-900:      #1A1A1A;
  --font-serif:    'Cormorant Garamond', 'Georgia', serif;
  --font-sans:     'Lato', 'Inter', sans-serif;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.08);
  --shadow-md:     0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:     0 24px 64px rgba(0,0,0,.16);
  --radius:        6px;
  --transition:    .3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }

ul, ol { list-style: none; }

/* ── TIPOGRAFIA ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-gold   { color: var(--gold); }
.text-green  { color: var(--green-dark); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide { max-width: 1400px; }

.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 128px 0; }

.section-label {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
}

/* ── BOTÕES ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn--primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--green-dark);
}

.btn--outline-dark {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn--outline-dark:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn--lg { padding: 18px 40px; font-size: 1rem; }
.btn--sm { padding: 10px 22px; font-size: .8rem; }

/* ── HEADER ──────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 20px 0;
}

#site-header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-mark {
  display: grid;
  grid-template-columns: auto 1px auto;
  align-items: center;
  gap: 10px;
  color: var(--white);
  transition: color var(--transition);
}

.scrolled .logo-mark { color: var(--green-dark); }

.logo-initials {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: .05em;
}

.logo-line {
  width: 1px;
  height: 36px;
  background: currentColor;
  opacity: .6;
}

.logo-text {
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.6;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: 4px;
  transition: all var(--transition);
}

.main-nav a:hover { color: var(--white); }
.scrolled .main-nav a { color: var(--gray-600); }
.scrolled .main-nav a:hover { color: var(--green-dark); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; opacity: 1 !important; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.scrolled .menu-toggle span { background: var(--green-dark); }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  opacity: .25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,74,62,.95) 0%, rgba(44,74,62,.7) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
  max-width: 700px;
}
.hero > .container {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 300;
}

.hero h1 strong {
  font-weight: 600;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stats {
  position: relative;
  z-index: 2;
}

.hero-stats-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}

.stat-item { text-align: left; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

/* ── SERVIÇOS ─────────────────────────────────────────────────── */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 40px 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--green-dark);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleY(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(44,74,62,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--green-dark);
  font-size: 1.5rem;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--green-dark);
}

.service-card p {
  color: var(--gray-600);
  font-size: .95rem;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: .05em;
}

.service-link::after {
  content: '→';
  transition: transform var(--transition);
}

.service-link:hover::after { transform: translateX(4px); }

/* ── SOBRE ────────────────────────────────────────────────────── */
.about { background: var(--beige); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 560px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 85%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 50%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.about-badge-years {
  position: absolute;
  top: 40%;
  right: -20px;
  background: var(--green-dark);
  color: var(--white);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge-years .num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gold-light);
}

.about-badge-years .lbl {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .8;
  margin-top: 4px;
}

.about-content {}

.about-content .section-label { margin-bottom: 8px; }

.about-content h2 { margin-bottom: 24px; }

.about-content p { color: var(--gray-600); margin-bottom: 16px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--green-dark);
}

.about-feature-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── NÚMEROS ──────────────────────────────────────────────────── */
.numbers-section {
  background: var(--green-dark);
  padding: 80px 0;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.number-item {}

.number-value {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.number-label {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── EQUIPE ───────────────────────────────────────────────────── */
.team { background: var(--white); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.team-card {
  text-align: center;
  position: relative;
  max-width: 320px;
}

.team-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
  aspect-ratio: 3/4;
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .5s ease;
}

.team-card:hover .team-photo-wrap img { transform: scale(1.04); }

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,74,62,.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.team-card:hover .team-photo-overlay { opacity: 1; }

.team-oab {
  font-size: .8rem;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.1);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.3);
}

.team-card h3 {
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.team-card .role {
  font-size: .85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .05em;
}

/* ── BLOG ─────────────────────────────────────────────────────── */
.blog-section { background: var(--beige); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.blog-card:hover .blog-thumb img { transform: scale(1.05); }

.blog-content { padding: 28px; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .78rem;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.blog-category {
  background: rgba(44,74,62,.08);
  color: var(--green-dark);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .75rem;
}

.blog-content h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--gray-900);
  transition: color var(--transition);
}

.blog-card:hover .blog-content h3 { color: var(--green-dark); }

.blog-content p { font-size: .9rem; color: var(--gray-600); }

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-dark);
}

/* ── CTA BANNER ───────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '"';
  position: absolute;
  top: -40px;
  right: 5%;
  font-family: var(--font-serif);
  font-size: 20rem;
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.cta-inner p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-top: 12px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  align-items: flex-start;
}

/* ── CONTATO / AGENDAMENTO ────────────────────────────────────── */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 20px; }

.contact-info p { color: var(--gray-600); margin-bottom: 32px; }

.contact-items { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(44,74,62,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text .label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact-item-text .value {
  font-size: .95rem;
  color: var(--gray-900);
  font-weight: 500;
}

.contact-item-text a:hover { color: var(--green-dark); }

/* Form */
.booking-form {
  background: var(--beige);
  border-radius: 16px;
  padding: 48px;
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: .9rem;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(78,140,115,.15);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── MAPA ─────────────────────────────────────────────────────── */
.map-section { padding: 0; }

.map-section iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
  filter: grayscale(30%);
}

/* ── FOOTER ───────────────────────────────────────────────────── */
#site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.7);
}

.footer-main {
  padding: 80px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
}

.footer-brand .logo-mark { color: var(--white); margin-bottom: 20px; }

.footer-brand p {
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .82rem;
}

.oab-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.06);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

/* ── WHATSAPP FLUTUANTE ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.whatsapp-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  animation: whatsapp-pulse 3s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
}

.whatsapp-btn svg { width: 30px; height: 30px; fill: white; }

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.65), 0 0 0 12px rgba(37,211,102,.08); }
}

.whatsapp-tooltip {
  background: var(--white);
  color: var(--gray-900);
  font-size: .85rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ── PÁGINA INTERNA ───────────────────────────────────────────── */
.page-hero {
  background: var(--green-dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 { color: var(--white); }
.page-hero .breadcrumb { color: rgba(255,255,255,.6); font-size: .85rem; margin-bottom: 16px; }
.page-hero .breadcrumb a:hover { color: var(--gold-light); }
.page-hero .breadcrumb span { color: var(--gold-light); }

/* ── BLOG SINGLE ──────────────────────────────────────────────── */
.post-content {
  max-width: 760px;
  margin: 0 auto;
}

.post-content h2,
.post-content h3 { color: var(--green-dark); margin: 32px 0 16px; }

.post-content p { color: var(--gray-600); line-height: 1.85; margin-bottom: 20px; }

.post-content img { border-radius: 8px; margin: 24px 0; }

.post-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  background: var(--beige);
  border-radius: 0 8px 8px 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--green-dark);
  margin: 32px 0;
}

/* ── LANDING PAGE ─────────────────────────────────────────────── */
.lp-body header,
.lp-body footer { display: none; }

.lp-header {
  background: var(--green-dark);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.lp-hero {
  background: var(--green-dark);
  padding: 100px 0 80px;
  text-align: center;
  color: var(--white);
}

.lp-hero h1 { color: var(--white); margin-bottom: 20px; }
.lp-hero p { font-size: 1.15rem; color: rgba(255,255,255,.8); max-width: 600px; margin: 0 auto 36px; }

.lp-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  margin: 0 auto;
}

/* ── NOTIFICAÇÃO FORM ─────────────────────────────────────────── */
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-success .icon {
  width: 60px;
  height: 60px;
  background: rgba(44,74,62,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--green-dark);
  font-size: 1.5rem;
}

/* ── PÁGINA DE AGENDAMENTO ────────────────────────────────────── */
.calendario-embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* ── ANIMAÇÕES ────────────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="1"] { transition-delay: .1s; }
[data-animate-delay="2"] { transition-delay: .2s; }
[data-animate-delay="3"] { transition-delay: .3s; }
[data-animate-delay="4"] { transition-delay: .4s; }
[data-animate-delay="5"] { transition-delay: .5s; }

/* ── RESPONSIVO ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 400px; order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px; flex-direction: column; box-shadow: var(--shadow-md); }
  .main-nav.open { display: flex; }
  .main-nav a { color: var(--gray-600) !important; padding: 12px 0; border-bottom: 1px solid var(--gray-200); width: 100%; }

  .menu-toggle { display: flex; }

  .hero-stats-inner { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }

  .cta-inner { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .numbers-grid { grid-template-columns: repeat(2,1fr); }

  .about-features { grid-template-columns: 1fr; }

  .booking-form { padding: 28px 20px; }

  .whatsapp-float { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .btn--lg { width: 100%; justify-content: center; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

/* ── UTILITIES ────────────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.d-flex { display: flex; }
.gap-16 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }
.hidden { display: none; }
