/* ============================================================
   Colodino e Zanetti Advogados Associados
   Design: Elegância Institucional Contemporânea
   Palette: Navy #0C1A2E | Gold #C9A96E | Warm Gray #F5F3EF
   Fonts: Cormorant Garamond (titles) + Source Sans 3 (body)
   ============================================================ */

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

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

body {
  font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  color: #2D3748;
  background-color: #FAFAF8;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  color: #0C1A2E;
  line-height: 1.2;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- COLORS ---- */
:root {
  --navy: #0C1A2E;
  --navy-light: #152238;
  --navy-dark: #070F1A;
  --gold: #C9A96E;
  --gold-light: #D4BC8A;
  --gold-dark: #A8893F;
  --warm-gray: #F5F3EF;
  --warm-white: #FAFAF8;
  --text-dark: #2D3748;
  --text-medium: #4A5568;
  --text-light: #718096;
  --border-light: #E8E5DF;
}

/* ---- GOLD TOP BAR ---- */
.gold-top-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

/* ---- TOP INFO BAR ---- */
.top-info-bar {
  position: fixed;
  top: 3px;
  left: 0;
  width: 100%;
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  z-index: 999;
  display: none;
}

.top-info-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}

.top-info-bar a {
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-info-bar a:hover {
  color: var(--gold);
}

@media (min-width: 1024px) {
  .top-info-bar { display: block; }
}

/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 3px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 998;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  top: 3px !important;
}

@media (min-width: 1024px) {
  .header { top: 39px; }
  .header.scrolled { top: 3px !important; }
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.header-logo img {
  height: 58px;
  width: 58px;
  object-fit: cover;
  border-radius: 50%;
}

@media (min-width: 1024px) {
  .header-logo img { height: 66px; width: 66px; border-radius: 50%; }
}

/* Desktop nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 4px;
}

@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
}

.desktop-nav a {
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(12,26,46,0.7);
  position: relative;
  transition: color 0.3s;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--navy);
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 70%;
}

.desktop-nav .cta-btn {
  margin-left: 16px;
  padding: 10px 22px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  transition: background 0.3s;
}

.desktop-nav .cta-btn:hover {
  background: var(--navy-light);
}

.desktop-nav .cta-btn::after { display: none; }

/* Hamburger button */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1005;
}

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: #fff;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #fff;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(12,26,46,0.97);
  backdrop-filter: blur(10px);
  z-index: 1003;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-header img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 4px;
}

.mobile-menu nav a {
  padding: 14px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.3s;
}

.mobile-menu nav a:hover,
.mobile-menu nav a.active {
  color: var(--gold);
}

.mobile-menu-footer {
  margin-top: auto;
  padding: 24px;
}

.mobile-menu-footer .mobile-cta {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  border-radius: 4px;
}

.mobile-menu-footer .mobile-phone {
  display: block;
  text-align: center;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  font-size: 14px;
}

/* ---- HERO SECTION ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 100px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,26,46,0.94) 0%, rgba(12,26,46,0.88) 100%);
}

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

.hero-content {
  max-width: 700px;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  border-radius: 4px;
  transition: all 0.3s;
  border: none;
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,169,110,0.3);
}

.hero-cta svg {
  width: 20px;
  height: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2.5rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
}

.hero-badge svg {
  color: var(--gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .hero-content h1 { font-size: 3.2rem; }
  .hero-content p { font-size: 1.25rem; }
}

@media (min-width: 1024px) {
  .hero-content h1 { font-size: 3.6rem; }
}

/* ---- PAGE HERO (internal pages) ---- */
.page-hero {
  padding: 140px 0 60px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(201,169,110,0.08);
  border-radius: 50%;
}

.page-hero h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.page-hero .gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .page-hero { padding: 160px 0 80px; }
  .page-hero h1 { font-size: 3rem; }
}

/* ---- SECTIONS ---- */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--navy);
  color: #fff;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-gray {
  background: var(--warm-gray);
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 650px;
  line-height: 1.7;
}

.section-subtitle-light {
  color: rgba(255,255,255,0.75);
}

.gold-line-sm {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0 2rem;
}

.gold-line-sm.center {
  margin-left: auto;
  margin-right: auto;
}

.text-center { text-align: center; }

@media (min-width: 768px) {
  .section { padding: 100px 0; }
  .section-title { font-size: 2.6rem; }
}

/* ---- ABOUT PAGE ---- */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-image {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  border: 2px solid var(--gold);
  border-radius: 6px;
  z-index: -1;
}

.about-text p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: var(--text-medium);
}

/* Team section */
.team-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
}

.team-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.team-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top;
}

.team-card-info {
  padding: 1.5rem;
  text-align: center;
}

.team-card-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.team-card-info .role {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-card-info .oab {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* ---- SERVICES / ATUAÇÃO ---- */
.services-intro {
  max-width: 700px;
  margin-bottom: 3rem;
}

.services-intro p {
  font-size: 1.1rem;
  color: var(--text-medium);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--gold);
}

.service-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold-dark);
  transition: color 0.3s;
}

.service-card:hover .service-icon svg {
  color: var(--navy);
}

.service-card h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

/* ---- DIFFERENTIALS ---- */
.diff-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .diff-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .diff-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.diff-card {
  padding: 2rem;
  background: #fff;
  border-radius: 6px;
  border-bottom: 3px solid transparent;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s;
}

.diff-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.diff-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--warm-gray), #fff);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.diff-icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold-dark);
}

.diff-card h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.diff-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ---- REVIEWS / AVALIAÇÕES ---- */
.reviews-highlight {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(201,169,110,0.08);
  border-radius: 8px;
  border: 1px solid rgba(201,169,110,0.2);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.reviews-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 1rem;
}

.reviews-stars svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  fill: var(--gold);
}

.reviews-highlight .rating-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.reviews-highlight p {
  color: var(--text-medium);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.reviews-quote {
  position: relative;
  padding: 2rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  max-width: 700px;
  margin: 0 auto;
}

.reviews-quote::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
  opacity: 0.5;
}

.reviews-quote p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-medium);
  padding-left: 2rem;
  line-height: 1.7;
}

/* Google badge */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1.5rem;
}

.google-badge svg {
  width: 20px;
  height: 20px;
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold-dark);
}

.contact-info-item h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 1rem;
  color: var(--text-dark);
}

.contact-info-item a:hover {
  color: var(--gold-dark);
}

.contact-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 4px;
  transition: all 0.3s;
  margin-top: 1rem;
}

.contact-whatsapp-btn:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.3);
  color: #fff;
}

.contact-whatsapp-btn svg {
  width: 22px;
  height: 22px;
}

/* Contact form */
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--warm-white);
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-submit:hover {
  background: var(--navy-light);
}

/* Map */
.contact-map {
  margin-top: 3rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* ---- BLOG ---- */
.blog-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.blog-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-date {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.blog-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 0.3s;
}

.blog-card:hover .blog-card-body h3 {
  color: var(--gold-dark);
}

.blog-card-body p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: gap 0.3s;
}

.blog-read-more:hover {
  gap: 10px;
}

.blog-read-more svg {
  width: 16px;
  height: 16px;
}

/* Blog post single */
.blog-post-content {
  max-width: 780px;
  margin: 0 auto;
}

.blog-post-content .post-meta {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.blog-post-content .post-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 2rem;
}

.blog-post-content p {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.blog-post-content strong {
  color: var(--text-dark);
  font-weight: 700;
}

.blog-post-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--warm-gray);
  border-radius: 6px;
  text-align: center;
  border-left: 4px solid var(--gold);
}

.blog-post-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.blog-post-cta p {
  color: var(--text-medium);
  margin-bottom: 1.25rem;
}

.blog-post-cta .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s;
}

.blog-post-cta .cta-link:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand img {
  height: 66px;
  width: 66px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 350px;
}

.footer h4 {
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  padding: 4px 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 20px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  transition: background 0.3s;
}

.footer-whatsapp:hover {
  background: #20BD5A;
  color: #fff;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-oab-notice {
  font-size: 0.75rem !important;
  margin-top: 8px;
  font-style: italic;
}

/* ---- WHATSAPP FLOATING BUTTON ---- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.15); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 480ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: 560ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(9) { transition-delay: 640ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(10) { transition-delay: 720ms; opacity: 1; transform: translateY(0); }

/* ---- UTILITY ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}
