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

:root {
  /* ===== NOVA PALETA: Nude acinzentado e Verde Oliva Escuro ===== */
  --primary: #5A6146;
  --primary-dark: #4A5038;
  --primary-light: #6D7656;
  --accent: #8C8780;
  --bg-cream: #EAE8E4;
  --bg-warm: #E3E1DD;
  --bg-soft: #DCD9D5;
  --bg-dark: #2E2D2B;
  --text-dark: #2C2A28;
  --text-body: #55524E;
  --text-light: #7D7A75;
  --white: #FFFFFF;
  --border: #C9C6C1;
  --success: #5A6146;
  --shadow-sm: 0 2px 8px rgba(90, 97, 70, 0.08);
  --shadow-md: 0 4px 20px rgba(90, 97, 70, 0.12);
  --shadow-lg: 0 8px 40px rgba(90, 97, 70, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  background-color: var(--bg-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ===================== LUCIDE ICONS ===================== */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.icon svg {
  width: 1em;
  height: 1em;
  stroke-width: 2;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(234, 232, 228, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 198, 193, 0.5);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.navbar-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}

.navbar-name span {
  color: var(--primary);
}

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

.navbar-links a {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.navbar-links a:hover {
  color: var(--primary);
  background: rgba(90, 97, 70, 0.08);
}

.navbar-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
}

.navbar-cta:hover {
  background: var(--primary-dark) !important;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(90, 97, 70, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(90, 97, 70, 0.4);
}

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

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

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 50%, var(--bg-soft) 100%);
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 120px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(109, 118, 86, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(140, 135, 128, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

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

.hero-content {
  animation: fadeInUp 1s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(90, 97, 70, 0.1);
  border: 1px solid rgba(90, 97, 70, 0.2);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero-badge i[data-lucide] {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text-dark), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-image-main {
  width: 100%;
  height: 550px;
  background: linear-gradient(145deg, var(--bg-warm), var(--accent));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-main .placeholder-icon {
  font-size: 6rem;
  opacity: 0.3;
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}

.hero-floating-card.card-1 {
  top: 30px;
  right: -30px;
}

.hero-floating-card.card-2 {
  bottom: 60px;
  left: -30px;
  animation-delay: 2s;
}

.hero-floating-card .card-icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
  color: var(--primary);
}

.hero-floating-card .card-icon i[data-lucide] {
  width: 28px;
  height: 28px;
}

.hero-floating-card .card-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-floating-card .card-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* ===================== SECTION EMPATHY ===================== */
.section-empathy {
  padding: 120px 0;
  background: var(--white);
}

.section-empathy .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.empathy-visual {
  position: relative;
}

.empathy-image {
  width: 100%;
  height: 450px;
  background: linear-gradient(145deg, var(--bg-warm), var(--bg-soft));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.empathy-image .placeholder-icon {
  font-size: 5rem;
  opacity: 0.3;
}

.empathy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.empathy-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: 50%;
  bottom: -20px;
  right: -20px;
  opacity: 0.3;
}

.empathy-content h2 {
  font-size: 2.2rem;
  margin-bottom: 28px;
  line-height: 1.35;
}

.empathy-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 16px;
}

.empathy-highlight {
  margin-top: 24px;
  padding: 20px 28px;
  background: var(--bg-cream);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--primary-dark);
}

/* ===================== SECTION HEADER (reusavel) ===================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(90, 97, 70, 0.1);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* ===================== SECTION ABOUT ===================== */
.section-about {
  padding: 120px 0;
  background: var(--bg-cream);
}

.section-about.section-about-alt {
  background: var(--white);
}

.about-content {
  display: block;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  min-height: 80px;
}

.about-feature-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-light);
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(90, 97, 70, 0.1), rgba(109, 118, 86, 0.15));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--primary);
}

.about-feature-icon i[data-lucide] {
  width: 22px;
  height: 22px;
}

.about-feature-text {
  font-size: 0.95rem;
  color: var(--text-body);
  font-weight: 500;
}

.about-bottom-note {
  text-align: center;
  margin-top: 48px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-style: italic;
  color: var(--primary-dark);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.about-bottom-note i[data-lucide] {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

/* ===================== SECTION HOW ===================== */
.section-how {
  padding: 120px 0;
  background: var(--white);
}

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

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

.how-card {
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.how-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.how-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(90, 97, 70, 0.2);
  color: var(--white);
}

.how-card-icon i[data-lucide] {
  width: 28px;
  height: 28px;
}

.how-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.how-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===================== SECTION PROGRAMS ===================== */
.section-programs {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-cream), var(--bg-warm));
}

.programs-table-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.programs-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.programs-table-header>div {
  padding: 24px 20px;
  font-weight: 600;
  text-align: center;
  font-size: 1rem;
}

.programs-table-header>div:first-child {
  text-align: left;
  padding-left: 32px;
}

.programs-table-header .highlight-col {
  background: rgba(255, 255, 255, 0.1);
}

.programs-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.programs-table-row:hover {
  background: var(--bg-cream);
}

.programs-table-row:last-child {
  border-bottom: none;
}

.programs-table-row>div {
  padding: 18px 20px;
  text-align: center;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.programs-table-row>div:first-child {
  text-align: left;
  justify-content: flex-start;
  padding-left: 32px;
  font-weight: 500;
  color: var(--text-dark);
}

.check {
  color: var(--success);
  font-size: 1.3rem;
  font-weight: 700;
  display: inline-flex;
}

.check i[data-lucide] {
  width: 20px;
  height: 20px;
}

.no-check {
  color: var(--text-light);
  font-size: 1.1rem;
  display: inline-flex;
}

.no-check i[data-lucide] {
  width: 20px;
  height: 20px;
}

.programs-note {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.programs-note i[data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.programs-note span {
  font-weight: 600;
}

/* ===================== SECTION FOR YOU ===================== */
.section-for-you {
  padding: 120px 0;
  background: var(--white);
}

.for-you-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.for-you-text h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.for-you-text>p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 32px;
}

.for-you-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.for-you-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-cream);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.for-you-item:hover {
  transform: translateX(8px);
  background: var(--bg-warm);
}

.for-you-item .item-check {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.for-you-item .item-check i[data-lucide] {
  width: 16px;
  height: 16px;
}

.for-you-item span {
  font-size: 1rem;
  color: var(--text-body);
  font-weight: 500;
}

.for-you-visual {
  position: relative;
}

.for-you-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(145deg, var(--bg-warm), var(--bg-soft));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.for-you-image .placeholder-icon {
  font-size: 5rem;
  opacity: 0.3;
}

.for-you-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================== SECTION WHY ===================== */
.section-why {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #1a1917 50%, #232220 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(109, 118, 86, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(109, 118, 86, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(140, 135, 128, 0.06) 0%, transparent 40%);
}

.section-why::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(109, 118, 86, 0.5), transparent);
}

.section-why .container {
  position: relative;
  z-index: 2;
}

.why-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.why-header h2 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.why-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.why-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109, 118, 86, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  transform: translateY(-8px);
  border-color: rgba(109, 118, 86, 0.4);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(109, 118, 86, 0.1);
}

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

.why-card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 28px;
  color: var(--white);
  box-shadow:
    0 8px 24px rgba(109, 118, 86, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
}

.why-card-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(109, 118, 86, 0.2);
}

.why-card-icon i[data-lucide] {
  width: 30px;
  height: 30px;
}

.why-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.why-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.why-bottom {
  text-align: center;
  margin-top: 48px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* ===================== SECTION WHY LAZIO ===================== */
.section-why-lazio {
  padding: 120px 0;
  background: var(--bg-cream);
}

.section-why-lazio .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.why-lazio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.why-lazio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.why-lazio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.why-lazio-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(109, 118, 86, 0.1), rgba(109, 118, 86, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}

.why-lazio-icon i[data-lucide] {
  width: 28px;
  height: 28px;
}

.why-lazio-card h3 {
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.why-lazio-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

.why-lazio-note {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  max-width: 600px;
  margin: 0 auto;
}

.why-lazio-note p {
  font-size: 1.05rem;
  color: var(--primary-dark);
  font-style: italic;
  margin: 0;
}

/* ===================== SECTION TESTIMONIALS ===================== */
.section-testimonials {
  padding: 120px 0;
  background: var(--white);
}

.section-testimonials .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border);
  padding: 0;
}

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

.testimonial-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ===================== SECTION CTA ===================== */
.section-cta {
  padding: 120px 0;
  background: var(--bg-cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(109, 118, 86, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.cta-trust-item .trust-icon {
  font-size: 1.1rem;
  display: inline-flex;
  color: var(--primary);
}

.cta-trust-item .trust-icon i[data-lucide] {
  width: 18px;
  height: 18px;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo-img {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-info h4,
.footer-values h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.footer-info-item,
.footer-values-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-info-item .info-icon,
.footer-values-item .val-icon {
  font-size: 1rem;
  flex-shrink: 0;
  display: inline-flex;
  color: var(--accent);
}

.footer-info-item .info-icon i[data-lucide],
.footer-values-item .val-icon i[data-lucide] {
  width: 18px;
  height: 18px;
}

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

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-text {
    margin: 0 auto 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-image-main {
    height: 350px;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-floating-card {
    position: static;
    animation: none;
    text-align: center;
    padding: 20px 16px;
  }

  .hero-floating-card.card-1,
  .hero-floating-card.card-2 {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .hero-image-wrapper::after {
    content: '';
    display: block;
  }

  .hero-image-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-image-main {
    flex: 0 0 auto;
    width: 100%;
  }

  .hero-image-wrapper .hero-floating-card {
    width: 100%;
    max-width: 400px;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }

  .hero-image-wrapper .hero-floating-card .card-icon {
    margin-bottom: 2px;
  }

  .section-empathy .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .how-bottom-row {
    grid-template-columns: 1fr 1fr;
  }

  .for-you-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .for-you-visual {
    order: -1;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }

  .why-card {
    padding: 40px 28px;
  }

  .why-lazio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .navbar-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-cream);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border);
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-header h2,
  .empathy-content h2,
  .for-you-text h2,
  .why-header h2,
  .cta-content h2 {
    font-size: 2rem;
  }

  .section-why {
    padding: 100px 0;
  }

  .why-header {
    margin-bottom: 50px;
  }

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

  .how-bottom-row {
    grid-template-columns: 1fr;
  }

  .programs-table-header>div,
  .programs-table-row>div {
    padding: 14px 12px;
    font-size: 0.85rem;
  }

  .programs-table-row>div:first-child,
  .programs-table-header>div:first-child {
    padding-left: 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    gap: 24px;
  }

  .why-card {
    padding: 36px 24px;
  }

  .why-card-icon {
    width: 64px;
    height: 64px;
  }

  .why-card h3 {
    font-size: 1.2rem;
  }

  .why-lazio-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 48px;
  }

  .why-lazio-card {
    padding: 28px 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-trust {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}