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

:root {
  --primary: #2d1b69;
  --primary-light: #4a2e9e;
  --primary-dark: #1a0f42;
  --accent: #ff6b35;
  --accent-light: #ff8c5a;
  --secondary: #ffe66d;
  --bg: #fafafa;
  --bg-alt: #f0eef8;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(45, 27, 105, 0.12);
  --shadow-lg: 0 8px 32px rgba(45, 27, 105, 0.18);
  --shadow-xl: 0 16px 48px rgba(45, 27, 105, 0.22);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.25s ease;
}

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

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
}
h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}
.btn-block {
  width: 100%;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
  color: var(--text);
}
.section-title.left {
  text-align: left;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-accent {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--primary);
  background: var(--bg-alt);
}

.nav-cta {
  margin-left: 8px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0f42 0%, #2d1b69 50%, #4a2e9e 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: -100px;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: -100px;
  left: -80px;
}

.hero-shape-3 {
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  top: 50%;
  left: 40%;
  opacity: 0.2;
}

.hero-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 230, 109, 0.15);
  color: var(--secondary);
  border: 1px solid rgba(255, 230, 109, 0.3);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

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

.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  font-family: "Playfair Display", serif;
}

.stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Hero Visual - Book Stack */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-stack {
  position: relative;
  width: 300px;
  height: 320px;
}

.book {
  position: absolute;
  width: 160px;
  height: 210px;
  border-radius: 4px 12px 12px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: transform 0.4s ease;
}

.book:hover {
  transform: translateY(-8px) rotate(0deg) !important;
}

.book-1 {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  left: 60px;
  top: 20px;
  transform: rotate(-8deg);
  z-index: 3;
}

.book-2 {
  background: linear-gradient(135deg, #ffe66d, #ffc107);
  left: 100px;
  top: 40px;
  transform: rotate(4deg);
  z-index: 2;
}

.book-3 {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  left: 20px;
  top: 60px;
  transform: rotate(-2deg);
  z-index: 1;
}

.book-cover {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
}

.book-emoji {
  font-size: 2.5rem;
}

.book-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.hero-cat {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 3rem;
  animation: catBounce 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

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

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.step-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 2px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  opacity: 0;
  transition: opacity var(--transition);
}

.step-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.step-card:hover .step-number {
  color: var(--primary-light);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.step-card h3 {
  margin-bottom: 12px;
  color: var(--text);
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  margin-top: 80px;
  color: var(--primary);
  font-size: 1.5rem;
  opacity: 0.3;
  position: relative;
}

.step-connector::after {
  content: "→";
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.6;
}

/* ===== BIBLIOTECA ===== */
.biblioteca {
  padding: 100px 0;
  background: var(--bg-alt);
}

.pub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.pub-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.pub-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.pub-cover {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pub-cover-1 {
  background: linear-gradient(135deg, #ff6b35, #e91e63);
}
.pub-cover-2 {
  background: linear-gradient(135deg, #2d1b69, #4a2e9e);
}
.pub-cover-3 {
  background: linear-gradient(135deg, #ff8f00, #f57f17);
}
.pub-cover-4 {
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
}
.pub-cover-5 {
  background: linear-gradient(135deg, #1565c0, #0d47a1);
}
.pub-cover-6 {
  background: linear-gradient(135deg, #6a1b9a, #4a148c);
}

.pub-emoji {
  font-size: 4rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.pub-badge-new {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--secondary);
  color: var(--text);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 50px;
}

.pub-info {
  padding: 20px 22px 22px;
}

.pub-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.pub-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.pub-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

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

.pub-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

.biblioteca-cta {
  text-align: center;
}

/* ===== PLANOS ===== */
.planos {
  padding: 100px 0;
  background: var(--white);
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 32px;
}

.plano-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  border: 2px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.plano-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.plano-featured {
  background: linear-gradient(145deg, var(--primary), var(--primary-light));
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.04);
  box-shadow: var(--shadow-xl);
}

.plano-featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.plano-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--secondary);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.plano-header {
  margin-bottom: 28px;
}

.plano-header h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: inherit;
}

.plano-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.price-from {
  font-size: 0.8rem;
  color: var(--text-muted);
  width: 100%;
  margin-bottom: 4px;
}

.plano-featured .price-from {
  color: rgba(255, 255, 255, 0.7);
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
  align-self: flex-start;
  margin-top: 8px;
}

.plano-featured .price-currency {
  color: rgba(255, 255, 255, 0.8);
}

.price-value {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
}

.plano-featured .price-value {
  color: var(--white);
}

.price-cents {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  align-self: flex-end;
  margin-bottom: 4px;
}

.plano-featured .price-cents {
  color: rgba(255, 255, 255, 0.8);
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  align-self: flex-end;
  margin-bottom: 6px;
}

.plano-featured .price-period {
  color: rgba(255, 255, 255, 0.7);
}

.plano-save {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
}

.plano-featured .plano-save {
  color: var(--secondary);
}

.plano-features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plano-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.plano-featured .plano-features li {
  color: rgba(255, 255, 255, 0.85);
}

.feat-icon {
  font-size: 0.85rem;
  font-weight: 900;
  color: #22c55e;
  flex-shrink: 0;
}

.feat-icon.muted {
  color: var(--text-light);
}
.plano-featured .feat-icon.muted {
  color: rgba(255, 255, 255, 0.35);
}

.planos-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  padding: 100px 0;
  background: var(--bg-alt);
}

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

.dep-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.dep-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 28px;
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  color: var(--bg-alt);
  line-height: 1;
  pointer-events: none;
}

.dep-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.dep-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.dep-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.dep-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dep-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.dep-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}

.dep-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== SOBRE ===== */
.sobre {
  padding: 100px 0;
  background: var(--white);
}

.sobre-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}

.sobre-card {
  background: linear-gradient(145deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-xl);
}

.sobre-mascot {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
  animation: catBounce 3s ease-in-out infinite;
}

.sobre-card h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.sobre-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 32px;
}

.sobre-numbers {
  display: flex;
  justify-content: space-around;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sobre-numbers div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sobre-numbers strong {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--secondary);
}

.sobre-numbers span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sobre-content .section-tag {
  margin-bottom: 16px;
}
.sobre-content .section-title {
  margin-bottom: 20px;
}

.sobre-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.sobre-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.sobre-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.sobre-feat:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.sobre-feat > span {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.sobre-feat strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 2px;
}

.sobre-feat p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(135deg, #ff6b35 0%, #e91e63 50%, #9c27b0 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-container {
  position: relative;
}

.cta-content {
  text-align: center;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto;
}

.cta-cat {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
  animation: catBounce 3s ease-in-out infinite;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .logo-text {
  color: var(--white);
}
.footer .logo-accent {
  color: var(--accent);
}

.footer-tagline {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 280px;
}

.footer-made {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .planos-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto 32px;
  }
  .plano-featured {
    transform: scale(1);
  }
  .plano-featured:hover {
    transform: translateY(-4px);
  }
  .sobre-container {
    grid-template-columns: 1fr;
  }
  .sobre-visual {
    order: 2;
  }
  .sobre-content {
    order: 1;
  }
  .dep-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav.open {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero {
    padding: 110px 0 80px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    text-align: center;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-connector {
    display: none;
  }

  .pub-grid {
    grid-template-columns: 1fr;
  }
  .dep-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-actions {
    flex-direction: column;
  }
  .cta-actions .btn {
    text-align: center;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: 40px;
  }
  .hero-stats {
    gap: 16px;
  }
  .stat strong {
    font-size: 1.2rem;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease both;
}

.fade-in-delay-1 {
  animation-delay: 0.1s;
}
.fade-in-delay-2 {
  animation-delay: 0.2s;
}
.fade-in-delay-3 {
  animation-delay: 0.3s;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ===== CUSTOM ADDITIONS ===== */
.dep-date {
  font-size: 0.75rem;
  color: #999;
  margin: 0.25rem 0 0.75rem;
}
.planos-guarantee {
  text-align: center;
  color: #2d1b69;
  font-size: 0.95rem;
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(45, 27, 105, 0.06);
  border-radius: 8px;
}

/* === DESIGN OVERHAUL STYLES === */

/* Hero image */
.hero-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #3d2a8a 0%, #ff6b35 100%);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-fallback .hero-img {
  display: none;
}
.hero-image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Step icons */
.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #2d1b69 0%, #4a2d9e 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 1.5rem;
}

/* Publication icons */
.pub-icon {
  display: block;
  margin: 0 auto;
}

/* Stars */
.dep-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}
.star {
  width: 20px;
  height: 20px;
}

/* BR flag badge */
.feat-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #009c3b;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 6px;
  flex-shrink: 0;
}

/* Sobre mascot */
.sobre-mascot {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 96px;
  height: 96px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

/* CTA section — hide empty cat div */
.cta-cat {
  display: none;
}

/* Logo icon sizing fix for SVG */
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.footer .logo-icon {
  color: var(--white);
}
