/* ========= VARIABLES ========= */
:root {
  --primary: #294369;
  --primary-foreground: #ffffff;
  --secondary: #edf1f5;
  --accent: #fee42b;
  --accent-foreground: #294369;
  --background: #f6f8fa;
  --foreground: #294369;
  --card: #ffffff;
  --muted: #e6eaef;
  --muted-foreground: #697b96;
  --border: #d9e0e8;
  --radius: 1rem;

  --shadow-soft: 0 4px 20px -2px rgba(41, 67, 105, 0.06);
  --shadow-card: 0 8px 32px -4px rgba(41, 67, 105, 0.08);
  --shadow-elevated: 0 16px 48px -8px rgba(41, 67, 105, 0.12);
  --shadow-glow: 0 0 40px rgba(254, 228, 43, 0.3);

  --gradient-accent: linear-gradient(135deg, #f7de4b 0%, #fdc101 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.5) 100%);
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Lato', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', system-ui, sans-serif;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; }

/* ========= LAYOUT ========= */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========= UTILITIES ========= */
.font-display { font-family: 'Poppins', system-ui, sans-serif; }

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(217, 224, 232, 0.5);
}

.section-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(3rem);
  pointer-events: none;
}

/* ========= ANIMATIONS ========= */
.animate-fade-up {
  animation: fadeUp 0.8s ease-out forwards;
  opacity: 0;
}
.animate-fade-up-delay-1 {
  animation: fadeUp 0.8s ease-out 0.1s forwards;
  opacity: 0;
}
.animate-fade-up-delay-2 {
  animation: fadeUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}
.animate-fade-up-delay-3 {
  animation: fadeUp 0.8s ease-out 0.3s forwards;
  opacity: 0;
}
.animate-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes formReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-reveal { animation: formReveal .22s ease; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========= BADGE ========= */
#hero .badge {
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  letter-spacing: 0.01em;
}
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(254, 228, 43, 0.2);
  color: var(--accent-foreground);
  font-size: 1.125rem;
  font-weight: 700;
  border: 1px solid rgba(254, 228, 43, 0.3);
}
.badge-primary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-foreground);
  border: none;
}
.badge-navy-bg {
  background: rgba(41, 67, 105, 0.1);
  color: var(--primary);
  border: none;
  font-weight: 600;
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
  font-family: 'Lato', system-ui, sans-serif;
}
.btn svg { width: 1rem; height: 1rem; }
.btn-disabled {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}
.link-disabled {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}
.badge-soon {
  display: inline-flex;
  align-items: center;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: .15rem .45rem;
  border-radius: 2rem;
  line-height: 1.4;
  vertical-align: middle;
  margin-left: .2rem;
}
.btn-sm  { padding: 0.5rem 1rem; font-size: 0.9375rem; font-weight: 700; }
.btn-lg  { padding: 0.75rem 1.75rem; font-size: 1rem; }
.btn-lg svg { width: 1.125rem; height: 1.125rem; }

.btn-hero         { background: var(--primary); color: var(--primary-foreground); box-shadow: var(--shadow-card); }
.btn-hero:hover   { background: #1e3352; }

.btn-hero-outline       { background: transparent; color: var(--foreground); border: 1px solid var(--border); }
.btn-hero-outline:hover { background: rgba(41, 67, 105, 0.05); }

.btn-outline       { background: transparent; color: var(--foreground); border: 1px solid var(--border); }
.btn-outline:hover { background: rgba(41, 67, 105, 0.05); }

.btn-accent       { background: var(--accent); color: var(--accent-foreground); }
.btn-accent:hover { background: #f5d800; }

.btn-yellow       { background: var(--accent); color: var(--accent-foreground); box-shadow: var(--shadow-glow); }
.btn-yellow:hover { background: #f5d800; }

.btn-navy-solid       { background: var(--primary); color: var(--primary-foreground); box-shadow: var(--shadow-card); }
.btn-navy-solid:hover { background: #1e3352; }

/* ========= HOVER LIFT ========= */
.hover-lift { transition: all 0.5s ease-out; }
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}

/* ========= SECTION COMMON ========= */
section { position: relative; overflow: hidden; }

.section-title {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}
.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

/* ========= HEADER ========= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  padding: 1.25rem 0;
}
.site-header.scrolled {
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(217, 224, 232, 0.5);
  box-shadow: var(--shadow-soft);
  padding: 0.75rem 0;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo img {
  height: 3rem;
  width: auto;
  transition: opacity 0.3s;
}
.header-logo:hover img { opacity: 0.8; }

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted-foreground);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--foreground); }
.nav-links a:hover::after { width: 100%; }

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
.header-actions .btn {
  font-weight: 700;
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground);
}
.mobile-menu-btn svg { width: 1.5rem; height: 1.5rem; }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(217, 224, 232, 0.5);
  box-shadow: var(--shadow-card);
}
.mobile-menu.open { display: block; }
.mobile-menu-content {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1rem;
}
.mobile-menu-content a {
  font-weight: 500;
  color: var(--foreground);
  padding: 0.5rem 0;
}
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .nav-links      { display: flex; }
  .header-actions { display: flex; }
  .mobile-menu-btn { display: none; }
}

/* ========= HERO ========= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}
.hero-bg-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--background) 0%, var(--background) 70%, rgba(41,67,105,0.05) 100%);
}
.hero-decoration-1 {
  position: absolute; top: 25%; right: 0;
  width: 24rem; height: 24rem;
  background: rgba(254, 228, 43, 0.1);
  border-radius: 50%; filter: blur(3rem);
}
.hero-decoration-2 {
  position: absolute; bottom: 25%; left: 0;
  width: 18rem; height: 18rem;
  background: rgba(41, 67, 105, 0.05);
  border-radius: 50%; filter: blur(3rem);
}
.hero-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 0;
}
.hero-content h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
}
.hero-subtitle {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--primary);
  font-weight: 500;
}
.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero-stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
}
.hero-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.hero-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}
.hero-mascot-wrapper {
  display: none;
  align-items: center;
  justify-content: center;
}
.hero-mascot-inner { position: relative; }
.hero-mascot-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(247,222,75,0.3) 0%, rgba(247,222,75,0.2) 40%, rgba(77,145,193,0.1) 100%);
  border-radius: 50%;
  filter: blur(3rem);
  transform: scale(1.25);
}
.hero-mascot-img {
  position: relative;
  width: 26rem; height: 26rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mascot-img img {
  width: 24rem;
  height: auto;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.25));
}
.hero-mascot-ring-1 {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(254, 228, 43, 0.2);
  transform: scale(1.1);
}
.hero-mascot-ring-2 {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(254, 228, 43, 0.1);
  transform: scale(1.25);
}

@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-mascot-wrapper { display: flex; }
}

/* ========= QUEM SOMOS ========= */
#quem-somos {
  padding: 6rem 0;
  background: var(--primary);
  color: var(--primary-foreground);
}
.quem-somos-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}
.quem-somos-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.quem-somos-content h2 {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-top: 0.5rem;
}
.quem-somos-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}
#quem-somos .carousel-dot { background: rgba(255, 255, 255, 0.3); }
#quem-somos .carousel-dot.active { background: var(--accent); }
#quem-somos .carousel-dot:hover:not(.active) { background: rgba(255, 255, 255, 0.5); }

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

/* ========= O QUE FAZEMOS ========= */
#o-que-fazemos { padding: 6rem 0; }
.o-que-fazemos-inner {
  position: relative;
  z-index: 10;
}
.o-que-fazemos-header {
  max-width: 56rem;
  margin: 0 auto 4rem;
  text-align: center;
}
.o-que-fazemos-header h2 { margin-top: 1.5rem; }
.o-que-fazemos-header p  { margin-top: 1.5rem; }

.features-grid {
  display: grid;
  gap: 1.5rem;
}
.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(217, 224, 232, 0.5);
  text-align: center;
  transition: all 0.5s ease-out;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}
.feature-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(41, 67, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s;
}
.feature-icon svg {
  width: 1.5rem; height: 1.5rem;
  color: var(--primary);
  transition: color 0.3s;
}
.feature-card:hover .feature-icon { background: var(--primary); transform: scale(1.1); }
.feature-card:hover .feature-icon svg { color: var(--primary-foreground); }
.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px)  { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

/* ========= CONHECE ESTRUTURA ========= */
#estrutura-preview {
  padding: 6rem 0;
  background: rgba(237, 241, 245, 0.3);
}
.estrutura-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}
.estrutura-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.estrutura-content h2 {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 700;
}
.estrutura-content p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

/* Carousel */
.carousel-wrapper { position: relative; }
.carousel { overflow: hidden; border-radius: var(--radius); width: 100%; }
.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform 0.5s ease-in-out;
}
.carousel-slide {}
.carousel-slide-inner {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}
.carousel-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.carousel-dot {
  width: 0.625rem; height: 0.625rem;
  border-radius: 9999px;
  background: rgba(41, 67, 105, 0.3);
  border: none;
  transition: all 0.3s;
  padding: 0;
}
.carousel-dot.active { width: 1.5rem; background: var(--primary); }
.carousel-dot:hover:not(.active) { background: rgba(41, 67, 105, 0.5); }
.carousel-border-decoration {
  position: absolute;
  top: 1rem; left: 1rem; right: 1rem; bottom: 3rem;
  border: 2px solid rgba(254, 228, 43, 0.2);
  border-radius: var(--radius);
  z-index: -1;
}

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

/* ========= PARTNERS ========= */
#parceiros { padding: 6rem 0; }
.parceiros-inner {
  position: relative;
  z-index: 10;
}
.parceiros-header {
  text-align: center;
  margin-bottom: 3rem;
}
.parceiros-header h2 { margin-top: 1.5rem; }
.parceiros-header p {
  margin-top: 1rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.partners-marquee { overflow: hidden; width: 100%; }
.partners-track {
  display: flex;
  gap: 1rem;
  animation: marquee 24s linear infinite;
  width: max-content;
}
.partner-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(217, 224, 232, 0.5);
  height: 6rem;
  width: 10rem;
  flex-shrink: 0;
  transition: box-shadow 0.3s;
}
.partner-card:hover { box-shadow: var(--shadow-card); }
.partner-card img { max-width: 100%; max-height: 3.5rem; object-fit: contain; }

.partner-card--sm { height: 4rem; width: 7rem; padding: 0.2rem 0.2rem; }
.partner-card--sm img { max-height: 2.25rem; }

.partners-track--sm { animation-duration: 30s; }

.hero-partners {
  margin: 1.5rem 0;
  overflow: hidden;
  min-width: 0;
  margin-top: 0px;
}
.hero-partners-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}
.partner-logo-placeholder {
  width: 100%;
  height: 3rem;
  background: var(--muted);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo-placeholder span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
  text-align: center;
  padding: 0 0.5rem;
}

/* ========= SEJA CORRETOR ========= */
#seja-corretor {
  padding: 6rem 0;
  background: var(--primary);
  color: var(--primary-foreground);
}
.seja-corretor-deco-1 {
  position: absolute; top: 0; right: 0;
  width: 24rem; height: 24rem;
  background: rgba(254, 228, 43, 0.2);
  border-radius: 50%; filter: blur(3rem);
  transform: translate(50%, -50%);
}
.seja-corretor-deco-2 {
  position: absolute; bottom: 0; left: 0;
  width: 18rem; height: 18rem;
  background: rgba(254, 228, 43, 0.1);
  border-radius: 50%; filter: blur(3rem);
  transform: translate(-50%, 50%);
}
.seja-corretor-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}
.seja-corretor-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.seja-corretor-content h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}
.seja-corretor-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  line-height: 1.75;
}
.benefits-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-elevated);
}
.benefits-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}
.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.benefit-item  { display: flex; align-items: center; gap: 0.75rem; }
.benefit-check {
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%;
  background: rgba(254, 228, 43, 0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefit-check svg { width: 1rem; height: 1rem; color: var(--accent-foreground); }
.benefit-text { font-weight: 500; color: var(--foreground); }

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

/* ========= COMO CADASTRAR ========= */
#como-cadastrar { padding: 6rem 0; }
.como-cadastrar-inner {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.como-cadastrar-header { text-align: center; margin-bottom: 3rem; }
.como-cadastrar-header h2 { margin-top: 1.5rem; }

.steps-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.step-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(217, 224, 232, 0.5);
  transition: all 0.5s ease-out;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}
.step-number {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.step-number span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
}
.step-title { font-weight: 500; color: var(--foreground); }
.step-connector {
  display: none;
  position: absolute;
  top: 50%; right: -0.75rem;
  width: 1.5rem; height: 2px;
  background: rgba(254, 228, 43, 0.3);
}
.como-cadastrar-cta { text-align: center; }

@media (min-width: 640px)  { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .step-connector { display: block; }
  .step-card:last-child .step-connector { display: none; }
}

/* ========= ATENDIMENTO ========= */
#atendimento {
  padding: 6rem 0;
  background: rgba(237, 241, 245, 0.3);
}
.atendimento-deco {
  position: absolute; top: 5rem; right: 5rem;
  width: 16rem; height: 16rem;
  background: rgba(254, 228, 43, 0.1);
  border-radius: 50%; filter: blur(3rem);
}
.atendimento-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}
.atendimento-content { display: flex; flex-direction: column; gap: 1.5rem; }
.atendimento-content h2 {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 700;
}
.atendimento-content p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}
.atendimento-actions { display: flex; flex-direction: column; gap: 1rem; }
.atendimento-mascot { display: none; justify-content: center; }
.atendimento-mascot img {
  width: 26rem; height: auto;
  opacity: 0.9;
  transition: opacity 0.3s;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}
.atendimento-mascot img:hover { opacity: 1; }

@media (min-width: 640px)  { .atendimento-actions { flex-direction: row; } }
@media (min-width: 1024px) {
  .atendimento-grid { grid-template-columns: 1fr 1fr; }
  .atendimento-mascot { display: flex; }
}

/* ========= FRANQUIAS ========= */
#franquias {
  padding: 6rem 0;
  background: var(--accent);
}
.franquias-deco-1 {
  position: absolute; top: 0; right: 0;
  width: 24rem; height: 24rem;
  background: rgba(253, 193, 1, 0.3);
  border-radius: 50%; filter: blur(3rem);
  transform: translate(50%, -50%);
}
.franquias-deco-2 {
  position: absolute; bottom: 0; left: 0;
  width: 18rem; height: 18rem;
  background: rgba(41, 67, 105, 0.1);
  border-radius: 50%; filter: blur(3rem);
  transform: translate(-50%, 50%);
}
.franquias-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}
.franquias-content h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  margin: 1.5rem 0;
}
.franquias-content p {
  color: rgba(41, 67, 105, 0.8);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ========= FOOTER ========= */
.site-footer {
  background: var(--primary);
  color: var(--primary-foreground);
  position: relative;
  overflow: hidden;
}
.footer-inner {
  padding: 4rem 0;
  position: relative;
  z-index: 10;
}
.footer-grid {
  display: grid;
  gap: 3rem;
}
.footer-logo img {
  height: 3.5rem; width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}
.footer-logo:hover img { opacity: 0.8; }
.footer-brand-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 18rem;
  margin: 1.5rem 0;
}
.social-links { display: flex; gap: 0.75rem; list-style: none; }
.social-link {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.social-link:hover { background: var(--accent); color: var(--primary); }
.social-link svg { width: 1.25rem; height: 1.25rem; }
.footer-nav-title {
  font-weight: 600;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav-list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.footer-nav-list a:hover { color: var(--accent); }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  transition: color 0.3s;
}
.footer-whatsapp:hover { color: rgba(254,228,43,0.8); }
.footer-whatsapp svg { width: 1rem; height: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.footer-bottom p { font-size: 0.875rem; color: rgba(255,255,255,0.5); }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ========= NOSSA ESTRUTURA PAGE ========= */
.estrutura-page-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.estrutura-page-hero-deco {
  position: absolute; top: 25%; right: 0;
  width: 24rem; height: 24rem;
  background: rgba(254, 228, 43, 0.1);
  border-radius: 50%; filter: blur(3rem);
}
.estrutura-page-hero-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}
.estrutura-page-hero-content h1 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  margin: 1.5rem 0;
}
.estrutura-page-hero-content p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.estrutura-areas { padding: 4rem 0; position: relative; overflow: hidden; }

.primary-areas {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.primary-area-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--primary-foreground);
  overflow: hidden;
  transition: all 0.5s ease-out;
}
.primary-area-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}
.primary-area-bg {
  position: absolute; inset: 0;
  opacity: 0.3;
  pointer-events: none;
}
.primary-area-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}
.primary-area-icon svg { width: 1.5rem; height: 1.5rem; color: var(--accent-foreground); }
.primary-area-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 10;
}
.primary-area-desc {
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  position: relative;
  z-index: 10;
}

.secondary-areas { display: grid; gap: 1rem; }
.secondary-area-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: rgba(230, 234, 239, 0.5);
  border: 1px solid rgba(217, 224, 232, 0.5);
  transition: background 0.3s;
}
.secondary-area-card:hover { background: var(--muted); }
.secondary-area-inner { display: flex; align-items: flex-start; gap: 1rem; }
.secondary-area-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.5rem;
  background: rgba(41, 67, 105, 0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.secondary-area-card:hover .secondary-area-icon { background: rgba(41, 67, 105, 0.2); }
.secondary-area-icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.secondary-area-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.secondary-area-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.mascot-watermark {
  position: absolute;
  bottom: 2rem; right: 2rem;
  opacity: 0.06;
  pointer-events: none;
}
.mascot-watermark img { width: 12rem; height: auto; }

/* Endereço – Nossa Estrutura */
.estrutura-endereco-section {
  padding: 3rem 0;
  background: var(--background);
}
.estrutura-endereco-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--primary);
  border-radius: 1rem;
  padding: 1.75rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}
.estrutura-endereco-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.estrutura-endereco-icon svg { width: 1.25rem; height: 1.25rem; }
.estrutura-endereco-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 .25rem;
}
.estrutura-endereco-text {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  margin: 0;
}

@media (min-width: 768px) {
  .primary-areas   { grid-template-columns: repeat(3, 1fr); }
  .secondary-areas { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .secondary-areas { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================
   SEJA CORRETOR — Formulário
   ============================================= */
.corretor-form-section {
  padding: 4rem 0 5rem;
  background: var(--background);
}

.corretor-form-wrapper {
  display: grid;
  gap: 2rem;
  align-items: start;
}

/* ── Card do formulário ── */
.corretor-form-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 32px rgba(41, 67, 105, .1);
  overflow: hidden;
}

/* Cabeçalho do card */
.form-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 2rem;
  background: var(--primary);
  border-bottom: 3px solid var(--accent);
}
.form-card-header-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(255,255,255,.12);
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.form-card-header-icon svg { width: 1.25rem; height: 1.25rem; }
.form-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 .2rem;
}
.form-card-subtitle {
  font-size: .825rem;
  color: rgba(255,255,255,.65);
  margin: 0;
}
.form-card-subtitle span { color: var(--accent); }

/* Form em si */
.corretor-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 2rem 2rem;
}

/* ── Seções do formulário ── */
.form-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid #edf0f5;
}
.form-section:last-of-type { border-bottom: none; }

.form-section-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--primary);
}
.form-section-header svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.form-section-optional {
  margin-left: auto;
  font-size: .75rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted-foreground);
  background: #f0f3f7;
  padding: .15rem .6rem;
  border-radius: 2rem;
}

/* ── Grupos e linhas ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-row {
  display: grid;
  gap: 1rem;
}

/* ── Labels ── */
.form-label {
  font-size: .82rem;
  font-weight: 700;
  color: #3d5068;
  letter-spacing: .01em;
}
.form-label span { color: #e53e3e; }

/* ── Inputs, selects, textareas ── */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #dde3ed;
  border-radius: .625rem;
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  color: #1a2335;
  background: #f8fafc;
  transition: border-color .18s, box-shadow .18s, background .18s;
  outline: none;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: #b0bec5; }
.form-input:hover,
.form-select:hover { border-color: #b0bec5; background: #fff; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(41, 67, 105, .1);
}

/* Select com seta customizada */
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23697b96' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea { resize: vertical; min-height: 6rem; }

/* ── Radio buttons ── */
.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.form-radio-label {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.1rem;
  border: 1.5px solid #dde3ed;
  border-radius: 2rem;
  cursor: pointer;
  font-size: .875rem;
  color: #4a5568;
  background: #f8fafc;
  transition: border-color .18s, background .18s, color .18s, box-shadow .18s;
  user-select: none;
}
.form-radio-label input[type="radio"] { display: none; }
.form-radio-label:hover {
  border-color: #b0bec5;
  background: #fff;
}
.form-radio-label:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(41, 67, 105, .2);
}

/* ── Área de envio ── */
.form-submit-area {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .875rem;
}
.btn-form-submit {
  width: 100%;
  justify-content: center;
  padding: .95rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: .75rem;
  letter-spacing: .01em;
}
.form-submit-note {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--muted-foreground);
  margin: 0;
}
.form-submit-note svg { width: .85rem; height: .85rem; flex-shrink: 0; }
.form-send-error {
  width: 100%; color: #dc2626; font-size: .875rem;
  background: #fef2f2; border: 1px solid #fecaca;
  border-radius: .5rem; padding: .75rem 1rem; margin-top: .5rem;
}
.form-success-state {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 3rem 2rem; gap: .75rem;
}
.form-success-icon svg { width: 4rem; height: 4rem; color: #16a34a; }
.form-success-state h3 { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.form-success-state p  { color: var(--muted-foreground); max-width: 360px; }

/* ── Aside ── */
.corretor-form-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.corretor-form-aside-card {
  position: relative;
  background: var(--primary);
  border-radius: 1.25rem;
  padding: 2rem;
  color: #fff;
  overflow: hidden;
}
.corretor-form-aside-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  color: var(--accent);
}
.aside-card-content {
  position: relative;
  z-index: 10;
}
.aside-icon {
  display: block;
  width: 2rem;
  height: 2rem;
  color: var(--accent);
  margin-bottom: .875rem;
}
.aside-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.aside-benefits li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .875rem;
  color: rgba(255,255,255,.9);
  line-height: 1.4;
}
.aside-benefits svg { width: 1rem; height: 1rem; color: var(--accent); flex-shrink: 0; }

.corretor-form-aside-contact {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(41, 67, 105, .08);
  text-align: center;
}
.corretor-form-aside-contact p {
  font-size: .875rem;
  color: var(--muted-foreground);
  margin: 0 0 1rem;
  line-height: 1.5;
}
.corretor-form-aside-contact .btn {
  width: 100%;
  justify-content: center;
}

/* ── Responsivo ── */
@media (min-width: 900px) {
  .corretor-form-wrapper { grid-template-columns: 1fr 320px; }
  .form-row-2 { grid-template-columns: 1fr 1fr; }
  .form-row-3 { grid-template-columns: 1fr .55fr .55fr; }
}
