:root {
  --blue-deep: #0f1f3f;
  --blue-mid: #195493;
  --blue-light: #5b8ec4;
  --blue-vibrant: #2a7bd4;
  --dark: #1a2744;
  --darker: #0f1824;
  --dark-gradient: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);

  --white: #ffffff;
  --silver: #8b92a1;
  --text-color: #c5cddb;
  --heading-color: #ffffff;

  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.1);
  --accent-glow: rgba(42, 123, 212, 0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--darker);
  color: var(--text-color);
  overflow-x: hidden;
  cursor: default;
  letter-spacing: -0.01em;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue-mid), var(--blue-light));
  border-radius: 10px;
  border: 2px solid var(--darker);
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--blue-light), var(--blue-mid)); }

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: rgba(15, 24, 36, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
nav.scrolled {
  background: rgba(15, 24, 36, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.8rem 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue-deep), #2a7bd4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 400;
  box-shadow: 0 0 20px var(--accent-glow);
}
.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 300;
  color: var(--silver);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--silver);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--blue-deep);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px var(--accent-glow);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: #2068b0 !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px var(--accent-glow) !important;
}

/* HERO */
#hero {
  height: 85vh;
  max-height: 760px;
  min-height: 600px;
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  background: var(--darker);
  padding-top: 8rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--darker) 0%, rgba(42, 123, 212, 0.15) 50%, var(--darker) 100%);
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42, 123, 212, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 123, 212, 0.12) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, black 20%, transparent 100%);
  z-index: 2;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: floatOrb 12s ease-in-out infinite;
  z-index: 1;
}
.orb-1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(42, 123, 212, 0.4) 0%, transparent 70%);
  top: -200px; right: -200px;
}
.orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(25, 84, 147, 0.3) 0%, transparent 70%);
  bottom: -150px; left: -150px;
  animation-delay: -6s;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-50px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(42, 123, 212, 0.08);
  border: 1px solid rgba(42, 123, 212, 0.15);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--blue-mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  background: rgba(42, 123, 212, 0.12);
  border-color: rgba(42, 123, 212, 0.25);
  transform: translateY(-2px);
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-vibrant);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.0rem, 4.0vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--heading-color);
  max-width: 900px;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--blue-vibrant);
  font-weight: 400;
  background: linear-gradient(135deg, var(--blue-vibrant) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-color);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 0;
  letter-spacing: 0.3px;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  color: var(--white);
  padding: 1rem 2.2rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(25, 84, 147, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-vibrant));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 10px;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(25, 84, 147, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(42, 123, 212, 0.08);
  color: var(--blue-deep);
  padding: 1rem 2.2rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: 1.5px solid rgba(42, 123, 212, 0.25);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(42, 123, 212, 0.15);
  border-color: rgba(42, 123, 212, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(42, 123, 212, 0.15);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ee872, #1da77a);
  box-shadow: 0 12px 48px rgba(37, 211, 102, 0.35);
  transform: translateY(-3px);
}

/* SECTION COMMON */
section {
  padding: 8rem 4rem;
  position: relative;
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-vibrant);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--blue-vibrant), transparent);
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.8;
  max-width: 560px;
  font-weight: 400;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SOBRE */
#sobre {
  background-color: var(--blue-deep);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 4rem;
}

#sobre::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.78));
  z-index: 1;
}

#sobre .section-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
}

.sobre-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.sobre-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--white);
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

.sobre-title em {
  font-style: italic;
  color: #5b8ec4;
  font-weight: 400;
}

.sobre-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.sobre-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.sobre-buttons .btn-primary,
.sobre-buttons .btn-whatsapp,
.sobre-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sobre-buttons .btn-primary {
  background: var(--blue-deep);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(25, 84, 147, 0.3);
}

.sobre-buttons .btn-primary:hover {
  background: #2068b0;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(25, 84, 147, 0.4);
}

.sobre-buttons .btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.sobre-buttons .btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ee872, #1da77a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.sobre-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sobre-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.sobre-text {
  margin-top: 3rem;
  padding: 0;
}

/* HISTÓRIA 10 ANOS */
#historia {
  background: var(--dark-gradient);
  padding: 6rem 4rem;
  border-top: 1px solid rgba(25,84,147,0.08);
}

#historia .section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.historia-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: center;
}

.historia-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--heading-color);
  letter-spacing: -0.015em;
  margin: 0;
}

.historia-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.historia-text p {
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
}

.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.historia-video {
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(25,84,147,0.15);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sobre-visual {
  position: relative;
}
.sobre-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8f1f8, #dde8f5);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(25,84,147,0.15);
}
.sobre-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, rgba(25,84,147,0.1), rgba(25,84,147,0.05));
}
.sobre-img-badge {
  position: static;
  background: var(--blue-deep);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 40px var(--accent-glow);
  margin-top: 1.5rem;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
.sobre-img-badge strong {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  display: block;
  line-height: 1;
  color: var(--white);
}
.sobre-img-badge span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(254,254,254,0.7);
}

.sobre-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.metric-card {
  background: rgba(25,84,147,0.08);
  border: 1px solid rgba(25,84,147,0.15);
  border-radius: 12px;
  padding: 1.4rem;
  transition: all 0.3s ease;
}
.metric-card:hover {
  background: rgba(25,84,147,0.12);
  border-color: rgba(25,84,147,0.3);
  transform: translateY(-3px);
}
.metric-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--blue-deep);
  line-height: 1;
}
.metric-desc {
  font-size: 0.75rem;
  color: var(--blue-light);
  margin-top: 0.4rem;
}

/* PODCAST DESTAQUE */
#podcast-destaque {
  background: var(--dark-gradient);
  padding: 5rem 0;
}

.podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.podcast-image {
  width: 100%;
  height: auto;
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
}

.podcast-content h2 {
  margin-bottom: 1.5rem;
}

.podcast-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-color);
}

.feature-item i {
  min-width: 20px;
  text-align: center;
  font-size: 1.2rem;
}

/* SERVIÇOS */
#servicos { background: var(--dark-gradient); }

.servicos-header {
  text-align: center;
  margin-bottom: 4rem;
}
.servicos-header .section-label {
  justify-content: center;
}
.servicos-header .section-label::before { display: none; }
.servicos-header .section-label::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--blue-deep);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-vibrant), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(42, 123, 212, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(25, 84, 147, 0.15);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(42, 123, 212, 0.15), rgba(25, 84, 147, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--blue-mid);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue-vibrant), var(--blue-mid));
  color: var(--white);
  box-shadow: 0 8px 32px rgba(42, 123, 212, 0.3);
  transform: rotate(6deg) scale(1.05);
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.service-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-vibrant);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s ease;
}
.service-link:hover { gap: 0.8rem; }

/* GALERIA */
#galeria {
  background: var(--dark-gradient);
}
.galeria-header {
  text-align: center;
  margin-bottom: 4rem;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}
.gal-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: linear-gradient(135deg, #e8f1f8, #dde8f5);
  border: 1px solid rgba(25,84,147,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gal-item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(25,84,147,0.2);
  z-index: 2;
}
.gal-item-1 { grid-column: span 5; }
.gal-item-2 { grid-column: span 4; }
.gal-item-3 { grid-column: span 3; }
.gal-item-4 { grid-column: span 3; }
.gal-item-5 { grid-column: span 4; }
.gal-item-6 { grid-column: span 5; }

.gal-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(25,84,147,0.08), rgba(25,84,147,0.04));
  transition: opacity 0.3s ease;
}
.gal-item:hover .gal-inner { opacity: 0.8; }
.gal-emoji { font-size: 2.5rem; }
.gal-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26,39,68,0.6);
}
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(25,84,147,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}

/* CARROSSEL */
.carrossel-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.carrossel-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 45%;
  overflow: hidden;
}

.carrossel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carrossel-slide.active {
  opacity: 1;
  z-index: 10;
}

.carrossel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carrossel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carrossel-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.carrossel-btn i {
  color: var(--blue-mid);
  font-size: 1.2rem;
}

.carrossel-btn-prev {
  left: 1.5rem;
}

.carrossel-btn-next {
  right: 1.5rem;
}

.carrossel-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 20;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  width: 28px;
  border-radius: 5px;
}

/* PLANOS */
#planos { background: var(--dark-gradient); }
.planos-header { text-align: center; margin-bottom: 4rem; }

.planos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.plano-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.plano-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(25, 84, 147, 0.12);
  border-color: rgba(42, 123, 212, 0.4);
}

.plano-card.featured {
  background: linear-gradient(160deg, rgba(42, 123, 212, 0.1), rgba(25, 84, 147, 0.05));
  border: 1.5px solid rgba(42, 123, 212, 0.25);
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(42, 123, 212, 0.15);
}

.plano-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 35px 100px rgba(42, 123, 212, 0.2);
}

.plano-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-vibrant), var(--blue-mid));
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(42, 123, 212, 0.25);
}

.plano-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: var(--blue-mid);
}

.plano-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.plano-price {
  margin: 1.5rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.plano-currency {
  font-size: 1rem;
  color: var(--blue-light);
  font-weight: 600;
}

.plano-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  color: var(--blue-deep);
  font-weight: 400;
}

.plano-period {
  font-size: 0.8rem;
  color: var(--blue-light);
}

.plano-price-link {
  text-decoration: none !important;
  color: inherit !important;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--blue-vibrant);
  padding-bottom: 0.2rem;
  white-space: nowrap;
}

.plano-price-link:hover {
  color: var(--blue-vibrant) !important;
  border-bottom-color: var(--blue-deep);
  transform: translateY(-2px);
}

.plano-price-link .plano-currency {
  font-size: 0.7rem;
  color: var(--blue-light);
  font-weight: 600;
}

.plano-price-link .plano-amount {
  color: var(--blue-vibrant);
  font-size: 0.95rem;
}

.plano-price-link:hover .plano-amount {
  color: var(--blue-deep);
}

.plano-features {
  list-style: none;
  margin: 1.8rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.plano-features li {
  font-size: 0.9rem;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  line-height: 1.5;
}

.plano-features li::before {
  content: '✓';
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 0.7rem;
}

.plano-btn {
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 0.05em;
  border: none;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}
.plano-btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
}
.plano-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}
.plano-btn-solid {
  background: var(--blue-deep);
  color: var(--white);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.plano-btn-solid:hover {
  background: #2068b0;
  box-shadow: 0 8px 30px var(--accent-glow);
  transform: translateY(-1px);
}

/* DIFERENCIAIS */
#diferenciais {
  background: var(--dark-gradient);
}
.diferenciais-header { text-align: center; margin-bottom: 4rem; }

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.diferencial-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
}
.diferencial-card:hover {
  background: rgba(42, 123, 212, 0.2);
  border-color: rgba(25,84,147,0.4);
  transform: translateY(-4px);
}
.diferencial-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.diferencial-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}
.diferencial-desc {
  font-size: 0.8rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* LOCALIZAÇÃO */
#localizacao { background: var(--dark-gradient); }
.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(25,84,147,0.15);
  height: 400px;
  background: var(--dark);
  position: relative;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(0.9) hue-rotate(190deg) saturate(0.8) brightness(1.1);
}

.localizacao-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.info-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(25,84,147,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(25,84,147,0.25);
}
.info-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.2rem;
}
.info-text span {
  font-size: 0.8rem;
  color: var(--blue-light);
}

.loc-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* CONTATO */
#contato {
  background: var(--dark-gradient);
}
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  transition: all 0.3s ease;
  outline: none;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue-vibrant);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-select { cursor: pointer; -webkit-appearance: none; appearance: none; }
.form-select option { background: var(--dark); color: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  background: var(--blue-deep);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.form-submit:hover {
  background: #2068b0;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.contato-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.channel-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.channel-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(4px);
}
.channel-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.ch-whatsapp .channel-icon { background: linear-gradient(135deg, #25D366, #128C7E); }
.ch-instagram .channel-icon { background: linear-gradient(135deg, #E1306C, #833AB4); }
.ch-phone .channel-icon { background: rgba(25,84,147,0.3); border: 1px solid rgba(25,84,147,0.4); }
.ch-email .channel-icon { background: rgba(25,84,147,0.3); border: 1px solid rgba(25,84,147,0.4); }

.channel-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.2rem;
}
.channel-info span {
  font-size: 0.78rem;
  color: var(--blue-light);
}

/* SOCIAL / INSTAGRAM */
#social { background: var(--dark-gradient); }
.social-header { text-align: center; margin-bottom: 3rem; }
.instagram-feed {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
}
.insta-item {
  aspect-ratio: 1;
  border-radius: 10px;
  background: linear-gradient(135deg, #e8f1f8, #dde8f5);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 1px solid rgba(25,84,147,0.15);
}
.insta-item:hover { transform: scale(1.04); z-index: 2; }
.insta-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(25,84,147,0.08), rgba(25,84,147,0.04));
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.insta-item:hover .insta-inner { opacity: 0.6; }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25,84,147,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay span { font-size: 1.5rem; }
.social-cta { text-align: center; margin-top: 2rem; }

/* POST TYPE BADGES */
.post-type-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(25,84,147,0.9);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.insta-caption { font-size: 0.85rem; line-height: 1.3; }
.insta-brand-tag { font-size: 0.7rem; color: rgba(255,255,255,0.8); margin-top: 4px; }

/* INSTAGRAM FEED SECTION */
.instagram-feed-section { margin-bottom: 3rem; }
.feed-section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* BLOG SECTION */
.blog-section { margin-top: 4rem; }

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.blog-section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--blue-deep);
}

/* BLOG FILTERS */
.blog-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.blog-filter-btn {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.15);
  color: var(--silver);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

.blog-filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.blog-filter-btn:hover {
  border-color: var(--blue-mid);
  color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25,84,147,0.15);
}

.blog-filter-btn:hover::before {
  left: 100%;
}

.blog-filter-btn.active {
  background: linear-gradient(135deg, var(--blue-mid), #2a7bd4);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(25,84,147,0.3);
  transform: translateY(-2px);
}

/* BLOG POSTS GRID */
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 240px));
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center;
}

/* BLOG POST CARD */
.blog-post-card {
  background: var(--darker);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  display: none;
  animation: fadeInScale 0.5s ease;
  position: relative;
  width: 240px;
  height: 290px;
}

.blog-post-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-mid), #2a7bd4, var(--blue-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-post-card.visible { display: block; }
.blog-post-card:hover {
  border-color: var(--blue-vibrant);
  box-shadow: 0 16px 40px rgba(25,84,147,0.18);
  transform: translateY(-6px);
}

.blog-post-card:hover::after {
  opacity: 1;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.blog-post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem;
  border-bottom: 1px solid rgba(25,84,147,0.06);
  background: linear-gradient(135deg, rgba(25,84,147,0.02), transparent);
}

.blog-brand-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-brand-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(25,84,147,0.15);
  background: linear-gradient(135deg, var(--blue-mid), #2a7bd4);
  flex-shrink: 0;
}

.blog-brand-details {
  display: flex;
  flex-direction: column;
}

.blog-brand-name {
  font-size: 0.75rem;
  color: var(--blue-deep);
  font-weight: 600;
}

.blog-account {
  font-size: 0.65rem;
  color: var(--silver);
}

.blog-date {
  font-size: 0.65rem;
  color: var(--silver);
  white-space: nowrap;
}

/* BLOG MEDIA */
.blog-media {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, var(--light-bg), #f8fafb);
  overflow: hidden;
  position: relative;
}

.image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: hidden;
}

.blog-post-card:hover .image-container img {
  transform: scale(1.08) rotate(0.5deg);
}

.carousel-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: linear-gradient(135deg, rgba(25,84,147,0.95), rgba(42,123,212,0.95));
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(25,84,147,0.25);
  backdrop-filter: blur(8px);
}

.video-container {
  background: var(--dark);
}

.video-container iframe {
  width: 100%;
  height: 100%;
}

/* BLOG POST CONTENT */
.blog-post-content {
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-post-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.4rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-post-card:hover .blog-post-title {
  color: var(--blue-vibrant);
}

.blog-post-description {
  font-size: 0.85rem;
  color: #5a6c7d;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.blog-post-full-content {
  display: none;
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.3s ease;
}

.blog-post-full-content p {
  margin-bottom: 0.8rem;
}

.blog-post-card:hover .blog-post-full-content {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ENGAGEMENT */
.blog-engagement {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(25,84,147,0.08);
  margin-top: 0.6rem;
}

.engagement-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  color: #5a6c7d;
  transition: all 0.3s ease;
  font-weight: 500;
}

.engagement-item:hover {
  color: var(--blue-mid);
  transform: translateX(2px);
}

.engagement-item i {
  font-size: 1rem;
  color: var(--blue-light);
}

.view-instagram-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(25,84,147,0.1), rgba(42,123,212,0.1));
  border-radius: 8px;
  color: var(--blue-mid);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(25,84,147,0.15);
}

.view-instagram-btn:hover {
  background: linear-gradient(135deg, var(--blue-mid), #2a7bd4);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(25,84,147,0.2);
  transform: translateY(-2px);
}

/* POST MODAL */
.post-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
}

.post-modal-overlay.active { opacity: 1; }

.post-modal {
  background: var(--dark);
  border-radius: 20px;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, rgba(25,84,147,0.15), rgba(42,123,212,0.15));
  border: 2px solid rgba(25,84,147,0.15);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--blue-mid);
  font-size: 1.3rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: linear-gradient(135deg, var(--blue-mid), #2a7bd4);
  color: white;
  border-color: transparent;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 12px rgba(25,84,147,0.3);
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 2rem;
  border-bottom: 2px solid rgba(25,84,147,0.06);
  background: linear-gradient(135deg, rgba(25,84,147,0.03), transparent);
}

.modal-brand-info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.modal-brand-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(25,84,147,0.2);
  background: linear-gradient(135deg, var(--blue-mid), #2a7bd4);
}

.modal-brand-info strong {
  display: block;
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 0.95rem;
}

.modal-brand-info span {
  display: block;
  font-size: 0.85rem;
  color: #5a6c7d;
  font-weight: 500;
}

.modal-media {
  width: 100%;
  background: linear-gradient(135deg, var(--light-bg), #f8fafb);
}

.modal-image {
  width: 100%;
  height: auto;
  display: block;
}

.modal-video-container {
  padding: 2rem;
  background: #1a1a1a;
}

.modal-video-container iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  border: none;
}

.modal-body {
  padding: 2.5rem;
}

.modal-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.modal-body > p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-weight: 500;
}

.modal-full-content {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.modal-full-content p {
  margin-bottom: 1.2rem;
}

.modal-engagement {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(25,84,147,0.05), rgba(42,123,212,0.05));
  border-radius: 12px;
  border: 2px solid rgba(25,84,147,0.08);
}

.engagement-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.engagement-stat strong {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-mid);
}

.engagement-stat span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--silver);
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .instagram-feed { grid-template-columns: repeat(4, 1fr); }
  .blog-posts-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
}

@media (max-width: 768px) {
  .instagram-feed { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
  .blog-posts-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-filters { width: 100%; }
  .post-modal { width: 95%; max-height: 95vh; }
}

@media (max-width: 640px) {
  .instagram-feed { grid-template-columns: repeat(2, 1fr); }
  .blog-posts-grid { grid-template-columns: 1fr; }
  .blog-filters { flex-direction: column; }
  .blog-filter-btn { width: 100%; justify-content: center; }
  .modal-engagement { flex-direction: column; gap: 1rem; }
}

/* BLOG SEARCH */
.blog-search-container {
  width: 100%;
  max-width: 400px;
  position: relative;
}

.blog-search-input {
  width: 100%;
  padding: 0.9rem 1.5rem;
  border: 2px solid var(--glass-border);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--white);
  background: var(--darker);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.blog-search-input:focus {
  outline: none;
  border-color: var(--blue-mid);
  background: var(--darker);
  box-shadow: 0 4px 16px rgba(25,84,147,0.15);
  transform: translateY(-2px);
}

.blog-search-input::placeholder {
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* AVALIAÇÕES SECTION */
#avaliacoes {
  background: var(--dark-gradient);
  padding: 6rem 0;
}

.avaliacoes-header {
  text-align: center;
  margin-bottom: 4rem;
}
.avaliacoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2rem;
}

.avaliacao-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.avaliacao-card::before {
  content: '“';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: 'DM Serif Display', serif;
  font-size: 8rem;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  z-index: 0;
  transition: color 0.4s ease;
}

.avaliacao-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(42, 123, 212, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(25, 84, 147, 0.15);
}

.avaliacao-card:hover::before {
  color: rgba(255,255,255,0.08);
}

.avaliacao-badge {
  font-size: 0.75rem;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}
.avaliacao-badge i {
  color: #ffc107;
}

.avaliacao-stars {
  font-size: 1.2rem;
  color: #ffc107;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 1;
}

.avaliacao-tempo {
  font-size: 0.8rem;
  color: var(--silver);
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}

.avaliacao-texto {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-color);
  flex-grow: 1;
  margin: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.avaliacao-autor {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.avaliacao-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.avaliacao-info strong {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 0.95rem;
  display: block;
}

.avaliacao-info span {
  font-size: 0.8rem;
  color: var(--blue-mid);
  font-weight: 600;
}

/* Animações reveal para avaliações */
.avaliacao-card {
  opacity: 0;
  transform: translateY(30px);
}

.avaliacao-card.reveal {
  animation: revealUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BLOG EMPTY STATE */
.blog-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-radius: 16px;
  border: 2px dashed rgba(255,255,255,0.15);
  animation: fadeInScale 0.5s ease;
}

.empty-icon {
  font-size: 4rem;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

.blog-empty-state h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.6rem;
}

.blog-empty-state p {
  color: var(--text-color);
  font-size: 0.95rem;
  font-weight: 500;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* RODAPÉ */
footer {
  background: var(--darker);
  color: var(--silver);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 4rem 4rem 2rem;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--silver);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 260px;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.social-btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--blue-deep);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a, .footer-links span {
  font-size: 0.82rem;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--silver);
}
.footer-bottom-links {
  display: flex;
  gap: 2rem;
}
.footer-bottom-links a {
  font-size: 0.72rem;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-bottom-links a:hover { color: var(--white); }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  animation: bounceIn 1s ease 2s both;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
@keyframes bounceIn {
  from { opacity: 0; transform: scale(0); }
  60% { transform: scale(1.1); }
  to { opacity: 1; transform: scale(1); }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  nav { padding: 1rem 2rem; }
  nav.scrolled { padding: 0.7rem 2rem; }
  section { padding: 5rem 2rem; }
  footer { padding: 3rem 2rem 2rem; }
  .nav-links { display: none; }
  #sobre { padding: 5rem 2rem; min-height: 600px; }
  #historia { padding: 4rem 2rem; }
  .historia-grid { grid-template-columns: 1fr; gap: 2rem; }
  .historia-video { min-height: 300px; }
  .sobre-buttons { gap: 0.8rem; }
  .contato-grid, .localizacao-grid { grid-template-columns: 1fr; gap: 3rem; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .planos-grid { grid-template-columns: repeat(2, 1fr); }
  .plano-card.featured { transform: none; }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .galeria-grid { grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(4, 160px); }
  .gal-item-1, .gal-item-6 { grid-column: span 6; }
  .gal-item-2, .gal-item-5 { grid-column: span 3; }
  .gal-item-3, .gal-item-4 { grid-column: span 3; }
  .instagram-feed { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  section { padding: 4rem 1.5rem; }
  #sobre { padding: 4rem 1.5rem; min-height: auto; }
  #historia { padding: 3rem 1.5rem; }
  .historia-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .historia-video { min-height: 250px; }
  .sobre-title { font-size: 1.8rem; line-height: 1.3; }
  .sobre-subtitle { font-size: 0.9rem; }
  .historia-title { font-size: 1.6rem; line-height: 1.3; }
  .historia-text p { font-size: 0.9rem; }
  .sobre-buttons { flex-direction: column; }
  .sobre-buttons .btn-primary,
  .sobre-buttons .btn-whatsapp,
  .sobre-buttons .btn-secondary { width: 100%; justify-content: center; }
  .servicos-grid { grid-template-columns: 1fr; }
  .planos-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .podcast-grid { grid-template-columns: 1fr; }
  .podcast-image { min-height: 300px; }
  .galeria-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(6, 140px); }
  .gal-item { grid-column: span 1 !important; }
  .carrossel-btn { width: 40px; height: 40px; }
  .carrossel-btn-prev { left: 0.8rem; }
  .carrossel-btn-next { right: 0.8rem; }
  .carrossel-indicators { bottom: 1rem; gap: 0.4rem; }
  .indicator { width: 8px; height: 8px; }
  .indicator.active { width: 24px; }
  .instagram-feed { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}
