:root {
  --background: #f5f8fb;
  --background-secondary: #edf3f7;

  --text: #2e3a44;
  --text-soft: #6f7c86;

  --accent: #7d9cb1;
  --accent-hover: #6b8ca2;

  --white: #ffffff;

  --radius: 999px;
  --transition: 0.35s ease;

  --max-width: 1200px;
}

/* RESET */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', sans-serif;

  background: linear-gradient(
    180deg,
    var(--background) 0%,
    #f8fbfd 100%
  );

  color: var(--text);

  overflow-x: hidden;
}

.topbar {
  width: 100%;

  padding: 2rem 2.5rem 0;

  position: absolute;
  top: 0;
  left: 0;

  z-index: 100;
}

/* LANGUAGE SELECTOR */

.language-selector {
  display: flex;
  justify-content: flex-end;
  align-items: center;

  gap: 0.8rem;
}

/* BUTTON */

.language-button {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 0.45rem;

  padding: 0.65rem 1rem;

  border-radius: 999px;

  border: 1px solid rgba(125, 156, 177, 0.10);

  background: rgba(255, 255, 255, 0.42);

  backdrop-filter: blur(10px);

  cursor: pointer;

  transition:
    background 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;

  box-shadow:
    0 6px 20px rgba(125, 156, 177, 0.04);
}

/* HOVER */

.language-button:hover {
  transform: translateY(-2px);

  background: rgba(255, 255, 255, 0.72);

  border-color: rgba(125, 156, 177, 0.16);

  box-shadow:
    0 12px 28px rgba(125, 156, 177, 0.08);
}

/* ACTIVE */

.language-button.active {
  background: rgba(125, 156, 177, 0.12);

  border-color: rgba(125, 156, 177, 0.22);
}

/* FLAG */

.flag {
  font-size: 1rem;

  line-height: 1;
}

/* LABEL */

.language-label {
  font-size: 0.72rem;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #5f7484;

  font-weight: 500;
}

/* RESPONSIVIDADE */

@media (max-width: 768px) {

  .topbar {
    padding: 1.5rem 1.5rem 0;
  }

  .language-selector {
    gap: 0.6rem;
  }

  .language-button {
    padding: 0.7rem 0.9rem;

    min-width: 58px;
  }
}

@media (max-width: 480px) {

  .topbar {
    padding: 1.2rem 1.2rem 0;
  }

  .language-button {
    padding: 0.7rem 0.85rem;

    gap: 0.35rem;
  }

  .flag {
    font-size: 0.95rem;
  }

  .language-label {
    font-size: 0.68rem;
  }
}

/* HERO SECTION */

.hero {
  min-height: 96vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 4rem 2rem;

  position: relative;
  overflow: hidden;
}

/* ELEMENTOS DECORATIVOS */

.hero::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  background: rgba(180, 203, 219, 0.18);

  border-radius: 50%;

  top: -180px;
  right: -120px;

  filter: blur(10px);
}

.hero::after {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  background: rgba(210, 224, 235, 0.22);

  border-radius: 50%;

  bottom: -140px;
  left: -100px;

  filter: blur(8px);
}

/* CONTAINER */

.hero-content {
  width: 100%;
  max-width: var(--max-width);

  position: relative;
  z-index: 2;

  display: flex;
  justify-content: flex-start;
}

.hero-text {
  max-width: 620px;
}

/* TEXTOS */

.subtitle {
  font-size: 1.3rem;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: var(--text-soft);

  margin-bottom: 2rem;

  font-weight: 400;
  font-family: 'Inter', serif;
}

.title {
  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(3.5rem, 7vw, 6rem);

  line-height: 0.95;
  font-weight: 500;

  color: var(--text);

  margin-bottom: 2rem;
}

.quote {
  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(1.6rem, 3vw, 2.4rem);

  line-height: 1.4;

  color: black;

  margin-bottom: 3rem;

  max-width: 520px;
}

/* ACTIONS */

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;

  flex-wrap: wrap;
}

/* BUTTON */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 1rem 2.4rem;

  border-radius: var(--radius);

  background: var(--accent);

  color: var(--white);

  text-decoration: none;

  font-size: 1.5rem;
  font-weight: 500;

  letter-spacing: 0.02em;

  transition: var(--transition);

  border: 1px solid transparent;
}

.btn:hover {
  background: var(--accent-hover);

  transform: translateY(-2px);
}

/* SOCIAL ICONS */

.socials {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.social-link {
  width: 44px;
  height: 44px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(125, 156, 177, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: var(--transition);

  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-2px);

  background: var(--white);
}

.social-link svg {
  width: 18px;
  height: 18px;

  stroke: #5d7180;
}

/* RESPONSIVIDADE */

@media (max-width: 768px) {

  .hero {
    padding: 3rem 1.5rem;

    align-items: center;
  }

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

  .hero-text {
    max-width: 100%;
  }

  .subtitle {
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    font-size: 0.82rem;
  }

  .title {
    margin-bottom: 1.5rem;

    line-height: 1;
  }

  .quote {
    margin-bottom: 2.5rem;

    max-width: 100%;
  }

  .hero-actions {
    gap: 1rem;
  }

  .btn {
    width: 100%;
    max-width: 240px;

    min-height: 54px;
  }

  .socials {
    width: 100%;
  }

  .hero::before {
    width: 320px;
    height: 320px;

    top: -120px;
    right: -140px;
  }

  .hero::after {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 480px) {

  .hero {
    min-height: 70vh;
  }

  .quote {
    font-size: 1.45rem;
  }

  .social-link {
    width: 42px;
    height: 42px;
  }
}

/* =========================
   ABOUT SECTION
========================= */

.about {
  padding: 3rem 2rem;

  background:
    linear-gradient(
      180deg,
      #f8fbfd 0%,
      #f2f7fa 100%
    );

  position: relative;
  overflow: hidden;
}

/* ELEMENTOS DECORATIVOS */

.about::before {
  content: "";

  position: absolute;

  width: 380px;
  height: 380px;

  border-radius: 50%;

  background: rgba(188, 208, 221, 0.12);

  top: -140px;
  left: -120px;

  filter: blur(8px);
}

.about::after {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background: rgba(210, 224, 235, 0.16);

  bottom: -100px;
  right: -80px;

  filter: blur(10px);
}

/* CONTAINER */

.about-container {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 6rem;

  align-items: center;

  position: relative;
  z-index: 2;
}

/* FOTO */

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  max-width: 520px;

  display: block;

  border-radius: 32px;

  object-fit: cover;

  transition: 0.5s ease;

  box-shadow:
    0 10px 40px rgba(125, 156, 177, 0.08);
}

.about-image:hover {
  transform: translateY(-4px);
}

/* TEXTO */

.about-content {
  max-width: 520px;

}

.section-tag {
  display: inline-block;

  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5f6569;

  margin-bottom: 1.5rem;
}

.about-title {
  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(2.6rem, 5vw, 4.2rem);

  line-height: 1.05;
  font-weight: 500;

  color: #2e3a44;

  margin-bottom: 2rem;
}

.about-text {
  font-size: 1.3rem;

  line-height: 1.9;

  color: black;

  margin-bottom: 1.5rem;

  font-weight: 300;
}

/* RESPONSIVIDADE */

@media (max-width: 992px) {

  .about-container {
    gap: 4rem;
  }

  .about-title {
    font-size: clamp(2.3rem, 6vw, 3.5rem);
  }
}

@media (max-width: 768px) {

  .about {
    padding: 6rem 1.5rem;
  }

  .about-container {
    grid-template-columns: 1fr;

    gap: 3rem;
  }

  .about-image-wrapper {
    display: flex;
    justify-content: center;
  }

  .about-image {
    max-width: 100%;
  }

  .about-content {
    max-width: 100%;
  }

  .about-title {
    margin-bottom: 1.5rem;

    line-height: 1.1;
  }

  .about-text {
    font-size: 0.98rem;

    line-height: 1.85;
  }
}

@media (max-width: 480px) {

  .about {
    padding: 1rem 1.25rem;
  }

  .about-container {
    gap: 2.5rem;
  }

  .about-image {
    border-radius: 24px;
  }

  .about-title {
    font-size: 2.5rem;
  }

  .about-text {
    font-size: 1.35rem;
  }
}

/* =========================
   APPROACH SECTION
========================= */

.approach {
  padding: 3rem 2rem;

  background:
    linear-gradient(
      180deg,
      #f2f7fa 0%,
      #f8fbfd 100%
    );

  position: relative;
  overflow: hidden;
}

/* ELEMENTOS DECORATIVOS */

.approach::before {
  content: "";

  position: absolute;

  width: 360px;
  height: 360px;

  border-radius: 50%;

  background: rgba(188, 208, 221, 0.10);

  top: -140px;
  right: -120px;

  filter: blur(10px);
}

.approach::after {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background: rgba(210, 224, 235, 0.14);

  bottom: -120px;
  left: -80px;

  filter: blur(10px);
}

/* CONTAINER */

.approach-container {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;

  position: relative;
  z-index: 2;
}

/* HEADER */

.approach-header {
  max-width: 720px;

  margin-bottom: 5rem;
}

.section-tag {
  display: inline-block;

  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: #5f6569;

  margin-bottom: 1.5rem;
}

.approach-title {
  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(2.8rem, 5vw, 4.2rem);

  line-height: 1.05;
  font-weight: 500;

  color: #2e3a44;

  margin-bottom: 1.8rem;
}

.approach-description {
  font-size: 1.3rem;

  line-height: 1.9;

  color: black;

  max-width: 620px;

  font-weight: 300;
}

/* GRID */

.approach-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 2rem;
}

/* CARDS */

.approach-card {
  min-height: 320px;

  padding: 2.5rem;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.52);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(125, 156, 177, 0.08);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  transition:
    transform 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;

  box-shadow:
    0 10px 30px rgba(125, 156, 177, 0.05);
}

.approach-card:hover {
  transform: translateY(-6px);

  background: rgba(255, 255, 255, 0.72);

  box-shadow:
    0 18px 45px rgba(125, 156, 177, 0.08);
}

/* TEXTOS DOS CARDS */

.card-title {
  font-family: 'Cormorant Garamond', serif;

  font-size: 2rem;
  font-weight: 500;

  color: #2e3a44;

  margin-bottom: 1rem;
}

.card-text {
  font-size: 1rem;

  line-height: 1.8;

  color: #475158;

  font-weight: 300;

  max-width: 180px;
}

/* RESPONSIVIDADE */

@media (max-width: 1100px) {

  .approach-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 2.5rem;
  }

  .approach-card {
    border-radius: 42px;

    min-height: 280px;
  }

  .card-text {
    max-width: 100%;
  }
}

@media (max-width: 768px) {

  .approach {
    padding: 6rem 1.5rem;
  }

  .approach-header {
    margin-bottom: 4rem;
  }

  .approach-title {
    line-height: 1.1;
  }

  .approach-description {
    font-size: 1.35rem;

    line-height: 1.85;
  }

  .approach-grid {
    grid-template-columns: 1fr;

    gap: 1.8rem;
  }

  .approach-card {
    min-height: auto;

    padding: 3rem 2rem;

    border-radius: 36px;
  }

  .card-title {
    margin-bottom: 0.8rem;
  }

  .card-text {
    max-width: 260px;
  }
}

@media (max-width: 480px) {

  .approach {
    padding: 3rem 1.25rem;
  }

  .approach-title {
    font-size: 2.6rem;
  }

  .approach-card {
    padding: 2.5rem 1.8rem;
  }

  .card-text {
    font-size: 1.35rem;
    line-height: 1.5;
  }
}

/* =========================
   SCHEDULE SECTION
========================= */

.schedule {
  padding: 3rem 2rem;

  background:
    linear-gradient(
      180deg,
      #f8fbfd 0%,
      #f3f7fa 100%
    );

  position: relative;
  overflow: hidden;
}

/* ELEMENTOS DECORATIVOS */

.schedule::before {
  content: "";

  position: absolute;

  width: 360px;
  height: 360px;

  border-radius: 50%;

  background: rgba(188, 208, 221, 0.10);

  top: -140px;
  left: -120px;

  filter: blur(10px);
}

.schedule::after {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background: rgba(210, 224, 235, 0.14);

  bottom: -120px;
  right: -80px;

  filter: blur(10px);
}

/* CONTAINER */

.schedule-container {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;

  position: relative;
  z-index: 2;
}

/* HEADER */

.schedule-header {

  margin-bottom: 5rem;
}

.section-tag {
  display: inline-block;

  font-size: 0.85rem;

  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: #5f6569;

  margin-bottom: 1.5rem;
}

.schedule-title {
  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(2.8rem, 5vw, 4.2rem);

  line-height: 1.05;
  font-weight: 500;
  max-width: 720px;
  color: #2e3a44;

  margin-bottom: 1.8rem;
}

.schedule-description {
  font-size: 1.3rem;

  line-height: 1.9;

  color: black;


  font-weight: 300;
}

/* GRID */

.schedule-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 2rem;

  margin-bottom: 5rem;
}

/* CARDS */

.schedule-card {
  background: rgba(255, 255, 255, 0.55);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(125, 156, 177, 0.08);

  border-radius: 32px;

  overflow: hidden;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;

  box-shadow:
    0 12px 35px rgba(125, 156, 177, 0.05);
}

.schedule-card:hover {
  transform: translateY(-4px);

  background: rgba(255, 255, 255, 0.72);

  box-shadow:
    0 18px 45px rgba(125, 156, 177, 0.08);
}

/* CARD CONTENT */

.schedule-card-content {
  padding: 2.5rem 2.5rem 1.5rem;
}

.schedule-location {
  display: inline-block;

  font-size: 0.78rem;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #404e59;

  margin-bottom: 1rem;
}

.schedule-card-title {
  font-family: 'Cormorant Garamond', serif;

  font-size: 2rem;
  font-weight: 500;

  color: #2e3a44;

  margin-bottom: 1rem;
}

.schedule-address {
  font-size: 1.2rem;

  line-height: 1.8;

  color: #475158;

  font-weight: 300;
}

/* MAP */

.schedule-map {
  width: 100%;
  height: 260px;

  overflow: hidden;
}

.schedule-map iframe {
  width: 100%;
  height: 100%;

  border: none;

  filter: grayscale(100%) brightness(1.05);
}

/* ONLINE */

.online-service {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.online-text {
  font-size: 1.3rem;

  line-height: 1.8;

  color: black;

  margin-bottom: 2rem;

  font-weight: 300;
}

/* BUTTON */

.schedule-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 2rem 3.5rem;

  border-radius: 999px;

  background: #7d9cb1;

  color: #ffffff;

  text-decoration: none;

  font-size: 1.5rem;
  font-weight: 500;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;

  box-shadow:
    0 10px 25px rgba(125, 156, 177, 0.10);
}

.schedule-button:hover {
  background: #6b8ca2;

  transform: translateY(-2px);

  box-shadow:
    0 16px 35px rgba(125, 156, 177, 0.14);
}

/* RESPONSIVIDADE */

@media (max-width: 992px) {

  .schedule-grid {
    grid-template-columns: 1fr;

    gap: 2rem;
  }
}

@media (max-width: 768px) {

  .schedule {
    padding: 6rem 1.5rem;
  }

  .schedule-header {
    margin-bottom: 4rem;
  }

  .schedule-title {
    line-height: 1.1;
  }

  .schedule-description {
    font-size: 1.35rem;

    line-height: 1.85;
  }

  .schedule-card-content {
    padding: 2rem 2rem 1.2rem;
  }

  .schedule-map {
    height: 240px;
  }

  .online-text {
    max-width: 320px;
  }
}

@media (max-width: 480px) {

  .schedule-button {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    width: 100%;
    max-width: 260px;

    min-height: 54px;
  }


  .schedule {
    padding: 3rem 1.25rem;
  }

  .schedule-card {
    border-radius: 26px;
  }

  .schedule-card-title {
    font-size: 1.8rem;
  }

  .schedule-map {
    height: 220px;
  }
}

/* =========================
   FAQ SECTION
========================= */

.faq {
  padding: 3rem 2rem;

  background:
    linear-gradient(
      180deg,
      #f3f7fa 0%,
      #f8fbfd 100%
    );

  position: relative;
  overflow: hidden;
}

/* ELEMENTOS DECORATIVOS */

.faq::before {
  content: "";

  position: absolute;

  width: 340px;
  height: 340px;

  border-radius: 50%;

  background: rgba(188, 208, 221, 0.10);

  top: -120px;
  right: -100px;

  filter: blur(10px);
}

.faq::after {
  content: "";

  position: absolute;

  width: 240px;
  height: 240px;

  border-radius: 50%;

  background: rgba(210, 224, 235, 0.12);

  bottom: -100px;
  left: -80px;

  filter: blur(10px);
}

/* CONTAINER */

.faq-container {
  width: 100%;
  max-width: 900px;

  margin: 0 auto;

  position: relative;
  z-index: 2;
}

/* HEADER */

.faq-header {
  text-align: center;

  margin-bottom: 4.5rem;
}

.section-tag {
  display: inline-block;

  font-size: 0.85rem;

  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: #5f6569;

  margin-bottom: 1.5rem;
}

.faq-title {
  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(2.8rem, 5vw, 4.2rem);

  line-height: 1.05;
  font-weight: 500;

  color: #2e3a44;

  margin-bottom: 1.5rem;
}

.faq-description {
  font-size: 1.3rem;

  line-height: 1.9;

  color: black;

  max-width: 580px;

  margin: 0 auto;

  font-weight: 300;
}

/* FAQ LIST */

.faq-list {
  display: flex;
  flex-direction: column;

  gap: 1.2rem;
}

/* ITEM */

.faq-item {
  background: rgba(255, 255, 255, 0.55);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(125, 156, 177, 0.08);

  border-radius: 28px;

  overflow: hidden;

  transition:
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;

  box-shadow:
    0 10px 30px rgba(125, 156, 177, 0.04);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.72);

  transform: translateY(-2px);

  box-shadow:
    0 16px 35px rgba(125, 156, 177, 0.06);
}

/* QUESTION */

.faq-question {
  width: 100%;

  padding: 1.8rem 2rem;

  background: transparent;

  border: none;

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

  text-align: left;

  cursor: pointer;

  font-family: inherit;

  color: #2e3a44;

  font-size: 1.4rem;
  font-weight: 400;

  transition: 0.3s ease;
}

.faq-question span:first-child {
  max-width: 90%;

  line-height: 1.6;
}

/* ICON */

.faq-icon {
  font-size: 1.4rem;

  color: #7d9cb1;

  transition: transform 0.35s ease;
}

/* ANSWER */

.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition:
    max-height 0.45s ease,
    opacity 0.35s ease;

  opacity: 0;
}

.faq-answer-content {
  padding: 0 2rem 2rem;
  font-size: 1.2rem;
}

.faq-answer p {
  font-size: 0.96rem;

  line-height: 1.9;

  color: #475158;

  font-weight: 300;

  max-width: 90%;
}

/* ACTIVE */

.faq-item.active .faq-answer {
  max-height: 300px;

  opacity: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* RESPONSIVIDADE */

@media (max-width: 768px) {

  .faq {
    padding: 6rem 1.5rem;
  }

  .faq-header {
    margin-bottom: 4rem;
  }

  .faq-title {
    line-height: 1.1;
  }

  .faq-description {
    font-size: 1.35rem;

    line-height: 1.85;
  }

  .faq-question {
    padding: 1.5rem 1.5rem;

  }

  .faq-answer-content {
    padding: 0 1.5rem 1.5rem;

  }

  .faq-answer p {
    max-width: 100%;

  }
}

@media (max-width: 480px) {

  .faq {
    padding: 5rem 1.25rem;
  }

  .faq-item {
    border-radius: 24px;
  }

  .faq-title {
    font-size: 2.6rem;
  }

  .faq-question {
    font-size: 0.95rem;
    font-size: 1.3rem;
    font-weight: 800;
    padding: 1.4rem 1.3rem;
  }

  .faq-answer-content {
    padding: 0 1.3rem 1.4rem;
    font-size: 1.35rem;

  }

  .faq-answer p {
    font-size: 0.93rem;
  }
}

/* =========================
   CLOSING SECTION
========================= */

.closing {
  min-height: 90vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 3rem 2rem;

  background:
    linear-gradient(
      180deg,
      #eef4f8 100%
      #f8fbfd 0%,
    );

  position: relative;
  overflow: hidden;
}

/* ELEMENTOS DECORATIVOS */

.closing::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  background: rgba(188, 208, 221, 0.14);

  top: -220px;
  right: -140px;

  filter: blur(10px);
}

.closing::after {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  background: rgba(210, 224, 235, 0.16);

  bottom: -140px;
  left: -100px;

  filter: blur(10px);
}

/* CONTAINER */

.closing-container {
  width: 100%;
  max-width: 900px;

  margin: 0 auto;

  position: relative;
  z-index: 2;
}

/* CONTENT */

.closing-content {
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* SUBTITLE */

.closing-subtitle {
  font-size: 0.85rem;

  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: #5f6569;

  margin-bottom: 2rem;

  font-weight: 400;
}

/* TITLE */

.closing-title {
  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(3rem, 6vw, 4.2rem);

  line-height: 1;
  font-weight: 500;

  color: #2e3a44;

  margin-bottom: 2rem;

  max-width: 760px;
}

/* TEXT */

.closing-text {
  font-size: 1.3rem;

  line-height: 1.9;

  color: black;

  max-width: 520px;

  margin-bottom: 3rem;

  font-weight: 300;
}

/* BUTTON */

.closing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 1rem 2.6rem;

  border-radius: 999px;

  background: #7d9cb1;

  color: #ffffff;

  text-decoration: none;

  font-size: 1.5rem;
  font-weight: 500;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;

  box-shadow:
    0 12px 30px rgba(125, 156, 177, 0.08);
}

.closing-button:hover {
  background: #6b8ca2;

  transform: translateY(-2px);

  box-shadow:
    0 18px 40px rgba(125, 156, 177, 0.12);
}

/* RESPONSIVIDADE */

@media (max-width: 768px) {

  .closing {
    min-height: 55vh;

    padding: 5rem 1.5rem;
  }

  .closing-title {
    line-height: 1.05;

    margin-bottom: 1.5rem;
  }

  .closing-text {
    font-size: 0.98rem;

    line-height: 1.85;

    margin-bottom: 2.5rem;
  }

  .closing-button {
    min-height: 54px;

    width: 100%;
    max-width: 260px;
  }
}

@media (max-width: 480px) {

  .closing {
    padding: 3rem 1.25rem;
  }

  .closing-button {
    font-size: 1.2rem;
  }

  .closing-subtitle {
    font-size: 0.78rem;
    font-family: 'Inter', serif;

    line-height: 1.7;
  }

  .closing-title {
    font-size: 3rem;
  }

  .closing-text {
    font-size: 1.35rem;
  }
}

/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials {
  padding: 3rem 2rem;

  background:
    linear-gradient(
      180deg,
      #f2f7fa 100%
      #f8fbfd 0%,

    );

  overflow: hidden;

  position: relative;
}

/* CONTAINER */

.testimonials-container {
  width: 100%;
  max-width: 1400px;

  margin: 0 auto;

  position: relative;
  z-index: 2;
}

/* HEADER */

.testimonials-header {
  max-width: 720px;

  margin: 0 auto 5rem;

  text-align: center;
}

.section-tag {
  display: inline-block;

  font-size: 0.85rem;

  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: #5f6569;

  margin-bottom: 1.5rem;
}

.testimonials-title {
  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(2.8rem, 5vw, 4.2rem);

  line-height: 1.05;
  font-weight: 500;

  color: #2e3a44;

  margin-bottom: 1.8rem;
}

.testimonials-description {
  font-size: 1.3rem;

  line-height: 1.9;

  color: black;

  font-weight: 300;
}

/* CAROUSEL */

.testimonials-carousel {
  position: relative;

  display: flex;
  align-items: center;
}

/* SLIDER */

.testimonials-slider {
  overflow-x: auto;

  scroll-behavior: smooth;

  scrollbar-width: none;

  width: 100%;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

/* TRACK */

.testimonials-track {
  display: flex;

  gap: 2rem;

  width: max-content;

  padding: 1rem 0.5rem;
}

/* CARD */

.testimonial-card {
  width: 340px;

  flex-shrink: 0;

  background: rgba(255, 255, 255, 0.58);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(125, 156, 177, 0.08);

  border-radius: 30px;

  padding: 2.5rem;

  transition:
    transform 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;

  box-shadow:
    0 10px 30px rgba(125, 156, 177, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-4px);

  background: rgba(255, 255, 255, 0.74);

  box-shadow:
    0 18px 40px rgba(125, 156, 177, 0.08);
}

/* TOP */

.testimonial-top {
  margin-bottom: 1.5rem;
}

.testimonial-name {
  font-size: 1.3rem;

  font-weight: 500;

  color: #2e3a44;

  margin-bottom: 0.6rem;
}

.testimonial-stars {
  font-size: 0.9rem;

  letter-spacing: 0.18em;

  color: #8aa5b8;
}

/* TEXT */

.testimonial-text {
  font-size: 1rem;

  line-height: 1.9;

  color: #475158;

  font-weight: 300;
}

/* BUTTONS */

.carousel-button {
  width: 52px;
  height: 52px;

  border-radius: 50%;

  border: none;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  flex-shrink: 0;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;

  box-shadow:
    0 10px 25px rgba(125, 156, 177, 0.06);

  z-index: 5;
}

.carousel-button:hover {
  transform: translateY(-2px);

  background: rgba(255, 255, 255, 0.95);

  box-shadow:
    0 16px 35px rgba(125, 156, 177, 0.10);
}

.carousel-button svg {
  width: 18px;
  height: 18px;

  stroke: #6f8798;
}

/* FOOTER */

.testimonials-footer {
  display: flex;
  justify-content: center;
  font-family: 'Inter', serif;

  margin-top: 4rem;
}

/* LINK */

.google-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;

  text-decoration: none;

  color: #5f7484;

  font-size: 0.95rem;

  transition:
    transform 0.35s ease,
    color 0.35s ease;
}

.google-link:hover {
  transform: translateY(-2px);
}

.google-link svg {
  width: 16px;
  height: 16px;

  stroke: currentColor;
}

/* RESPONSIVIDADE */

@media (max-width: 768px) {

  .testimonials {
    padding: 6rem 1.5rem;
  }

  .testimonials-header {
    margin-bottom: 4rem;
  }

  .testimonial-card {
    width: 290px;

    padding: 2rem;
  }

  .carousel-button {
    display: none;
  }
}

@media (max-width: 480px) {

  .testimonials {
    padding: 5rem 1.25rem;
  }

  .testimonial-card {
    width: 260px;

    padding: 1.8rem;

    border-radius: 24px;
  }

  .testimonial-name {
    font-size: 1.5rem;
  }

  .testimonial-text {
    font-size: 1.35rem;
  }
}