:root {
  /* Patterns from the reference image (Rose/Nude/Dark Grey) */
  --primary-rose: #d5a9a0;
  /* Found in footer/header background */
  --primary-rose-dark: #b68b82;
  /* Darker variant for contrast */
  --bg-beige: #FDFBF9;
  /* Very light slightly warm background */
  --bg-alt: #F2E8E6;
  /* Light Rose/Grey overlay for sections */

  --text-dark: #4A4A4A;
  /* Neutral Dark Grey */
  --text-light: #7a7a7a;
  --accent-color: #d5a9a0;
  /* Replaces Blue */

  --white: #ffffff;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  /* Increased spacing variables */
  --spacing-sm: 1.5rem;
  --spacing-md: 3rem;
  --spacing-lg: 6rem;
  /* More vertical breathing room */

  --border-radius: 4px;
  --shadow-soft: 0 6px 15px rgba(213, 169, 160, 0.15);
  --shadow-hover: 0 12px 25px rgba(213, 169, 160, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
  /* Slightly reduce base font size (default usually 16px) */
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-beige);
  line-height: 1.7;
  /* Better readability */
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  /* Lighter weight for cleaner look */
  color: var(--text-dark);
  line-height: 1.3;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--border-radius);
}

.container {
  width: 90%;
  max-width: 1100px;
  /* Reduced width to keep content more contained/focused */
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 10px 28px;
  /* Slightly smaller button */
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  /* Thinner border */
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--primary-rose);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(213, 169, 160, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(213, 169, 160, 0.5);
}

.btn-outline {
  border-color: var(--primary-rose);
  color: var(--primary-rose);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-rose);
  color: var(--white);
}

.btn-text {
  color: var(--primary-rose-dark);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.btn-large {
  padding: 14px 40px;
  font-size: 1rem;
}

/* --- Header (New Design) --- */
.header-new {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  background: var(--primary-rose);
}

.header-inner {
  display: flex;
  align-items: stretch;
  position: relative;
}

.logo-area {
  background: var(--white);
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
}

.header-logo {
  height: 140px;
  width: auto;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 45px;
  width: auto;
  border-radius: 0;
  filter: brightness(0) invert(1);
}

/* --- Navigation Bar --- */
.nav-bar {
  display: flex;
  align-items: center;
  gap: 3rem;
}

/* --- Centered Navigation Bar --- */
.nav-bar-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  width: 100%;
  background: var(--primary-rose);
  padding: 1rem 2rem;
}

.nav-bar-centered a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-bar-centered a:hover {
  opacity: 0.8;
}

.nav-bar-centered a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.3s ease;
}

.nav-bar-centered a:hover::after {
  width: 100%;
}

/* Hamburger Menu Button */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  margin-right: 1rem;
  z-index: 100;
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background-color: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }

  .nav-bar-centered {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-rose);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  .nav-bar-centered.active {
    display: flex;
  }

  .nav-bar-centered a {
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .nav-bar-centered a:last-child {
    border-bottom: none;
  }

  .nav-logo {
    display: none;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .logo-area {
    position: relative;
    padding: 0;
    width: auto;
    background: var(--white);
  }

  .header-logo {
    height: 50px;
    padding: 0.3rem;
  }
}

/* --- Navigation Logo --- */
.nav-logo {
  height: 40px;
  width: auto;
  margin-right: 2rem;
}

/* --- Section Divider --- */
.section-divider {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  margin: 0;
}

.nav-bar a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-bar a:hover {
  opacity: 0.8;
}

.nav-bar a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.3s ease;
}

.nav-bar a:hover::after {
  width: 100%;
}

@media (max-width: 992px) {
  .nav-bar {
    gap: 1.5rem;
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-bar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
  }
}

/* Keep old header styles for backward compatibility */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

/* --- Old Navigation (for backward compatibility) --- */
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-menu ul li a {
  text-decoration: none;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-menu ul li a:hover {
  color: var(--primary-rose);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    /* Hide on mobile for simplicity or convert to hamburger later if asked */
  }
}

/* --- Sections General --- */
section {
  padding: var(--spacing-lg) 0;
}

.split-layout {
  display: flex;
  align-items: center;
  gap: 5rem;
  /* Increased gap */
}

.split-layout .text-col,
.split-layout .image-col {
  flex: 1;
}

.text-col h2 {
  font-size: 2.2rem;
  /* Reduced from 2.5rem */
  margin-bottom: 1.5rem;
  color: var(--primary-rose-dark);
  letter-spacing: -0.5px;
}

/* --- Institutional (Perdizes) --- */
.institutional-highlight {
  /* Background image with strong overlay to make it subtle */
  background-image: linear-gradient(rgba(242, 232, 230, 0.8), rgba(242, 232, 230, 0.8)), url('./Imagens/hall.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: calc(var(--spacing-lg) + 60px);
  /* Add space if header overlaps too much, though header is sticky normally 80px */
  background-color: #F2E8E6;
  /* Matches the wave from the previous section */
}

.institutional-highlight .tag {
  display: inline-block;
  background: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--primary-rose);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.highlight-text {
  margin: 1.5rem 0;
  color: var(--primary-rose-dark);
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 0;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.hero-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-left: 10%;
  /* Offset to left */
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-features {
  list-style: none;
  margin-bottom: 2rem;
}

.hero-features li {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.hero-features li::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--primary-rose);
  border-radius: 50%;
  margin-right: 10px;
}

/* --- Concept --- */
/* --- Concept Section (Rose Theme) --- */
.concept {
  background-color: var(--primary-rose);
  /* #d5a9a0 */
  color: var(--white);
  padding: 6rem 0;
  position: relative;
}

/* Ensure text inside concept is white/light */
.concept p {
  color: #fff0eb;
}

.concept h2 {
  color: var(--white);
}

/* --- Benefits (Premium Redesign) --- */
.benefits {
  background: linear-gradient(135deg, var(--bg-alt) 0%, #fff 50%, var(--bg-alt) 100%);
  padding: 5rem 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.card {
  position: relative;
  background: linear-gradient(145deg, var(--primary-rose) 0%, var(--primary-rose-dark) 100%);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow:
    0 20px 40px rgba(166, 124, 115, 0.3),
    0 10px 20px rgba(166, 124, 115, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Decorative glow background */
.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  transform: rotate(30deg);
  transition: transform 0.6s ease;
  pointer-events: none;
}

/* Shimmer effect on hover */
.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 30px 60px rgba(166, 124, 115, 0.4),
    0 15px 30px rgba(166, 124, 115, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.card:hover::before {
  transform: rotate(30deg) scale(1.1);
}

.card:hover::after {
  left: 100%;
}

.card .icon {
  position: relative;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  display: inline-block;
  animation: float-icon 3s ease-in-out infinite;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes float-icon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1rem;
}

/* --- Indications (Premium Redesign) --- */
.indications {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
  text-align: center;
  padding: 6rem 0;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 3.5rem;
  color: var(--primary-rose-dark);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-rose), var(--primary-rose-dark));
  border-radius: 2px;
}

.indications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .indications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .indications-grid {
    grid-template-columns: 1fr;
  }
}

.indication-item {
  position: relative;
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.06),
    0 4px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

/* Gradient border on hover - removed pseudo-element, using border instead */

.indication-item:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 50px rgba(166, 124, 115, 0.25),
    0 8px 20px rgba(166, 124, 115, 0.15);
  border-color: var(--primary-rose);
  background: var(--white);
  /* Keep white background */
}

.check-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-dark));
  color: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(166, 124, 115, 0.3);
}

.indication-item:hover .check-icon {
  transform: rotate(10deg) scale(1.1);
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(166, 124, 115, 0.4);
}

.indication-item span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.indication-item:hover span {
  color: var(--primary-rose-dark);
}

/* --- CTA Section (Premium Redesign) --- */
.cta-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(166, 124, 115, 0.95), rgba(139, 90, 80, 0.98)),
    url('./Imagens/img_03.png') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 6rem 0;
  overflow: hidden;
}

/* Decorative background pattern */
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Floating Icons Container */
.cta-floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.float-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.15);
  font-size: 2rem;
  animation: float-around 8s ease-in-out infinite;
}

.float-1 {
  top: 15%;
  left: 10%;
  font-size: 1.5rem;
  animation-delay: 0s;
  animation-duration: 7s;
}

.float-2 {
  top: 25%;
  right: 15%;
  font-size: 2rem;
  animation-delay: 1s;
  animation-duration: 9s;
}

.float-3 {
  bottom: 30%;
  left: 20%;
  font-size: 1.8rem;
  animation-delay: 2s;
  animation-duration: 8s;
}

.float-4 {
  bottom: 20%;
  right: 10%;
  font-size: 2.2rem;
  animation-delay: 3s;
  animation-duration: 10s;
}

.float-5 {
  top: 60%;
  left: 5%;
  font-size: 1.6rem;
  animation-delay: 1.5s;
  animation-duration: 6s;
}

@keyframes float-around {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.15;
  }

  25% {
    transform: translate(20px, -30px) rotate(10deg);
    opacity: 0.25;
  }

  50% {
    transform: translate(-10px, -50px) rotate(-5deg);
    opacity: 0.2;
  }

  75% {
    transform: translate(15px, -20px) rotate(5deg);
    opacity: 0.3;
  }
}

/* CTA Box - Glassmorphism */
.cta-box {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 3.5rem 3rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  z-index: 1;
}

/* Main Icon */
.cta-icon-main {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  animation: pulse-glow 3s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@keyframes pulse-glow {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(255, 255, 255, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 30px 5px rgba(255, 255, 255, 0.15);
  }
}

.cta-box h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-box-detailed {
  text-align: left;
  max-width: 650px;
}

.cta-box-detailed h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.cta-intro {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  line-height: 1.8;
}

.cta-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.cta-checklist li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.cta-checklist li:last-child {
  border-bottom: none;
}

.cta-checklist li:hover {
  padding-left: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
}

.cta-checklist li i {
  color: #5acea5;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.cta-box-detailed .btn-cta-special {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Special CTA Button */
.btn-cta-special {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2.5rem;
  background: var(--white);
  color: var(--primary-rose-dark);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta-special i {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.btn-cta-special:hover {
  transform: translateY(-5px) scale(1.02);
  background: var(--white);
  color: var(--primary-rose);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-special:hover i {
  transform: scale(1.2) rotate(-10deg);
}

/* --- Info Section --- */
.info-section {
  background-color: var(--primary-rose-dark);
  color: var(--white);
  padding: var(--spacing-md) 0;
}

.info-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.info-block h3 {
  color: var(--primary-rose);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

/* --- Differentiators (Premium Animated) --- */
.differentiators {
  text-align: center;
  padding: 6rem 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 50%, #fff 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative background shapes */
.differentiators::before,
.differentiators::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(166, 124, 115, 0.08), rgba(213, 169, 160, 0.05));
  pointer-events: none;
}

.differentiators::before {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -100px;
  animation: float-shape 15s ease-in-out infinite;
}

.differentiators::after {
  width: 300px;
  height: 300px;
  bottom: -150px;
  right: -50px;
  animation: float-shape 12s ease-in-out infinite reverse;
}

@keyframes float-shape {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(30px, 20px) rotate(10deg);
  }
}

.diff-title {
  font-size: 2.5rem;
  color: var(--primary-rose-dark);
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.diff-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-rose), var(--primary-rose-dark), var(--primary-rose), transparent);
  border-radius: 2px;
}

/* Carousel Styles */
.diff-carousel {
  position: relative;
  max-width: 600px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}

.diff-track {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.diff-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2.5rem;
  background: var(--white);
  border-radius: 32px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 8px 25px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: scale(0.9) translateX(50px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}

.diff-slide.active {
  opacity: 1;
  transform: scale(1) translateX(0);
  pointer-events: auto;
  z-index: 1;
}

.diff-slide.prev {
  opacity: 0;
  transform: scale(0.9) translateX(-50px);
}

.diff-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-dark));
  border-radius: 28px;
  color: var(--white);
  font-size: 2.5rem;
  box-shadow: 0 15px 40px rgba(166, 124, 115, 0.35);
  animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.diff-slide span {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-rose-dark);
}

.diff-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  max-width: 400px;
  margin: 0;
}

/* Navigation Dots */
.diff-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.diff-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(166, 124, 115, 0.25);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.diff-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.diff-dot:hover {
  background: rgba(166, 124, 115, 0.5);
}

.diff-dot.active {
  background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-dark));
  transform: scale(1.2);
}

.diff-dot.active::after {
  border-color: var(--primary-rose);
}

/* Progress indicator on active dot */
.diff-dot.active::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--primary-rose);
  border-top-color: transparent;
  transform: translate(-50%, -50%);
  animation: dot-progress 4s linear infinite;
}

@keyframes dot-progress {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.diff-item:hover span {
  color: var(--primary-rose-dark);
}

/* --- About Section (Premium Redesign) --- */
.about-section {
  position: relative;
  padding: 6rem 0;
  background: var(--white);
  overflow: hidden;
}

/* Animated background shapes */
.about-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(166, 124, 115, 0.08), rgba(213, 169, 160, 0.05));
}

.shape-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  animation: float-shape 20s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -80px;
  animation: float-shape 15s ease-in-out infinite reverse;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about-content {
  position: relative;
}

.about-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-dark));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: pulse-soft 3s ease-in-out infinite;
}

@keyframes pulse-soft {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

.about-title {
  font-size: 3rem;
  color: var(--primary-rose-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.about-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.about-text strong {
  color: var(--primary-rose-dark);
  font-weight: 600;
}

/* Highlight Items */
.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.5rem;
  background: var(--bg-alt);
  border-radius: 50px;
  transition: all 0.4s ease;
  cursor: default;
}

.highlight-item:hover {
  background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-dark));
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(166, 124, 115, 0.3);
}

.highlight-item i {
  font-size: 1.2rem;
  color: var(--primary-rose-dark);
  transition: color 0.3s ease;
}

.highlight-item:hover i {
  color: var(--white);
}

.highlight-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.highlight-item:hover span {
  color: var(--white);
}

/* About Button */
.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-dark));
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(166, 124, 115, 0.3);
}

.btn-about:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(166, 124, 115, 0.4);
}

.btn-about i {
  font-size: 1.3rem;
}

/* Image Wrapper */
.about-image-wrapper {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.12),
    0 15px 30px rgba(0, 0, 0, 0.08);
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  border: 4px solid var(--primary-rose);
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.about-image-wrapper:hover .about-image-frame::before {
  opacity: 0.6;
}

.about-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image-frame img {
  transform: scale(1.05);
}

/* Floating Badge */
.about-floating-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--white);
  border-radius: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.about-floating-badge i {
  font-size: 1.5rem;
  color: #f5c518;
}

.about-floating-badge span {
  font-weight: 700;
  color: var(--primary-rose-dark);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .about-floating-badge {
    left: 20px;
    bottom: 20px;
  }

  .about-title {
    font-size: 2.2rem;
  }
}

/* --- Footer (New Design) --- */
.footer-new {
  background: var(--primary-rose);
  color: var(--white);
}

/* Main Footer Section */
.footer-main {
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .footer-main {
    padding: 1.5rem 0;
  }
}

/* Logo */
.footer-brand {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .footer-brand {
    justify-content: center;
  }

  .footer-logo-img {
    height: 100px;
  }

  .footer-links {
    padding: 0 1rem;
    width: 100%;
  }

  .footer-links a {
    white-space: normal;
    text-align: center;
    justify-content: center;
    font-size: 0.85rem;
    line-height: 1.4;
    flex-wrap: wrap;
  }

  .footer-heading {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }
}

.footer-logo-img {
  height: 220px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Links */
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-heading {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

/* Footer Mobile Styles */
@media (max-width: 768px) {
  .footer-main {
    padding: 1.2rem 0;
  }

  .footer-grid {
    gap: 0.8rem;
  }

  .footer-logo-img {
    height: 120px;
  }

  .footer-links {
    padding: 0 0.5rem;
  }

  .footer-links a {
    white-space: normal;
    text-align: center;
    justify-content: center;
    font-size: 0.8rem;
    line-height: 1.3;
    display: block;
  }

  .footer-links a i {
    display: none;
  }

  .footer-heading {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
  }

  .footer-social {
    margin-top: 0.5rem;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* Social Icons */
.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

@media (max-width: 768px) {
  .footer-social {
    justify-content: center;
  }
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--white);
  color: var(--primary-rose);
  transform: translateY(-3px);
}

/* Navigation Bar */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .footer-nav {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }
}

.footer-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-nav a:hover {
  opacity: 0.8;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.3s ease;
}

.footer-nav a:hover::after {
  width: 100%;
}

/* Copyright Bar */
.footer-copyright {
  background: var(--primary-rose-dark);
  padding: 1.5rem;
  text-align: center;
}

.footer-copyright p {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.footer-copyright p:first-child {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .split-layout {
    flex-direction: column;
  }

  .reverse-mobile {
    flex-direction: column-reverse;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-content {
    margin-left: 0;
    padding: 0 1rem;
    text-align: center;
  }

  .hero-features li {
    justify-content: center;
  }

  .institutional-highlight .image-col {
    order: -1;
  }

  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  /* --- Mobile Centralization Styles --- */
  .text-col,
  .text-col h2,
  .text-col p {
    text-align: center;
  }

  .text-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .text-col .btn,
  .text-col .btn-outline {
    align-self: center;
  }

  .institutional-highlight .tag {
    display: block;
    text-align: center;
  }

  .highlight-text {
    text-align: center;
  }

  .concept p,
  .concept h2 {
    text-align: center;
  }

  .creative-title {
    text-align: center;
  }

  /* Cards and benefits centralization */
  .cards-grid {
    justify-items: center;
  }

  .card {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Indications centralization */
  .indications {
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
    text-align: center;
    display: block;
  }

  /* About section centralization */
  .about-content {
    text-align: center;
  }

  .about-badge {
    display: inline-block;
  }

  .about-title {
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-highlights {
    justify-content: center;
  }

  .btn-about {
    align-self: center;
  }

  /* Differentiators centralization */
  .diff-title {
    font-size: 2rem;
    text-align: center;
    display: block;
  }

  .diff-carousel {
    margin: 2rem auto 0;
  }

  /* CTA centralization */
  .cta-box-detailed {
    text-align: center;
  }

  .cta-intro {
    text-align: center;
  }

  .cta-checklist li {
    justify-content: center;
    text-align: center;
  }

  /* Educational section */
  .educational .text-col h2,
  .educational .text-col p {
    text-align: center;
  }
}

/* --- Intro Hero (New Top Section) --- */
.intro-hero {
  position: relative;
  padding: 8rem 0 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('./Imagens/img_04.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 0;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.intro-hero .subtitle {
  font-size: 1.2rem;
  color: var(--primary-rose-dark);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

/* Mobile Hero Styles */
@media (max-width: 768px) {
  .intro-hero {
    padding: 4rem 1rem 5rem;
  }

  .intro-hero h1 {
    font-size: 1.6rem;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.3;
  }

  .intro-hero .subtitle {
    font-size: 1rem;
    text-align: center;
  }

  .intro-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.icon-btn i {
  margin-right: 8px;
  font-style: normal;
}

/* Watercolor Separator Styles (SVG) */
.watercolor-separator-container {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 10;
  overflow: hidden;
  pointer-events: none;
}

.watercolor-separator-container.bottom {
  bottom: -1px;
}

.watercolor-separator-container.inclined {
  bottom: -1px;
}

.watercolor-svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 50px;
}

.watercolor-svg path {
  transition: fill 0.3s ease;
}



/* Ensure parent has relative positioning */
.institutional-highlight {
  position: relative;
}

/* --- Shimmer Title Animation --- */
@keyframes shimmer-text {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.shimmer-title {
  display: inline-block;
  background: linear-gradient(90deg,
      var(--primary-rose-dark) 0%,
      #bfa8a0 25%,
      var(--primary-rose-dark) 50%,
      #bfa8a0 75%,
      var(--primary-rose-dark) 100%);
  background-size: 200% auto;
  color: transparent;
  /* Makes the text take the background color */
  -webkit-background-clip: text;
  /* Clips background to text */
  background-clip: text;
  animation: shimmer-text 6s linear infinite;
  /* Constant flow */
  font-weight: 700;
  /* Ensure fallback color for browsers that don't support clip */
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}

/* --- Comparison Slider --- */
.comparison-slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}

/* Container for images - uses the before image to set dimensions */
.comparison-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* The BEFORE image is relative and sets the natural height of the container */
.comparison-item.before {
  position: relative;
  /* This one is NOT absolute - it sets the height */
}

.comparison-item.before img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

/* The AFTER container is clipped - it overlays the BEFORE */
.comparison-item.after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  /* JS controls this */
  height: 100%;
  overflow: hidden;
  z-index: 5;
}

/* CRITICAL: The AFTER image must be the SAME SIZE as the BEFORE image */
/* We use the same width as the container (not .after wrapper) */
.comparison-item.after img {
  display: block;
  width: 600px;
  /* Set to container max-width - JS will override */
  max-width: none;
  /* Prevent shrinking */
  height: auto;
  pointer-events: none;
}

/* When JS is ready, it sets the exact pixel width */
.comparison-slider.ready .comparison-item.after img {
  width: var(--container-width);
}


/* Scroller Handle */
.scroller {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: auto;
  /* ALLOW clicks/drag on the scroller */
  cursor: ew-resize;
}

.scroller-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--primary-rose);
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

/* Hover effect on handle */
.comparison-slider:hover .scroller-handle {
  transform: translate(-50%, -50%) scale(1.1);
}

.comparison-slider:active .scroller-handle {
  transform: translate(-50%, -50%) scale(0.95);
  background: var(--primary-rose-dark);
}

/* Labels */
.label {
  position: absolute;
  top: 20px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  pointer-events: none;
  z-index: 20;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}

/* "Depois" is Top/Left layer */
.label.after-label {
  left: 20px;
}

/* "Antes" is Bottom/Right layer (revealed when dragging left) */
.label.before-label {
  right: 20px;
}