/* ===================================
   GUIA DO PARAGUAI — MAIN STYLESHEET
   Grupo WTC SA | guiadoparaguai.com
   =================================== */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96E;
  --gold-dark: #A07830;
  --navy: #0A1628;
  --navy-mid: #0F1F3D;
  --navy-light: #162547;
  --white: #FAFAF8;
  --white-off: #F0EDE8;
  --gray-light: #E8E5DF;
  --gray-mid: #9A9690;
  --text-dark: #1A1614;
  --text-body: #3D3830;
  --green-accent: #2ECC71;
  --red-accent: #E74C3C;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(10,22,40,0.12);
  --shadow-lg: 0 16px 64px rgba(10,22,40,0.22);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TOP BAR ---- */
.header-top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-links { display: flex; gap: 20px; align-items: center; }
.top-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.top-link:hover { color: var(--gold-light); }
.whatsapp-link { color: #25D366 !important; }
.whatsapp-link:hover { color: #20b859 !important; }

/* ---- NAVIGATION ---- */
.main-nav {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-mark.sm { width: 36px; height: 36px; font-size: 0.9rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1;
}
.logo-sub {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-link:hover { color: var(--gold-light); background: rgba(201,168,76,0.1); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
  margin-left: 4px;
}
.whatsapp-cta {
  background: #25D366;
  color: white !important;
}
.whatsapp-cta:hover { background: #20b859; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,0.4); }

.braznext-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy) !important;
}
.braznext-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,168,76,0.5); }

.badge-new {
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 0 20px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  padding: 10px 4px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: block;
}
.mobile-menu.active { display: flex; }

/* ---- HERO ---- */
.hero-section {
  background: var(--navy);
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-glow.g1 {
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero-glow.g2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(21,88,180,0.12) 0%, transparent 70%);
  bottom: 0;
  left: -50px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.stat { display: flex; flex-direction: column; padding: 0 28px; }
.stat:first-child { padding-left: 0; }
.stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  font-weight: 400;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Banner Rotator */
.banner-rotator {
  margin-top: 48px;
  overflow: hidden;
  position: relative;
}
.banner-rotator::before, .banner-rotator::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.banner-rotator::before { left: 0; background: linear-gradient(to right, var(--navy), transparent); }
.banner-rotator::after { right: 0; background: linear-gradient(to left, var(--navy), transparent); }
.banner-track {
  display: flex;
  gap: 16px;
  animation: scroll 40s linear infinite;
  width: max-content;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.banner-track:hover { animation-play-state: paused; }
.mini-banner {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 12px 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.mini-banner:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}
.mini-banner .mb-dot {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-braznext {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  box-shadow: 0 4px 24px rgba(201,168,76,0.35);
}
.btn-braznext:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(201,168,76,0.5);
}

/* ---- SECTIONS ---- */
.section {
  padding: 96px 0;
}
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  font-family: var(--font-mono);
}
.section-label.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }
.section-desc {
  font-size: 1rem;
  color: var(--gray-mid);
  line-height: 1.7;
}
.section-desc.light { color: rgba(255,255,255,0.6); }

/* ---- COMPANIES GRID ---- */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.company-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
.company-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.company-banner {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.company-banner-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
  padding: 20px;
}
.company-banner-emoji {
  font-size: 2.5rem;
  margin-bottom: 8px;
  display: block;
}
.company-banner-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.company-banner-url {
  font-size: 0.72rem;
  opacity: 0.8;
  margin-top: 4px;
  font-family: var(--font-mono);
}
.company-body {
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.company-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.company-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  padding: 9px 16px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  transition: all var(--transition);
  align-self: flex-start;
}
.company-link:hover {
  background: var(--gold-dark);
  color: white;
  border-color: var(--gold-dark);
  transform: translateX(4px);
}

/* ---- PARTNERS GRID ---- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.partner-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  display: block;
}
.partner-card:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.partner-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.partner-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.partner-url {
  font-size: 0.72rem;
  color: var(--gold-light);
  font-family: var(--font-mono);
  margin-bottom: 10px;
  display: block;
}
.partner-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ---- BRAZNEXT SECTION ---- */
.braznext-section {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.braznext-bg { position: absolute; inset: 0; pointer-events: none; }
.bn-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.bn-glow.bn-g1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.bn-glow.bn-g2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(21,88,180,0.1) 0%, transparent 70%);
  bottom: 0; left: -50px;
}
.bn-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.braznext-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.bn-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.bn-icon { font-size: 1.1rem; }
.bn-brand { font-family: var(--font-display); }

.bn-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.bn-title em { font-style: italic; color: var(--gold-light); }
.bn-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}

.bn-benefits { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.bn-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.bn-icon-sm {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.bn-benefit strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.bn-benefit p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.bn-flags { font-size: 1.6rem; display: flex; gap: 10px; }

/* BrazNext Form Card */
.braznext-form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.form-card-header {
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  padding: 28px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.price-period {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}
.form-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}
.form-card-header p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin-bottom: 16px;
}
.form-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-features span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}
.bn-form { padding: 28px; display: flex; flex-direction: column; gap: 14px; }

/* ---- FORMS ---- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}
.contact-form .form-group label { color: var(--text-body); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  transition: all var(--transition);
  outline: none;
  width: 100%;
}
.form-group select option { background: var(--navy); color: var(--white); }
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  background: var(--white-off);
  border-color: var(--gray-light);
  color: var(--text-dark);
}
.contact-form .form-group select option { background: var(--white); color: var(--text-dark); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder { color: var(--gray-mid); }

.form-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-top: 4px;
}
.form-success {
  background: rgba(46,204,113,0.12);
  border: 1px solid rgba(46,204,113,0.3);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: var(--white);
}
.form-success span { font-size: 2rem; display: block; margin-bottom: 8px; }
.form-success strong { display: block; font-size: 1.1rem; margin-bottom: 6px; color: #2ecc71; }
.form-success p { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

/* ---- WTC SECTION ---- */
.wtc-section { background: var(--white-off); }
.wtc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.wtc-text .section-label { text-align: left; }
.wtc-text .section-title { text-align: left; }
.wtc-text > p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 28px;
}
.wtc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.wtc-feat {
  font-size: 0.88rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.wtc-visual { position: relative; height: 400px; }
.wtc-card-stack { position: relative; height: 100%; }
.wtc-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.wtc-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-lg); }
.wtc-card.c1 { width: 260px; top: 0; left: 0; z-index: 3; }
.wtc-card.c2 { width: 240px; top: 80px; right: 0; z-index: 2; }
.wtc-card.c3 { width: 280px; bottom: 0; left: 40px; z-index: 1; }
.card-icon { font-size: 2rem; margin-bottom: 10px; }
.wtc-card strong { display: block; font-size: 1rem; color: var(--text-dark); margin-bottom: 6px; font-weight: 700; }
.wtc-card span { font-size: 0.82rem; color: var(--gray-mid); }

/* ---- CONTACT SECTION ---- */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: all var(--transition);
  cursor: pointer;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-card.whatsapp:hover { border-color: #25D366; }
.contact-card.email:hover { border-color: var(--gold); }
.cc-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  background: var(--white-off);
}
.contact-card.whatsapp .cc-icon { background: #25D366; color: white; }
.contact-card.email .cc-icon { background: rgba(201,168,76,0.12); color: var(--gold-dark); }
.cc-text strong { display: block; font-weight: 700; color: var(--text-dark); font-size: 0.95rem; }
.cc-text span { display: block; font-size: 0.9rem; color: var(--text-body); margin: 2px 0; }
.cc-text em { font-style: normal; font-size: 0.78rem; color: var(--gray-mid); }

.contact-form {
  background: var(--white-off);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

/* ---- FOOTER ---- */
.site-footer { background: var(--navy); color: var(--white); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo strong { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); display: block; }
.footer-logo span { font-size: 0.72rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }
.footer-brand > p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  font-family: var(--font-mono);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--gold); }

/* ---- FLOATING WHATSAPP ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  z-index: 999;
  transition: all var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(37,211,102,0.7);
}
.wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  from { transform: scale(1); opacity: 0.8; }
  to { transform: scale(1.6); opacity: 0; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease both; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .braznext-grid { grid-template-columns: 1fr; gap: 40px; }
  .wtc-grid { grid-template-columns: 1fr; }
  .wtc-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-section { padding: 60px 0 40px; }
  .hero-title { font-size: 2.4rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-sep { width: 40px; height: 1px; }
  .stat { padding: 0; text-align: center; }
  .companies-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .top-bar-inner { justify-content: center; }
  .top-bar-links { flex-direction: column; gap: 8px; align-items: center; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 24px; }
  .bn-form { padding: 20px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .partners-grid { grid-template-columns: 1fr; }
  .wtc-features { grid-template-columns: 1fr; }
}
