/* ==========================================================================
   ARREMATE BRASIL & CÂMARA BRASIL PORTUGAL - STYLESHEET
   Colors: #112D4E (Primary Navy), #1B406D (Secondary Blue), #D1AF68 (Gold Accent), #FFFFFF (White)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary-navy: #112D4E;
  --secondary-navy: #1B406D;
  --gold-accent: #D1AF68;
  --gold-light: #E5C989;
  --gold-glow: rgba(209, 175, 104, 0.25);
  --bg-dark: #0A1B30;
  --bg-card: rgba(27, 64, 109, 0.4);
  --bg-light: #F4F7FC;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --border-gold: rgba(209, 175, 104, 0.4);
  --border-light: rgba(255, 255, 255, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-gold: 0 10px 30px rgba(209, 175, 104, 0.2);
  --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background-color: var(--primary-navy);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary-navy);
  border: 2px solid var(--bg-dark);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-accent);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.text-gold {
  color: var(--gold-accent);
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--gold-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section Header Shared */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(209, 175, 104, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-accent);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-accent) 100%);
  color: var(--primary-navy);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(209, 175, 104, 0.4);
  background: linear-gradient(135deg, #FFF 0%, var(--gold-accent) 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--gold-accent);
  color: var(--gold-accent);
  transform: translateY(-3px);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 16px 0;
  background: rgba(17, 45, 78, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(209, 175, 104, 0.15);
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(10, 27, 48, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(209, 175, 104, 0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logos img.logo-arremate {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.logo-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, var(--gold-accent), transparent);
}

.brand-logos img.logo-camara {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-accent);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 180px 0 100px 0;
  background: radial-gradient(circle at 70% 20%, #1B406D 0%, #112D4E 60%, #0A1B30 100%);
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  color: #FFFFFF;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(209, 175, 104, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  color: var(--gold-accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  max-width: 650px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--gold-accent);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
  position: relative;
}

.hero-card-featured {
  background: linear-gradient(145deg, rgba(27, 64, 109, 0.6), rgba(17, 45, 78, 0.8));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-dark);
  position: relative;
}

.hero-card-featured::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--gold-accent), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-card-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid var(--gold-accent);
  background-color: #FFFFFF;
  padding: 3px;
}

.hero-card-header h4 {
  color: #FFFFFF;
  font-size: 1.15rem;
}

.hero-card-header p {
  color: var(--gold-accent);
  font-size: 0.875rem;
}

.hero-card-body {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.hero-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #FFFFFF;
}

.hero-card-features li i {
  color: var(--gold-accent);
}

/* ==========================================================================
   O QUE FAZEMOS SECTION
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background: #0D233F;
  position: relative;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-card {
  background: rgba(27, 64, 109, 0.35);
  border: 1px solid rgba(209, 175, 104, 0.2);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-accent);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  background: rgba(27, 64, 109, 0.55);
}

.pillar-icon {
  width: 72px;
  height: 72px;
  background: rgba(209, 175, 104, 0.15);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  font-size: 2rem;
  margin: 0 auto 20px auto;
}

.pillar-card h3 {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.pillar-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.925rem;
  line-height: 1.6;
}

/* ==========================================================================
   SERVIÇOS SECTION (SUGESTÕES DE INDICAÇÃO)
   ========================================================================== */
.services-section {
  padding: 100px 0;
  background: var(--primary-navy);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: linear-gradient(180deg, #18375E 0%, #112D4E 100%);
  border: 1px solid rgba(209, 175, 104, 0.25);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.service-card.highlight {
  border: 2px solid var(--gold-accent);
  background: linear-gradient(180deg, #1D4577 0%, #112D4E 100%);
  box-shadow: var(--shadow-gold);
}

.service-badge {
  align-self: center;
  padding: 6px 14px;
  background: rgba(209, 175, 104, 0.15);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  color: var(--gold-accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service-title {
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.service-title-special {
  line-height: 1.25;
  margin-bottom: 16px;
}

.service-title-special .title-sub {
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.service-title-special .title-main {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--gold-accent);
  text-shadow: 0 0 10px rgba(209, 175, 104, 0.2);
}

.service-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-list {
  list-style: none;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: 0.9rem;
}

.service-list li i {
  color: var(--gold-accent);
}

/* ==========================================================================
   CADASTRO SECTION (FORMULÁRIO AUTOMATIZADO)
   ========================================================================== */
.register-section {
  padding: 100px 0;
  background: radial-gradient(circle at 30% 50%, #1B406D 0%, #0A1B30 100%);
  position: relative;
}

.form-wrapper {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(17, 45, 78, 0.85);
  border: 1px solid var(--gold-accent);
  border-top: 6px solid var(--gold-accent);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  position: relative;
}

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

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.form-label span.req {
  color: var(--gold-accent);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(10, 27, 48, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px rgba(209, 175, 104, 0.2);
  background: rgba(10, 27, 48, 0.9);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Phone input with DDI Group */
.phone-group {
  display: flex;
  gap: 12px;
}

.ddi-select {
  width: 140px;
  flex-shrink: 0;
  background: rgba(10, 27, 48, 0.8);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 14px;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
}

.ddi-select option {
  background: #112D4E;
  color: #FFFFFF;
}

/* Radio Group (Objective Selection) */
.radio-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.radio-card {
  position: relative;
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-card label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(10, 27, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.925rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.radio-card input[type="radio"]:checked + label {
  border-color: var(--gold-accent);
  background: rgba(209, 175, 104, 0.15);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(209, 175, 104, 0.2);
}

.radio-indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.radio-card input[type="radio"]:checked + label .radio-indicator {
  border-color: var(--gold-accent);
  background: var(--gold-accent);
}

.radio-card input[type="radio"]:checked + label .radio-indicator::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-navy);
}

/* Captcha Widget */
.captcha-widget {
  background: rgba(10, 27, 48, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  cursor: pointer;
  transition: var(--transition);
}

.captcha-widget:hover {
  border-color: var(--gold-accent);
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.captcha-checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.captcha-widget.verified .captcha-checkbox {
  background: #10B981;
  border-color: #10B981;
  color: #FFFFFF;
}

.captcha-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.925rem;
  font-weight: 500;
}

.captcha-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.captcha-brand i {
  color: var(--gold-accent);
  font-size: 1.1rem;
}

/* Response Toast / Alert */
.form-alert {
  padding: 16px;
  border-radius: 10px;
  margin-top: 20px;
  font-size: 0.95rem;
  display: none;
}

.form-alert.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10B981;
  color: #34D399;
}

.form-alert.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #EF4444;
  color: #F87171;
}

/* ==========================================================================
   QUEM SOMOS ("O sucesso por trás da ✨")
   ========================================================================== */
.about-founders-section {
  padding: 100px 0;
  background: #0B1C33;
  position: relative;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.founder-card {
  background: rgba(17, 45, 78, 0.6);
  border: 1px solid rgba(209, 175, 104, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.founder-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.founder-img-wrapper {
  width: 100%;
  height: 380px;
  position: relative;
  overflow: hidden;
  background: var(--primary-navy);
}

.founder-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: var(--transition);
}

.founder-card:hover .founder-img-wrapper img {
  transform: scale(1.04);
}

.founder-content {
  padding: 30px;
}

.founder-name {
  color: #FFFFFF;
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.founder-role {
  color: var(--gold-accent);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-bio {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Joint Founders Banner */
.founders-banner {
  background: linear-gradient(135deg, rgba(27, 64, 109, 0.8), rgba(17, 45, 78, 0.9));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.banner-img-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gold-accent);
  height: 280px;
}

@media (min-width: 769px) {
  .banner-img-wrapper {
    transform: translateY(20px);
  }
}

.banner-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-text blockquote {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  color: #FFFFFF;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 20px;
  position: relative;
}

.banner-text blockquote::before {
  content: '“';
  font-size: 4rem;
  color: var(--gold-accent);
  position: absolute;
  top: -30px;
  left: -20px;
  opacity: 0.3;
}

.banner-text cite {
  color: var(--gold-accent);
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #071324;
  border-top: 1px solid rgba(209, 175, 104, 0.2);
  padding: 80px 0 30px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-title {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-accent);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-accent);
  padding-left: 5px;
}

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

.footer-contact-item i {
  color: var(--gold-accent);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   Mobile: Text aligned to the left inside centered containers
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header {
    padding: 12px 0;
  }
  .brand-logos img.logo-arremate {
    height: 32px;
  }
  .brand-logos img.logo-camara {
    height: 36px;
  }
  .nav-links {
    display: none;
  }
  
  .hero-section {
    padding: 140px 0 60px 0;
  }
  .hero-title {
    font-size: 2.25rem;
    text-align: left;
  }
  .hero-description {
    font-size: 1.05rem;
    text-align: left;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }

  .section-header {
    text-align: left;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .radio-options {
    grid-template-columns: 1fr;
  }

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

  .founders-grid {
    grid-template-columns: 1fr;
  }

  .founders-banner {
    grid-template-columns: 1fr;
    padding: 24px;
  }

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