/* ============================================
   PARAGUAI 360 - Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Nunito:wght@300;400;600;700;800&display=swap');

:root {
  --red: #C8102E;
  --red-dark: #9b0c22;
  --red-light: #e8304a;
  --white: #FFFFFF;
  --cream: #FFF8F0;
  --dark: #0a0a0a;
  --dark2: #141414;
  --dark3: #1e1e1e;
  --gray: #888;
  --gray-light: #ccc;
  --gold: #D4AF37;
  --gold-light: #f0d060;
  --green: #00843D;
  --green-light: #00b355;
  --text: #1a1a1a;
  --text-light: #555;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
p { font-size: 1rem; }
a { text-decoration: none; color: inherit; }

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  transition: var(--transition); border: none; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,16,46,0.35); }
.btn-secondary { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-secondary:hover { background: var(--red); color: white; transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,0.35); }
.btn-green { background: var(--green); color: white; }
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,132,61,0.35); }
.btn-white { background: white; color: var(--red); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

.tag {
  display: inline-block; padding: 5px 16px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(200,16,46,0.1); color: var(--red); margin-bottom: 12px;
}
.tag-gold { background: rgba(212,175,55,0.1); color: var(--gold); }
.tag-green { background: rgba(0,132,61,0.1); color: var(--green); }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
}
.badge-red { background: var(--red); color: white; }
.badge-gold { background: var(--gold); color: var(--dark); }
.badge-green { background: var(--green); color: white; }

/* ---- DIVIDER ---- */
.divider { width: 60px; height: 4px; background: var(--red); border-radius: 2px; margin: 16px 0 28px; }
.divider-center { margin: 16px auto 28px; }
.divider-gold { background: var(--gold); }
.divider-green { background: var(--green); }

/* ---- CARD ---- */
.card {
  background: white; border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-body { padding: 28px; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.topbar {
  background: var(--dark); color: white; padding: 8px 0; font-size: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; gap: 14px; align-items: center; }
.topbar-right a { color: var(--gray-light); transition: color 0.2s; }
.topbar-right a:hover { color: var(--red); }

.header {
  position: sticky; top: 0; z-index: 1000;
  background: white;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 52px; height: 52px; background: var(--red);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900;
  color: white; letter-spacing: -1px; flex-shrink: 0;
}
.logo-text { line-height: 1.1; }
.logo-text strong { font-family: 'Playfair Display', serif; font-size: 1.3rem; display: block; color: var(--dark); }
.logo-text small { font-size: 0.7rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1.5px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > a {
  padding: 8px 16px; border-radius: 8px; font-weight: 600; font-size: 0.9rem;
  color: var(--text); transition: var(--transition); white-space: nowrap;
}
.nav > a:hover, .nav > a.active { color: var(--red); background: rgba(200,16,46,0.07); }

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: '▾'; font-size: 0.7rem; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
  background: white; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.08); opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: var(--transition); z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  font-size: 0.9rem; font-weight: 600; color: var(--text); transition: var(--transition);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { color: var(--red); background: rgba(200,16,46,0.05); }

.header-cta { display: flex; align-items: center; gap: 12px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); transition: var(--transition); display: block; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 90vh; position: relative; display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0508 40%, #0d1a0d 100%);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(200,16,46,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0,132,61,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 60% 80%, rgba(212,175,55,0.08) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 0; }
.hero-text { color: white; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
  background: rgba(200,16,46,0.2); border: 1px solid rgba(200,16,46,0.4);
  border-radius: 50px; font-size: 0.8rem; font-weight: 700; color: #ff8096;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 24px;
}
.hero-text h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.05; margin-bottom: 20px; }
.hero-text h1 em { font-style: normal; color: var(--gold); }
.hero-text p { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 500px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--gold); font-family: 'Playfair Display', serif; }
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

.hero-visual { position: relative; }
.hero-card-stack { position: relative; height: 500px; }
.floating-card {
  position: absolute; background: rgba(255,255,255,0.05); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
  padding: 20px 24px; color: white; animation: float 6s ease-in-out infinite;
}
.floating-card:nth-child(1) { top: 0; right: 0; width: 280px; animation-delay: 0s; }
.floating-card:nth-child(2) { top: 160px; left: 0; width: 260px; animation-delay: 2s; }
.floating-card:nth-child(3) { bottom: 0; right: 40px; width: 240px; animation-delay: 4s; }
.floating-card .fc-icon { font-size: 2rem; margin-bottom: 8px; }
.floating-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.floating-card p { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin: 0; }
.floating-card .fc-highlight { color: var(--gold); font-weight: 800; font-size: 1.4rem; }

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

/* ============================================
   CARROSSEL DE SITES PARCEIROS
   ============================================ */
.carousel-section { background: var(--dark); padding: 40px 0; overflow: hidden; }
.carousel-title { color: white; text-align: center; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; color: var(--gray); }
.carousel-track-wrapper { overflow: hidden; position: relative; }
.carousel-track-wrapper::before, .carousel-track-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.carousel-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
.carousel-track-wrapper::after { right: 0; background: linear-gradient(to left, var(--dark), transparent); }
.carousel-track {
  display: flex; gap: 20px; animation: scroll-left 30s linear infinite;
  width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }
.carousel-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 16px 24px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 10px;
  text-decoration: none; min-width: 160px; transition: var(--transition);
}
.carousel-item:hover { background: rgba(200,16,46,0.15); border-color: rgba(200,16,46,0.4); transform: translateY(-4px); }
.carousel-item .ci-icon { font-size: 1.5rem; }
.carousel-item .ci-name { font-size: 0.8rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.5px; }
.carousel-item .ci-url { font-size: 0.7rem; color: var(--gray); }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   ABOUT / QUEM SOMOS
   ============================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrapper { position: relative; }
.about-img-box {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 20px; padding: 48px; display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
}
.about-img-box::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.about-img-box::after {
  content: ''; position: absolute; bottom: -60px; left: -30px;
  width: 250px; height: 250px; background: rgba(0,0,0,0.1);
  border-radius: 50%;
}
.about-stat-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; padding: 16px 20px;
  color: white; position: relative; z-index: 1;
}
.about-stat-card strong { font-size: 2rem; font-family: 'Playfair Display', serif; display: block; }
.about-stat-card span { font-size: 0.85rem; opacity: 0.8; }
.about-floating-badge {
  position: absolute; bottom: -20px; right: -20px; z-index: 2;
  background: var(--gold); color: var(--dark); border-radius: 12px; padding: 16px 20px;
  font-weight: 800; font-size: 0.9rem; text-align: center; box-shadow: var(--shadow-lg);
}
.about-text .features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.feature-item { display: flex; align-items: flex-start; gap: 10px; }
.feature-icon { width: 36px; height: 36px; background: rgba(200,16,46,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.feature-item h5 { font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.feature-item p { font-size: 0.8rem; color: var(--text-light); margin: 0; }

/* ============================================
   SERVICES
   ============================================ */
.services-section { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.service-card {
  background: white; border-radius: var(--radius); padding: 32px;
  border: 1px solid rgba(0,0,0,0.06); transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--red); transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon { font-size: 2.4rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-list li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; }
.service-list li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }

/* ============================================
   FAQ
   ============================================ */
.faq-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.faq-tab {
  padding: 10px 24px; border-radius: 50px; font-weight: 700; font-size: 0.85rem;
  cursor: pointer; transition: var(--transition); border: 2px solid rgba(0,0,0,0.1);
  background: white; text-transform: uppercase; letter-spacing: 0.5px;
}
.faq-tab.active { background: var(--red); color: white; border-color: var(--red); }
.faq-panel { display: none; }
.faq-panel.active { display: block; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white; border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden; transition: var(--transition);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer; font-weight: 700; font-size: 0.95rem;
  transition: var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-question .faq-icon {
  width: 28px; height: 28px; background: rgba(200,16,46,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1rem; transition: var(--transition); color: var(--red);
}
.faq-item.open .faq-icon { background: var(--red); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-light); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 600px; }

/* ============================================
   WHATSAPP CTA
   ============================================ */
.wa-section { background: linear-gradient(135deg, var(--green), #005a2b); position: relative; overflow: hidden; }
.wa-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Ccircle cx='30' cy='30' r='20' stroke='white' stroke-width='0.5' fill='none' opacity='0.1'/%3E%3C/svg%3E") repeat;
}
.wa-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; color: white; }
.wa-content h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.wa-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 32px; max-width: 600px; }
.wa-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: white; color: var(--green); padding: 18px 44px; border-radius: 50px;
  font-weight: 800; font-size: 1.1rem; transition: var(--transition); text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.wa-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.wa-btn svg { width: 28px; height: 28px; flex-shrink: 0; }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section { background: var(--dark); color: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info h2 { color: white; }
.contact-info .divider { background: var(--red); }
.contact-info p { color: rgba(255,255,255,0.7); }
.contact-items { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item-icon { width: 44px; height: 44px; background: rgba(200,16,46,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item h5 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 3px; }
.contact-item p { font-size: 0.95rem; color: rgba(255,255,255,0.85); margin: 0; }

.form-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 36px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
input, select, textarea {
  width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  color: white; font-family: 'Nunito', sans-serif; font-size: 0.95rem;
  transition: var(--transition); outline: none;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.3); }
input:focus, select:focus, textarea:focus { border-color: var(--red); background: rgba(200,16,46,0.07); }
select option { background: var(--dark3); color: white; }
textarea { resize: vertical; min-height: 120px; }

/* Light form (for BrazNext page) */
.form-light input, .form-light select, .form-light textarea {
  background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.12); color: var(--text);
}
.form-light input::placeholder, .form-light textarea::placeholder { color: rgba(0,0,0,0.3); }
.form-light input:focus, .form-light select:focus, .form-light textarea:focus { border-color: var(--gold); background: rgba(212,175,55,0.05); }
.form-light select option { background: white; color: var(--text); }
.form-light label { color: var(--text-light); }

/* ============================================
   SOCIAL ICONS
   ============================================ */
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon {
  width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; transition: var(--transition); color: white;
  text-decoration: none;
}
.si-facebook { background: #1877F2; }
.si-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.si-threads { background: #000; }
.si-tiktok { background: #010101; border: 1px solid rgba(255,255,255,0.2); }
.si-youtube { background: #FF0000; }
.si-telegram { background: #0088cc; }
.social-icon:hover { transform: translateY(-3px) scale(1.1); box-shadow: 0 6px 18px rgba(0,0,0,0.25); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--dark2); color: white; }
.footer-top { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 16px 0 20px; max-width: 300px; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.5); margin-bottom: 16px; font-family: 'Nunito', sans-serif; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.8rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.45); font-size: 0.8rem; transition: color 0.2s; }
.footer-legal a:hover { color: white; }

/* ============================================
   PAGE HERO (INNER PAGES)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a0508 100%);
  padding: 100px 0 60px; text-align: center; color: white;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,16,46,0.15) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: white; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: var(--red); }

/* ============================================
   BRAZNEXT PAGE
   ============================================ */
.braznext-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1200 40%, #0a0a0a 100%);
  min-height: 60vh; display: flex; align-items: center; position: relative; overflow: hidden;
}
.braznext-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,175,55,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(212,175,55,0.06) 0%, transparent 50%);
}
.braznext-hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 24px; }
.braznext-hero-text { color: white; }
.braznext-hero-text .tag-gold { background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.3); color: var(--gold); }
.braznext-hero-text h1 em { font-style: normal; color: var(--gold); }
.braznext-hero-text p { color: rgba(255,255,255,0.7); }
.braznext-price-card {
  background: rgba(212,175,55,0.05); border: 2px solid rgba(212,175,55,0.3);
  border-radius: 20px; padding: 36px; text-align: center; color: white;
}
.braznext-price-card .price { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.braznext-price-card .price-period { font-size: 1rem; color: rgba(255,255,255,0.6); }
.braznext-price-card .price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 24px 0; text-align: left; }
.braznext-price-card .price-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.braznext-price-card .price-features li::before { content: '✦'; color: var(--gold); flex-shrink: 0; }

.braznext-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 48px; }
.braznext-benefit {
  background: white; border-radius: var(--radius); padding: 28px;
  border: 1px solid rgba(0,0,0,0.08); transition: var(--transition);
  border-left: 4px solid var(--gold);
}
.braznext-benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.braznext-benefit .bb-icon { font-size: 2rem; margin-bottom: 12px; }
.braznext-benefit h3 { font-size: 1.1rem; margin-bottom: 8px; }
.braznext-benefit p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

.braznext-form-section { background: linear-gradient(135deg, #0f0e00, #1a1200); }
.braznext-form-box {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px; padding: 40px; max-width: 700px; margin: 0 auto;
}
.braznext-form-box h2 { color: white; text-align: center; margin-bottom: 8px; }
.braznext-form-box p { color: rgba(255,255,255,0.6); text-align: center; margin-bottom: 32px; }
.payment-options { display: flex; flex-direction: column; gap: 8px; }
.payment-option { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; cursor: pointer; transition: var(--transition); }
.payment-option:hover { border-color: var(--gold); background: rgba(212,175,55,0.05); }
.payment-option input[type="radio"] { accent-color: var(--gold); flex-shrink: 0; }
.payment-option label { font-size: 0.9rem; color: rgba(255,255,255,0.8); cursor: pointer; font-weight: 600; margin: 0; display: flex; align-items: center; gap: 8px; }

/* ============================================
   SITES PARCEIROS PAGE
   ============================================ */
.sites-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.site-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08); transition: var(--transition);
  display: flex; flex-direction: column;
}
.site-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.site-card-header { padding: 28px; display: flex; align-items: center; gap: 16px; }
.site-card-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.site-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.site-card .site-url { font-size: 0.8rem; color: var(--text-light); font-family: monospace; }
.site-card-body { padding: 0 28px 20px; flex: 1; }
.site-card-body p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; }
.site-card-footer { padding: 16px 28px; border-top: 1px solid rgba(0,0,0,0.06); }
.site-card-footer a { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 700; color: var(--red); transition: color 0.2s; }
.site-card-footer a:hover { color: var(--red-dark); }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; margin: 40px 0 12px; color: var(--red); }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 8px; }
.legal-content p, .legal-content li { font-size: 0.95rem; color: var(--text-light); line-height: 1.9; }
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 6px; }
.legal-content .last-update { background: rgba(200,16,46,0.06); border-left: 4px solid var(--red); padding: 12px 20px; border-radius: 0 8px 8px 0; font-size: 0.85rem; margin-bottom: 40px; }

/* ============================================
   FLOATING WA BUTTON
   ============================================ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: var(--transition);
  animation: pulse-green 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); animation: none; }
.wa-float svg { width: 32px; height: 32px; fill: white; }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: white; flex-direction: column; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.mobile-menu-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.06); border-radius: 8px; cursor: pointer; font-size: 1.2rem; }
.mobile-nav { display: flex; flex-direction: column; padding: 20px 24px; gap: 4px; flex: 1; }
.mobile-nav a { padding: 14px 16px; border-radius: 10px; font-weight: 700; font-size: 1rem; color: var(--text); border-bottom: 1px solid rgba(0,0,0,0.05); }
.mobile-nav a:hover { color: var(--red); background: rgba(200,16,46,0.05); }
.mobile-menu-footer { padding: 20px 24px; border-top: 1px solid rgba(0,0,0,0.08); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-content { padding: 60px 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrapper { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .braznext-hero .container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .topbar-left { display: none; }
  .hero { min-height: 70vh; }
  .hero-stats { gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .faq-tabs { gap: 6px; }
  .faq-tab { padding: 8px 16px; font-size: 0.78rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-text .features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .sites-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .braznext-price-card .price { font-size: 3rem; }
  .braznext-form-box { padding: 24px; }
}

/* ============================================
   ANIMATIONS ON SCROLL
   ============================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Notification toast */
.toast {
  position: fixed; bottom: 90px; right: 24px; z-index: 9999;
  background: var(--green); color: white; padding: 14px 24px; border-radius: 10px;
  font-weight: 700; font-size: 0.9rem; box-shadow: var(--shadow-lg);
  transform: translateX(120%); transition: transform 0.3s ease;
}
.toast.show { transform: translateX(0); }
