@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --primary: #FDE910;
  --primary-light: #FEFE22;
  --primary-warm: #FBEC5D;
  --dark: #1a1a1a;
  --dark-light: #2d2d2d;
  --gray-900: #111;
  --gray-800: #222;
  --gray-700: #333;
  --gray-600: #555;
  --gray-500: #777;
  --gray-400: #999;
  --gray-300: #bbb;
  --gray-200: #ddd;
  --gray-100: #eee;
  --gray-50: #f5f5f5;
  --white: #fff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1280px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition-fast);
}

.btn:hover::after {
  background: rgba(0,0,0,0.06);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
}

.btn-primary:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0) scale(0.97);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-accent {
  background: var(--primary);
  color: var(--dark);
}

.btn-accent:hover {
  background: var(--primary-light);
  box-shadow: 0 8px 30px rgba(253, 233, 16, 0.4);
  transform: translateY(-2px);
}

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 20px 0;
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 12px 0;
  color: #000 !important;
}

.scrolled .nav a {
  color: #000 !important;
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding: 4px 0;
}

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

.nav a:hover {
  color: var(--dark);
}

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

.header-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.burger span {
  width: 28px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition);
  display: block;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--dark);
  font-weight: 500;
}

/* ===================== top ===================== */
.top {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gray-50);
}

.top-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.top-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.top-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: var(--white);
  padding: 120px 0 80px;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,0.1);
}

.top h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.1;
}

.top h1 em {
  font-style: italic;
  color: var(--primary);
}

.top-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 40px;
  max-width: 540px;
}

.top-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.top-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.top-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===================== CONTENT BLOCKS ===================== */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-block.reverse .split-image {
  order: 2;
}

.split-block.reverse .split-text {
  order: 1;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-image:hover img {
  transform: scale(1.03);
}

.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.05);
  pointer-events: none;
}

.split-text .section-label {
  margin-bottom: 12px;
}

.split-text h2 {
  margin-bottom: 20px;
}

.split-text p {
  color: var(--gray-600);
  line-height: 1.8;
}

.split-text .highlight-box {
  background: linear-gradient(135deg, rgba(253,233,16,0.1), rgba(251,236,93,0.05));
  border-left: 3px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}

.split-text .highlight-box p {
  margin: 0;
  font-weight: 500;
  color: var(--dark);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.feature-icon svg {
  width: 14px;
  height: 14px;
}

.feature-item span {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===================== SECTION DIVIDER ===================== */
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 0 auto;
}

/* ===================== raizes ===================== */
.raizes-section {
  background: var(--gray-50);
}

.raizes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.raizes-intro h2 {
  margin-bottom: 20px;
}

.raizes-intro p {
  color: var(--gray-600);
  line-height: 1.8;
}

.raizes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.raizes-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.raizes-item:hover {
  box-shadow: var(--shadow-md);
}

.raizes-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark);
  user-select: none;
  transition: background var(--transition-fast);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.raizes-header:hover {
  background: var(--gray-50);
}

.raizes-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.raizes-item.active .raizes-icon {
  background: var(--primary);
  transform: rotate(180deg);
}

.raizes-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gray-600);
}

.raizes-item.active .raizes-icon svg {
  color: var(--dark);
}

.raizes-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.raizes-body-inner {
  padding: 0 28px 24px;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ===================== TABLE ===================== */
.table-section {
  background: var(--white);
}

.table-header {
  text-align: center;
  margin-bottom: 60px;
}

.table-header .section-subtitle {
  margin: 0 auto;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.styled-table thead {
  background: var(--dark);
  color: var(--white);
}

.styled-table thead th {
  padding: 20px 28px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.styled-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition-fast);
}

.styled-table tbody tr:hover {
  background: rgba(253,233,16,0.06);
}

.styled-table tbody tr:last-child {
  border-bottom: none;
}

.styled-table tbody td {
  padding: 18px 28px;
  color: var(--gray-700);
  line-height: 1.6;
}

.styled-table tbody td:first-child {
  font-weight: 600;
  color: var(--dark);
}

.table-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.table-badge.beginner {
  background: rgba(253,233,16,0.2);
  color: var(--dark);
}

.table-badge.intermediate {
  background: rgba(253,233,16,0.35);
  color: var(--dark);
}

.table-badge.advanced {
  background: var(--primary);
  color: var(--dark);
}

/* ===================== sale ===================== */
.sale-section {
  background: var(--gray-50);
}

.sale-header {
  text-align: center;
  margin-bottom: 60px;
}

.sale-header .section-subtitle {
  margin: 0 auto;
}

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

.sale-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

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

.sale-card.featured {
  background: var(--dark);
  color: var(--white);
}

.sale-card.featured .sale-name,
.sale-card.featured .sale-price,
.sale-card.featured .sale-period,
.sale-card.featured .sale-feature {
  color: var(--white);
}

.sale-card.featured .sale-feature svg {
  color: var(--primary);
}

.sale-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--dark);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.sale-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.sale-price {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.sale-price span {
  font-size: 1.5rem;
  font-weight: 400;
}

.sale-period {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.sale-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex: 1;
}

.sale-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.sale-feature svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--primary);
}

.sale-card .btn {
  width: 100%;
}

/* ===================== TEXT BLOCK ===================== */
.text-block-section {
  background: var(--white);
}

.text-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.text-block-col h2 {
  margin-bottom: 20px;
}

.text-block-col p {
  color: var(--gray-600);
  line-height: 1.8;
}

.text-block-quote {
  border-left: 3px solid var(--primary);
  padding-left: 24px;
  margin: 28px 0;
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  line-height: 1.6;
}

.text-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.text-stat {
  text-align: center;
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
}

.text-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}

.text-stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ===================== preim DIAGRAM ===================== */
.preim-section {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.preim-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,233,16,0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.preim-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.preim-header h2 {
  color: var(--white);
}

.preim-header .section-subtitle {
  color: rgba(255,255,255,0.6);
  margin: 0 auto;
}

.preim-diagram {
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.preim-left,
.preim-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.preim-left .benefit-card {
  text-align: right;
}

.benefit-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}

.benefit-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.benefit-card h4 {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.benefit-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

.preim-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preim-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  box-shadow: 0 0 60px rgba(253,233,16,0.3);
  animation: circlePulse 3s infinite;
}

@keyframes circlePulse {
  0%, 100% { box-shadow: 0 0 40px rgba(253,233,16,0.2); }
  50% { box-shadow: 0 0 80px rgba(253,233,16,0.4); }
}

.preim-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), rgba(253,233,16,0.2));
}

/* ===================== GALLERY (Gray → Color) ===================== */
.gallery-section {
  background: var(--gray-50);
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-header .section-subtitle {
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(5) { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ===================== SLIDER ===================== */
.slider-section {
  background: var(--white);
  padding: 100px 0;
}

.slider-header {
  text-align: center;
  margin-bottom: 60px;
}

.slider-header .section-subtitle {
  margin: 0 auto;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.slider-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide {
  min-width: 100%;
  aspect-ratio: 16/7;
  position: relative;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  color: var(--white);
}

.slider-slide-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
}

.slider-controls {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.slider-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 10px;
}

/* ===================== VERTICAL PHOTOS ===================== */
.vertical-section {
  background: var(--gray-50);
}

.vertical-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.vertical-item {
  display: flex;
  flex-direction: column;
  position: relative;
  border-right: 1px solid var(--gray-200);
}

.vertical-item:last-child {
  border-right: none;
}

.vertical-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.vertical-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vertical-item:hover .vertical-image img {
  transform: scale(1.05);
}

.vertical-text {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vertical-text h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.vertical-text p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

.vertical-line {
  height: 2px;
  background: var(--gray-200);
  width: 100%;
}

/* ===================== REVIEWS ===================== */
.reviews-section {
  background: var(--white);
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews-header .section-subtitle {
  margin: 0 auto;
}

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

.review-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
  position: relative;
}

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

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  fill: var(--primary);
}

.review-text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

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

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}

.review-name {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

.review-role {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ===================== FORM ===================== */
.form-section {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,233,16,0.08), transparent);
  top: -100px;
  right: -100px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.form-info h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.form-info p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.8;
}

.form-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.form-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  background: rgba(253,233,16,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.form-info-item span {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.form-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.form-card h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.form-card > p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-input:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(253,233,16,0.15);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.form-note a {
  color: var(--primary);
  text-decoration: underline;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

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

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.1);
  padding: 24px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}

.cookie-text a {
  color: var(--dark);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 0.85rem;
}

.cookie-settings {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.cookie-settings.open {
  display: block;
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-info h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cookie-category-info p {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin: 0;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--gray-200);
  border-radius: 26px;
  transition: background var(--transition-fast);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  bottom: 3px;
  left: 3px;
  transition: transform var(--transition-fast);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===================== LEGAL PAGES ===================== */
.legal-page {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 16px;
}

.legal-content .legal-date {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  color: var(--gray-600);
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  list-style: disc;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 6px;
}

/* ===================== THANKS PAGE ===================== */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gray-50);
}

.thanks-content {
  max-width: 560px;
  padding: 40px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary);
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: thanksPulse 2s infinite;
}

@keyframes thanksPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(253,233,16,0.4); }
  50% { box-shadow: 0 0 0 20px rgba(253,233,16,0); }
}

.thanks-icon svg {
  width: 48px;
  height: 48px;
  color: var(--dark);
}

.thanks-content h1 {
  margin-bottom: 16px;
}

.thanks-content p {
  color: var(--gray-600);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* ===================== ANIMATIONS ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* ===================== COUNTER ANIMATION ===================== */
.counter {
  display: inline-block;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .split-block { gap: 48px; }
  .raizes-grid { grid-template-columns: 1fr; gap: 40px; }
  .sale-grid { grid-template-columns: 1fr 1fr; }
  .preim-diagram { grid-template-columns: 1fr; gap: 24px; }
  .preim-center { flex-direction: row; }
  .preim-line { width: 40px; height: 2px; }
  .preim-left .benefit-card { text-align: left; }
  .text-block-grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item:nth-child(5) { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vertical-block { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }

  .nav { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: flex; }

  .top { min-height: 100svh; }
  .top-content { padding: 140px 0 100px; }

  .split-block {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .split-block.reverse .split-image { order: 0; }
  .split-block.reverse .split-text { order: 0; }

  .sale-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }

  .form-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-card { padding: 32px 24px; }

  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .text-stats { grid-template-columns: 1fr; }

  .vertical-block { grid-template-columns: 1fr; }
  .vertical-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .vertical-item:last-child { border-bottom: none; }

  .top-buttons { flex-direction: column; }
  .top-buttons .btn { width: 100%; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .top h1 { font-size: 2.6rem; }
}
