:root {
  --lilac-main: #C9A9E0;
  --lilac-dark: #8B5CB8;
  --bg-lilac-light: #F0E6F6;
  --bg-green-light: #E8F0E6;
  --green-soft: #A8C5A0;
  --green-dark: #6B9A63;
  --bg-warm: #FAF8F5;
  --text-dark: #3D3D3D;
  --text-light: #6B6B6B;
  --white: #ffffff;
  --red-soft: #F0A3A8;
  --blue-soft: #A3C5E0;
  --whatsapp: #25D366;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-warm);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button {
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 20px 0;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lilac-main), var(--lilac-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Playfair Display', serif;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.logo-subtitle {
  font-size: 12px;
  color: var(--text-light);
}

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

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lilac-main);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--lilac-main), var(--lilac-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(201, 169, 224, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 224, 0.4);
}

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

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.whatsapp-float::before {
  content: 'Fale pelo WhatsApp';
  position: absolute;
  right: 70px;
  background: var(--text-dark);
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover::before {
  opacity: 1;
}

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

/* Hero Updates - Mariana Alves */
.hero-new {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(to bottom right, rgba(240, 230, 246, 0.4), #FAF8F5, rgba(232, 240, 230, 0.4));
  padding: 4rem 0; /* Reduced padding for mobile */
  margin-top: 120px; /* Gap from fixed header */
}

@media (min-width: 1024px) {
  .hero-new {
    padding: 0; /* Centered vertically via min-h-90vh */
    min-height: 80vh;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-deco-1 {
  position: absolute;
  top: 5rem;
  right: 0;
  width: 500px;
  height: 500px;
  background-color: rgba(201, 169, 224, 0.1); /* #C9A9E0 / 10 */
  border-radius: 50%;
  filter: blur(64px); /* blur-3xl */
}

.hero-deco-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background-color: rgba(168, 197, 160, 0.1); /* #A8C5A0 / 10 */
  border-radius: 50%;
  filter: blur(64px);
}

.hero-deco-3 {
  display: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: #F0E6F6;
  margin-bottom: 2rem;
}

.hero-badge span {
  font-size: 0.75rem; /* text-xs */
  font-weight: 500;
  color: #8B5CB8;
  letter-spacing: 0.025em; /* tracking-wide */
  text-transform: uppercase;
}

.hero-title-new {
  font-family: 'Playfair Display', serif; /* font-serif */
  font-weight: 600; /* font-semibold */
  font-size: 2.25rem; /* 4xl */
  line-height: 1.15;
  color: #3D3D3D;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title-new {
    font-size: 3rem; /* 5xl */
  }
}

@media (min-width: 1024px) {
  .hero-title-new {
    font-size: 3.75rem; /* 6xl */
  }
}

.hero-title-highlight {
  display: inline;
  font-style: italic;
}

.highlight-purple {
  color: #8B5CB8;
}

.highlight-green {
  color: #6B9A63;
}

.hero-desc-new {
  margin-top: 1.5rem;
  font-size: 1.125rem; /* lg */
  color: #6B6B6B;
  line-height: 1.625;
  font-weight: 400;
  max-width: 32rem; /* max-w-lg */
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(to right, #C9A9E0, #B494D0);
  color: white;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-hero-primary:hover {
  box-shadow: 0 20px 25px -5px rgba(201, 169, 224, 0.5); /* shadow-purple-200/50 */
  transform: translateY(-2px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 2px solid #E5E0DB;
  color: #3D3D3D;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 500;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background-color: #F5F0EB;
}

.hero-image-wrapper {
  position: relative;
  perspective: 1000px;
  width: 100%;
}

.hero-image-new {
  position: relative;
  width: 100%;
  max-width: 28rem; /* max-w-md */
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  overflow: visible; /* Allow decorations outside */
  background: transparent;
  box-shadow: none;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .hero-image-new {
    margin-left: auto;
    margin-right: 0; /* Align right on lg screens */
  }
}

.hero-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(88, 28, 135, 0.1); /* shadow-purple-900/10 */
  position: relative;
  z-index: 10;
}

.hero-image-deco-1 {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(to bottom right, rgba(201, 169, 224, 0.2), rgba(168, 197, 160, 0.2));
  border-radius: 2rem;
  transform: rotate(3deg);
  z-index: 0;
}

.hero-image-deco-2 {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(to top right, rgba(168, 197, 160, 0.1), rgba(201, 169, 224, 0.1));
  border-radius: 2rem;
  transform: rotate(-2deg);
  z-index: 0;
}

.floating-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05); /* shadow-black/5 */
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 200px;
}

@media (min-width: 640px) {
  .floating-badge {
    left: -2rem;
  }
}

.heart-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #E8F0E6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B9A63;
}


.floating-card h3 {
  font-size: 32px;
  color: var(--lilac-dark);
  margin-bottom: 5px;
}

.floating-card p {
  font-size: 14px;
  color: var(--text-light);
}

section {
  padding: 80px 0;
}

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

.section-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* About Preview Section - Mariana Alves */
.about-preview {
  padding: 6rem 0; /* py-24 */
  background: white;
}

@media (min-width: 1024px) {
  .about-preview {
    padding: 8rem 0; /* py-32 */
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem; /* gap-16 */
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* About Image Side */
.about-image-wrapper {
  position: relative;
}

.about-image-container {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 24rem; /* max-w-sm */
  border-radius: 1.5rem;
  overflow: hidden;
  z-index: 10;
}

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

.about-deco-1 {
  position: absolute;
  bottom: -1.5rem; /* -bottom-6 */
  right: -1.5rem; /* -right-6 */
  width: 12rem; /* w-48 */
  height: 12rem; /* h-48 */
  background-color: #F0E6F6;
  border-radius: 1.5rem;
  z-index: 0;
}

.about-deco-2 {
  position: absolute;
  top: -1.5rem; /* -top-6 */
  left: -1.5rem; /* -left-6 */
  width: 8rem; /* w-32 */
  height: 8rem; /* h-32 */
  background-color: #E8F0E6;
  border-radius: 1.5rem;
  z-index: 0;
}

/* About Content Side */
.about-subtitle-new {
  font-size: 0.75rem; /* text-xs */
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8B5CB8;
  display: block;
  margin-bottom: 0.75rem;
}

.about-title-new {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem; /* 3xl */
  font-weight: 600;
  color: #3D3D3D;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .about-title-new {
    font-size: 2.25rem; /* 4xl */
  }
}

.about-desc-new {
  color: #6B6B6B;
  line-height: 1.625;
  margin-bottom: 2rem;
}

.highlights-new {
  display: flex;
  flex-direction: column;
  gap: 1.25rem; /* space-y-5 */
  margin-bottom: 2.5rem;
}

.highlight-item-new {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.highlight-icon-box-new {
  width: 2.75rem; /* w-11 */
  height: 2.75rem; /* h-11 */
  border-radius: 0.75rem; /* rounded-xl */
  background-color: #F0E6F6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon-new {
  width: 1.25rem; /* w-5 */
  height: 1.25rem; /* h-5 */
  color: #8B5CB8;
}

.highlight-content h4 {
  font-weight: 600;
  color: #3D3D3D;
  font-size: 0.875rem; /* text-sm */
  margin-bottom: 0;
}

.highlight-content p {
  font-size: 0.875rem; /* text-sm */
  color: #6B6B6B;
}

.link-arrow-purple {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem; /* text-sm */
  font-weight: 600;
  color: #8B5CB8;
  transition: color 0.3s ease;
  text-decoration: none;
}

.link-arrow-purple:hover {
  color: #7A4BA6;
}


/* Services Preview */
.services-preview {
  padding: 6rem 0; /* py-24 */
  background: white;
}

@media (min-width: 1024px) {
  .services-preview {
    padding: 8rem 0; /* py-32 */
  }
}

.services-header {
  text-align: center;
  max-width: 42rem; /* 2xl */
  margin: 0 auto 4rem; /* mb-16 */
}

.services-subtitle {
  font-size: 0.75rem; /* text-xs */
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8B5CB8;
  display: block;
}

.services-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem; /* 3xl */
  font-weight: 600;
  color: #3D3D3D;
  margin-top: 0.75rem; /* mt-3 */
  margin-bottom: 1rem; /* mb-4 */
}

@media (min-width: 640px) {
  .services-header h2 {
    font-size: 2.25rem; /* 4xl */
  }
}

.services-header p {
  color: #6B6B6B;
  line-height: 1.625;
}

.services-grid {
  display: grid;
  gap: 1.5rem; /* gap-6 */
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card-new {
  background: white;
  padding: 1.75rem; /* p-7 */
  border-radius: 1rem;
  border: 1px solid #f3f4f6; /* gray-100 */
  transition: all 0.5s ease;
}

.service-card-new:hover {
  border-color: transparent;
  box-shadow: 0 20px 25px -5px rgba(88, 28, 135, 0.05); /* shadow-purple-900/5 */
  transform: translateY(-0.25rem);
}

.service-icon-wrapper {
  width: 3.5rem; /* w-14 */
  height: 3.5rem; /* h-14 */
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}

.service-card-new:hover .service-icon-wrapper {
  transform: scale(1.1);
}

.service-icon-wrapper svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 2;
}

.service-card-new h3 {
  font-weight: 600;
  color: #3D3D3D;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.service-card-new p {
  font-size: 0.875rem; /* text-sm */
  color: #6B6B6B;
  line-height: 1.625;
}

/* Service Colors */
.bg-lilac { background-color: #F0E6F6; }
.text-lilac { color: #8B5CB8; }

.bg-red-soft { background-color: #FDE8E8; }
.text-red-soft { color: #D46B6B; }

.bg-blue-soft { background-color: #E0EDF7; }
.text-blue-soft { color: #5B8DB8; }

.bg-green-soft { background-color: #E8F0E6; }
.text-green-soft { color: #6B9A63; }

.services-footer {
  text-align: center;
  margin-top: 3rem; /* mt-12 */
}

.link-arrow-sm {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem; /* text-sm */
  font-weight: 600;
  color: #8B5CB8;
  transition: color 0.3s ease;
  text-decoration: none;
}

.link-arrow-sm:hover {
  color: #7A4BA6;
}

/* Testimonials & CTA */
.testimonials-section {
  padding: 6rem 0; /* py-24 */
}

@media (min-width: 1024px) {
  .testimonials-section {
    padding: 8rem 0; /* py-32 */
  }
}

.testimonials-header {
  text-align: center;
  max-width: 42rem; /* 2xl */
  margin: 0 auto 4rem; /* mb-16 */
}

.testimonials-subtitle {
  font-size: 0.75rem; /* text-xs */
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6B9A63;
  display: block;
}

.testimonials-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem; /* 3xl */
  font-weight: 600;
  color: #3D3D3D;
  margin-top: 0.75rem; /* mt-3 */
}

@media (min-width: 640px) {
  .testimonials-header h2 {
    font-size: 2.25rem; /* 4xl */
  }
}

.testimonials-grid {
  display: grid;
  gap: 2rem; /* gap-8 */
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card-new {
  position: relative;
  background: white;
  border-radius: 1rem; /* rounded-2xl */
  padding: 2rem; /* p-8 */
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
  border: 1px solid #f9fafb; /* gray-50 */
}

.quote-icon-new {
  width: 2rem; /* w-8 */
  height: 2rem; /* h-8 */
  color: rgba(201, 169, 224, 0.3); /* #C9A9E0 / 30 */
  margin-bottom: 1rem; /* mb-4 */
}

.testimonial-text-new {
  color: #6B6B6B;
  line-height: 1.625;
  margin-bottom: 1.5rem; /* mb-6 */
  font-size: 0.875rem; /* text-sm */
  font-style: italic;
}

.testimonial-author-new {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* gap-3 */
}

.author-avatar-new {
  width: 2.5rem; /* w-10 */
  height: 2.5rem; /* h-10 */
  border-radius: 50%;
  background: linear-gradient(to bottom right, rgba(201, 169, 224, 0.3), rgba(168, 197, 160, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar-new span {
  font-size: 0.875rem; /* text-sm */
  font-weight: 600;
  color: #8B5CB8;
}

.author-info-new p:first-child {
  font-size: 0.875rem; /* text-sm */
  font-weight: 600;
  color: #3D3D3D;
  margin: 0;
}

.author-info-new p:last-child {
  font-size: 0.75rem; /* text-xs */
  color: #6B6B6B;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0; /* py-24 */
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 8rem 0; /* py-32 */
  }
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem; /* rounded-3xl */
  background: linear-gradient(to bottom right, #C9A9E0, #B494D0, #9A7DC0);
  padding: 3rem; /* p-12 */
  text-align: center;
}

@media (min-width: 768px) {
  .cta-card {
    padding: 4rem; /* p-16 */
  }
}

@media (min-width: 1024px) {
  .cta-card {
    padding: 5rem; /* p-20 */
  }
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  filter: blur(64px); /* blur-3xl */
  z-index: 1;
}

.cta-blob-1 {
  top: 0;
  right: 0;
  width: 20rem; /* w-80 */
  height: 20rem; /* h-80 */
  transform: translate(50%, -50%);
}

.cta-blob-2 {
  bottom: 0;
  left: 0;
  width: 15rem; /* w-60 */
  height: 15rem; /* h-60 */
  transform: translate(-50%, 50%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem; /* 3xl */
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem; /* mb-6 */
}

@media (min-width: 640px) {
  .cta-card h2 {
    font-size: 2.25rem; /* 4xl */
  }
}

@media (min-width: 1024px) {
  .cta-card h2 {
    font-size: 3rem; /* 5xl */
  }
}

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem; /* text-lg */
  max-width: 36rem; /* max-w-xl */
  margin: 0 auto 2.5rem; /* mb-10 */
}

.btn-white-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem; /* px-10 py-4 */
  background-color: white;
  color: #8B5CB8;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.btn-white-cta:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); /* shadow-xl shadow-black/10 */
  transform: translateY(-2px);
}

.btn-white-cta svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.btn-white-cta:hover svg {
  transform: translateX(4px);
}

footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 30px;
}

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

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 14px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-contact-item span {
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--lilac-main), var(--green-soft));
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
}

.timeline-year {
  flex: 1;
  text-align: right;
  padding-right: 40px;
}

.timeline-year h3 {
  font-size: 36px;
  color: var(--lilac-dark);
}

.timeline-content {
  flex: 1;
  padding-left: 40px;
}

.timeline-content h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

.timeline-content p {
  color: var(--text-light);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--lilac-main);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--bg-warm);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.value-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--lilac-main), var(--green-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.tcc-box {
  background: linear-gradient(135deg, rgba(201, 169, 224, 0.1), rgba(168, 197, 160, 0.1));
  padding: 60px 40px;
  border-radius: 30px;
  max-width: 900px;
  margin: 80px auto;
  text-align: center;
}

.tcc-box h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: var(--lilac-dark);
}

.tcc-box p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}

.tcc-box .btn {
  margin-top: 20px;
}

/* Service Detail Card (Replaces old .service-detail-card) */
.service-detail-card {
  background: white;
  border-radius: 1.5rem; /* rounded-3xl */
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
  border: 1px solid #f3f4f6;
  margin-bottom: 4rem; /* space-y-16 */
  transition: all 0.5s ease;
}

.service-detail-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); /* shadow-lg */
}

.service-detail-header {
  height: 0.375rem; /* h-1.5 */
}

/* New Gradient Headers */
.gradient-lilac {
  background: linear-gradient(to right, #C9A9E0, #B494D0);
}

.gradient-red {
  background: linear-gradient(to right, #E8A0A0, #D46B6B);
}

.gradient-blue {
  background: linear-gradient(to right, #7BAED4, #5B8DB8);
}

.gradient-green {
  background: linear-gradient(to right, #A8C5A0, #6B9A63);
}

/* Service Detail Body & Layout */
.service-detail-body {
  padding: 2rem; /* p-8 */
}

@media (min-width: 768px) {
  .service-detail-body {
    padding: 3rem; /* md:p-12 */
  }
}

.service-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* gap-8 */
}

@media (min-width: 768px) {
  .service-content-wrapper {
    flex-direction: row;
  }
}

.service-main {
  flex: 1;
}

.service-benefits {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .service-benefits {
    width: 18rem; /* md:w-72 */
  }
}

/* Service Detail Content */
.service-detail-icon {
  width: 3.5rem; /* w-14 */
  height: 3.5rem; /* h-14 */
  border-radius: 1rem; /* rounded-2xl */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem; /* mb-5 */
}

.service-detail-icon svg {
  width: 1.75rem; /* w-7 */
  height: 1.75rem; /* h-7 */
  stroke-width: 2;
  fill: none;
  stroke: currentColor;
}

.service-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; /* 2xl */
  font-weight: 600;
  color: #3D3D3D;
  margin-bottom: 1rem; /* mb-4 */
}

.service-detail-desc {
  color: #6B6B6B;
  line-height: 1.625;
}

/* Benefits Sidebar */
.benefits-title {
  font-size: 0.875rem; /* text-sm */
  font-weight: 600;
  color: #3D3D3D;
  margin-bottom: 1rem; /* mb-4 */
  text-transform: uppercase;
  letter-spacing: 0.05em; /* tracking-wide */
}

.benefits-list-vertical {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* space-y-3 */
}

.benefit-item-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem; /* gap-3 */
}

.check-icon-sm {
  width: 1.25rem; /* w-5 */
  height: 1.25rem; /* h-5 */
  border-radius: 50%; /* rounded-full */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem; /* mt-0.5 */
}

.check-icon-sm svg {
  width: 0.75rem; /* w-3 */
  height: 0.75rem; /* h-3 */
  stroke-width: 3;
}

.benefit-text-sm {
  font-size: 0.875rem; /* text-sm */
  color: #6B6B6B;
}

/* New CTA Box (Light Purple) */
.cta-box-lilac {
  background-color: #F0E6F6;
  border-radius: 1.5rem; /* rounded-3xl */
  padding: 3rem; /* p-12 */
  text-align: center;
}

@media (min-width: 768px) {
  .cta-box-lilac {
    padding: 4rem; /* md:p-16 */
  }
}

.cta-box-lilac h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem; /* 3xl */
  font-weight: 600;
  color: #3D3D3D;
  margin-bottom: 1rem; /* mb-4 */
}

.cta-box-lilac p {
  color: #6B6B6B;
  margin-bottom: 2rem; /* mb-8 */
  max-width: 32rem; /* max-w-lg */
  margin-left: auto;
  margin-right: auto;
}


/* --- Como Funciona Page Styles --- */

/* --- Servicos Page Styles --- */
.hero-services {
  padding: 8rem 0 4rem;
  background: linear-gradient(to bottom, rgba(240, 230, 246, 0.3), transparent);
  text-align: center;
}

/* Como Funciona Styles */
.hero-como-funciona {
  padding: 8rem 0 4rem;
  background: linear-gradient(to bottom, rgba(232, 240, 230, 0.3), transparent);
  text-align: center;
}

.hero-subtitle-sm {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6B9A63;
  display: block;
  margin-bottom: 0.75rem;
}

/* Steps Section */
.steps-section {
  padding-bottom: 6rem;
}

@media (min-width: 1024px) {
  .steps-section {
    padding-bottom: 8rem;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card-new {
  position: relative;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 169, 224, 0.2);
  line-height: 1;
}

.step-icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: #F0E6F6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  color: #8B5CB8;
}

.step-arrow {
  display: none;
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 2rem;
  color: rgba(201, 169, 224, 0.3);
  transform: translateY(-50%);
  z-index: 10;
}

@media (min-width: 768px) {
  .step-arrow {
    display: block;
  }
}

/* Modalities Section */
.modalities-section {
  padding: 6rem 0;
  background: white;
}

@media (min-width: 1024px) {
  .modalities-section {
    padding: 8rem 0;
  }
}

.modalities-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .modalities-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

.modality-card-new {
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid transparent;
}

@media (min-width: 768px) {
  .modality-card-new {
    padding: 2.5rem;
  }
}

.modality-online {
  background: linear-gradient(to bottom right, rgba(201, 169, 224, 0.1), rgba(201, 169, 224, 0.05));
  border-color: rgba(201, 169, 224, 0.3);
}

.modality-presencial {
  background: linear-gradient(to bottom right, rgba(168, 197, 160, 0.1), rgba(168, 197, 160, 0.05));
  border-color: rgba(168, 197, 160, 0.3);
}

.modality-icon-new {
  width: 2rem;
  height: 2rem;
  color: #3D3D3D;
  margin-bottom: 1.25rem;
}

.modality-features {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
}

.modality-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #3D3D3D;
}

.modality-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #8B5CB8;
  flex-shrink: 0;
}

/* Session Info Section */
.session-info-section {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .session-info-section {
    padding: 8rem 0;
  }
}

.session-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .session-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.session-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  text-align: center;
}

.session-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background-color: #E8F0E6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #6B9A63;
}

.session-label {
  font-size: 0.75rem;
  color: #6B6B6B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.session-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: #3D3D3D;
  margin-bottom: 0;
}

.session-sub {
  font-size: 0.75rem;
  color: #6B6B6B;
  margin-top: 0.25rem;
}

/* FAQ Accordion New */
.faq-section-new {
  padding: 6rem 0;
  background: white;
}

@media (min-width: 1024px) {
  .faq-section-new {
    padding: 8rem 0;
  }
}

.faq-container-new {
  max-width: 48rem; /* 3xl */
  margin: 0 auto;
}

.faq-list-new {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-details {
  background-color: #FAF8F5;
  border-radius: 0.75rem;
  border: 1px solid #f3f4f6;
  overflow: hidden;
}

.faq-summary {
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-weight: 500;
  color: #3D3D3D;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-toggle-icon {
  font-size: 1.25rem;
  color: #8B5CB8;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-details[open] .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-content-new {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: #6B6B6B;
  line-height: 1.625;
}

/* CTA Simple */
.cta-simple-section {
  padding-bottom: 6rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .cta-simple-section {
    padding-bottom: 8rem;
  }
}

.btn-gradient-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(to right, #C9A9E0, #B494D0);
  color: white;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.btn-gradient-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(201, 169, 224, 0.5);
}

.btn-gradient-cta svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.btn-gradient-cta:hover svg {
  transform: translateX(4px);
}

/* --- Contato Page Styles --- */

.hero-contact {
  padding: 6rem 0 8rem;
  background: linear-gradient(to bottom, rgba(240, 230, 246, 0.3), transparent);
  text-align: center;
}

.hero-subtitle-lilac {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lilac-dark);
  display: block;
  margin-bottom: 0.75rem;
}

.contact-section-wrapper {
  padding-bottom: 6rem;
}

.contact-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid-new {
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
  }
}

/* Form Container */
.contact-form-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .contact-form-card {
    padding: 2.5rem;
  }
}

.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.form-grid-2 {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group-new {
  margin-bottom: 1.25rem;
}

.form-label-new {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.form-input-new {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background-color: white;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.form-textarea-new {
  width: 100%;
  min-height: 140px;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background-color: white;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  color: var(--text-dark);
  resize: none;
}

.form-input-new:focus,
.form-textarea-new:focus {
  outline: none;
  border-color: var(--lilac-main);
  box-shadow: 0 0 0 4px rgba(201, 169, 224, 0.1);
}

.btn-submit-new {
  width: 100%;
  height: 3rem;
  background: linear-gradient(to right, #C9A9E0, #B494D0);
  color: white;
  font-weight: 500;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-submit-new:hover {
  box-shadow: 0 10px 15px -3px rgba(201, 169, 224, 0.5);
}

.btn-submit-new:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-privacy-text {
  font-size: 0.75rem;
  text-align: center;
  color: var(--text-light);
  margin-top: 1rem;
}

/* Success State */
.success-message-new {
  display: none; /* Hidden by default */
  text-align: center;
  padding: 3rem 0;
}

.success-message-new.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.success-icon-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: var(--bg-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--green-dark);
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .success-actions {
    flex-direction: row;
  }
}

.btn-whatsapp-success {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background-color: #25D366;
  color: white;
  font-weight: 500;
  border-radius: 9999px;
  font-size: 0.875rem;
  transition: background-color 0.3s ease;
}

.btn-whatsapp-success:hover {
  background-color: #20BD5A;
}

.btn-reset-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  border: 1px solid #e5e7eb;
  background-color: white;
  color: var(--text-dark);
  font-weight: 500;
  border-radius: 9999px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.btn-reset-form:hover {
  background-color: #f9fafb;
}

/* Sidebar Info */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card-new {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.contact-info-flex {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon-box {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background-color: var(--bg-lilac-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lilac-dark);
}

.contact-info-content h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  font-family: 'Inter', sans-serif;
}

.contact-info-content p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  white-space: pre-line;
}

.whatsapp-cta-card {
  display: block;
  background-color: #25D366;
  border-radius: 1rem;
  padding: 1.5rem;
  color: white;
  transition: background-color 0.3s ease;
}

.whatsapp-cta-card:hover {
  background-color: #20BD5A;
}

.whatsapp-cta-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.whatsapp-icon-box {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-placeholder-new {
  margin-top: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.map-bg {
  background-color: var(--bg-green-light);
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Loader Animation */
.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* --- About Page Styles (New Refined) --- */
.hero-about {
  padding: 8rem 0 4rem;
  background: linear-gradient(to bottom, rgba(240, 230, 246, 0.3), transparent);
}

.hero-about-deco-square {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 6rem; /* w-24 */
  height: 6rem; /* h-24 */
  background-color: #E8F0E6;
  border-radius: 1rem; /* rounded-2xl */
  z-index: 0;
}

.experience-card-new {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: white;
  padding: 1.25rem; /* p-5 */
  border-radius: 1rem; /* rounded-2xl */
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05); /* shadow-xl shadow-black/5 */
  z-index: 20;
}

.formation-section {
  padding: 6rem 0;
  background: white;
}

@media (min-width: 1024px) {
  .formation-section {
    padding: 8rem 0;
  }
}

.formation-wrapper {
  position: relative;
}

.formation-line {
  position: absolute;
  left: 2rem; /* left-8 (32px) */
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, #C9A9E0, #A8C5A0);
}

.formation-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem; /* space-y-10 */
}

.formation-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem; /* gap-6 */
  padding-left: 0;
}

.formation-icon-box {
  position: relative;
  z-index: 10;
  width: 4rem; /* w-16 */
  height: 4rem; /* h-16 */
  border-radius: 1rem; /* rounded-2xl */
  background-color: #F0E6F6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #8B5CB8;
}

.formation-content {
  padding-top: 0.5rem; /* pt-2 */
}

.formation-year {
  font-size: 0.75rem; /* text-xs */
  font-weight: 600;
  color: #8B5CB8;
  display: block;
}

.formation-title {
  font-weight: 600;
  color: #3D3D3D;
  margin-top: 0.25rem;
  font-size: 1rem;
}

.formation-inst {
  font-size: 0.875rem; /* text-sm */
  color: #6B6B6B;
  margin-top: 0.25rem;
}

.values-section {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .values-section {
    padding: 8rem 0;
  }
}

.values-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem; /* gap-8 */
}

@media (min-width: 768px) {
  .values-grid-new {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card-new {
  text-align: center;
  padding: 2rem; /* p-8 */
  border-radius: 1rem; /* rounded-2xl */
  background: white;
  border: 1px solid #f9fafb; /* gray-50 */
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
}

.value-icon-box-new {
  width: 4rem; /* w-16 */
  height: 4rem; /* h-16 */
  border-radius: 1rem; /* rounded-2xl */
  background-color: #F0E6F6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem; /* mx-auto mb-6 */
  color: #8B5CB8;
}

.tcc-section {
  padding: 6rem 0;
  background: white;
}

@media (min-width: 1024px) {
  .tcc-section {
    padding: 8rem 0;
  }
}

.tcc-box-new {
  background: linear-gradient(to bottom right, #F0E6F6, #E8F0E6);
  border-radius: 1.5rem; /* rounded-3xl */
  padding: 2.5rem; /* p-10 */
}

@media (min-width: 768px) {
  .tcc-box-new {
    padding: 3.5rem; /* md:p-14 */
  }
}

.tcc-header {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* gap-3 */
  margin-bottom: 1.5rem; /* mb-6 */
}

.tcc-text {
  color: #6B6B6B;
  line-height: 1.625;
  display: flex;
  flex-direction: column;
  gap: 1rem; /* space-y-4 */
}

.btn-tcc-start {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem; /* mt-8 */
  padding: 0.75rem 2rem; /* px-8 py-3 */
  background-color: #8B5CB8;
  color: white;
  font-weight: 500;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
}

.btn-tcc-start:hover {
  background-color: #7A4BA6;
}

.btn-tcc-start svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.btn-tcc-start:hover svg {
  transform: translateX(4px);
}
