/* ==========================================================
   Vitória Sales - Psychology Website
   Base stylesheet
   ========================================================== */

/* =========================
   GOOGLE FONTS
   ========================= */



/* =========================
   ROOT
   ========================= */

:root {
  /* Brand */

  --primary: #a87d75;
  --primary-light: #c8a39c;
  --primary-dark: #8a6b65;

  /* Background */

  --bg: #f4ede5;
  --bg-alt: #efe5d8;
  --bg-soft: #e7d9c7;
  --bg-white: #fbfaf8;

  /* Decoration */

  --watermark: #eadecd;

  /* Text */

  --text: #5f4a46;
  --text-light: #6b5853;
  --text-soft: #8a7570;

  /* Border */

  --border: #d7c4b5;

  /* Feedback */

  --success: #8da486;
  --warning: #c5a96c;
  --danger: #b87f77;

  /* Radius */

  --radius-sm: 0.8rem;
  --radius: 1.5rem;
  --radius-lg: 2.5rem;

  /* Shadow */

  --shadow-sm: 0 4px 10px rgba(70, 50, 40, 0.05);

  --shadow: 0 10px 30px rgba(70, 50, 40, 0.08);

  --shadow-lg: 0 25px 60px rgba(70, 50, 40, 0.12);

  /* Transition */

  --transition: 0.35s ease;

  /* Width */

  --container: 1200px;

  /* Layout */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  --header-height: 82px;
  --footer-height: 92px;
}

/* =========================
   DARK THEME
   ========================= */

[data-theme="dark"] {
  --primary: #d4a89f;
  --primary-light: #e0bdb6;
  --primary-dark: #b98d85;

  --bg: #2a2522;
  --bg-alt: #25201d;
  --bg-soft: #1f1a17;
  --bg-white: #25201d;

  --watermark: #3d332e;

  --text: #e8ddd8;
  --text-light: #c4b5ae;
  --text-soft: #a08f88;

  --border: #4a3d37;

  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.2);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --primary: #d4a89f;
    --primary-light: #e0bdb6;
    --primary-dark: #b98d85;

    --bg: #2a2522;
    --bg-alt: #25201d;
    --bg-soft: #1f1a17;
    --bg-white: #25201d;

    --watermark: #3d332e;

    --text: #e8ddd8;
    --text-light: #c4b5ae;
    --text-soft: #a08f88;

    --border: #4a3d37;

    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.2);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.4);
  }
}

/* =========================
   RESET
   ========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);

  color: var(--text);

  font-family: var(--font-body);

  line-height: 1.7;

  overflow-x: hidden;

  transition: background 0.3s ease, color 0.3s ease;
}

/* =========================
   TYPOGRAPHY
   ========================= */

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);

  font-weight: 500;

  color: var(--primary-dark);

  line-height: 1.15;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 2rem);
}

p {
  color: var(--text-light);

  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
}

a {
  color: inherit;

  text-decoration: none;
}

img {
  display: block;

  max-width: 100%;
}

/* =========================
   LAYOUT
   ========================= */

.container {
  width: min(92%, var(--container));

  margin: auto;

  position: relative;
  z-index: 1;
}

section {
  min-height: auto;

  display: flex;

  align-items: center;

  position: relative;

  overflow: hidden;

  padding: 100px 0;
}

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

.section-white {
  background: linear-gradient(135deg, #fbfaf8 0%, #f7f2ec 100%);
}

.section-soft {
  background: linear-gradient(225deg, #e7d9c7 0%, #efe3d4 100%);
}

#about.section-white {
  background: linear-gradient(160deg, #fbfaf8 0%, #f5ede5 100%);
}

#tcc.section-white {
  background: linear-gradient(200deg, #fbfaf8 0%, #f4ebe3 100%);
}

#areas.section-soft {
  background: linear-gradient(120deg, #e7d9c7 0%, #f0e6d9 100%);
}

#online.section-soft {
  background: linear-gradient(300deg, #e7d9c7 0%, #eadecd 100%);
}

/* =========================
   BACKGROUND GRADIENT
   ========================= */

.hero {
  background-color: #faf6f2;
  background: radial-gradient(circle at top, #faf6f2 0%, #f2e8dc 45%, #e7d9c7 100%);
}

/* =========================
   WATERMARK
   ========================= */

.watermark {
  position: absolute;

  inset: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  pointer-events: none;

  opacity: 0.18;

  z-index: 0;
}

.watermark img {
  width: min(55vw, 650px);
}

/* =========================
   BUTTONS
   ========================= */

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 16px 34px;

  border-radius: 999px;

  transition: var(--transition);

  font-weight: 600;

  cursor: pointer;
}

.btn-primary {
  background: var(--primary);

  color: white;

  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--primary-dark);

  transform: translateY(-3px);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-outline:active {
  transform: scale(0.98);
}

.btn-outline {
  border: 1px solid var(--primary);

  color: var(--primary);
}

.btn-outline:hover {
  background: #f8f3ef;
}

/* =========================
   CARDS
   ========================= */

.card {
  background: white;

  border-radius: 30px;

  padding: clamp(20px, 3vw, 35px);

  border: 1px solid rgba(185, 141, 133, 0.15);

  box-shadow: var(--shadow);

  transition: var(--transition);
}

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

  box-shadow: var(--shadow-lg);
}

/* =========================
   SECTION TITLE
   ========================= */

.section-title {
  text-align: center;

  margin-bottom: clamp(30px, 5vh, 70px);
}

.section-title p {
  max-width: 650px;

  margin: clamp(10px, 1.5vh, 20px) auto 0;
}

/* =========================
   SIMPLE FADE
   ========================= */

.fade {
  opacity: 0;

  transform: translateY(35px) scale(0.98);

  filter: blur(8px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
}

.fade.visible {
  opacity: 1;

  transform: none;

  filter: none;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  section {
    min-height: auto;

    padding: clamp(40px, 6vh, 60px) 0;
  }
}

/* =========================
   TABLET NAV
   ========================= */

@media (min-width: 601px) and (max-width: 900px) {
  nav {
    position: fixed;
    top: 0;
    right: max(4%, calc((100% - var(--container)) / 2));
    height: var(--header-height);
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 28px);
    z-index: 1001;
  }
}

/* =========================
   TABLET PORTRAIT SNAP
   ========================= */

@media (min-width: 601px) and (max-width: 900px) and (orientation: portrait) {
  body {
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .content {
    flex: 1;
    min-height: 0;
    overflow-y: scroll;
    scroll-snap-type: y proximity;
    position: relative;
  }

  section {
    height: 100%;
    min-height: 0;
    scroll-snap-align: start;
    padding: 0;
    overflow: visible;
  }

  #about .container {
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }

  .about-grid {
    height: 100%;
  }

  .cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
  }

  .cta-box > * + * {
    margin-top: clamp(12px, 2vh, 24px);
  }

  .cta h2 {
    margin: 0;
  }

  .cta-buttons {
    margin-top: 0;
  }

  .navbar {
    position: relative;
    inset: auto;
    background: rgba(255, 250, 246, 0.72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(185, 141, 133, 0.15);
    flex-shrink: 0;
  }

  section.cta {
    height: calc(100vh - var(--header-height) - var(--footer-height));
    min-height: 0;
    padding: 40px 0;
  }
}

/* =========================
   HAMBURGER
   ========================= */

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
  border-radius: 2px;
  flex-shrink: 0;
}

/* =========================
   THEME TOGGLE
   ========================= */

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px 8px;
  border-radius: 999px;
  transition: 0.3s;
  line-height: 1;
  color: var(--text);
}

.theme-toggle:hover {
  background: rgba(128, 128, 128, 0.15);
}

@media (max-width: 600px) {
  .theme-toggle {
    align-self: center;
    font-size: 1.4rem;
  }
}

[data-theme="dark"] .hero {
  background-color: #2a2522;
  background: radial-gradient(circle at top, #332d29 0%, #2a2522 45%, #1f1a17 100%);
}

[data-theme="dark"] .cta {
  background: radial-gradient(circle at top, #2d2723, #25201d);
}

[data-theme="dark"] footer {
  background: #1a1613;
}

[data-theme="dark"] .navbar.scrolled,
[data-theme="dark"] .navbar {
  background: rgba(42, 37, 34, 0.85);
  border-bottom-color: var(--border);
}

[data-theme="dark"] .hamburger {
  background: rgba(42, 37, 34, 0.85);
}

[data-theme="dark"] .social-icon {
  background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .btn-primary,
[data-theme="dark"] .nav-button {
  background: var(--primary);
  color: #2a2522;
}

[data-theme="dark"] .nav-button:hover {
  color: #2a2522;
}

[data-theme="dark"] .btn-primary:hover {
  background: var(--primary-light);
  color: #2a2522;
}

[data-theme="dark"] .timeline-number {
  color: #2a2522;
}

[data-theme="dark"] .watermark {
  opacity: 0.03;
}

[data-theme="dark"] .btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}

[data-theme="dark"] .btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .card,
[data-theme="dark"] .timeline-card,
[data-theme="dark"] .benefit {
  background: var(--bg-white);
}

[data-theme="dark"] .benefit-icon,
[data-theme="dark"] .area-card .icon {
  background: linear-gradient(135deg, #3d332e, #2a2522);
}

[data-theme="dark"] .section-white {
  background: linear-gradient(135deg, #25201d 0%, #2a2522 100%);
}

[data-theme="dark"] .section-soft {
  background: linear-gradient(225deg, #1f1a17 0%, #25201d 100%);
}

[data-theme="dark"] #about.section-white {
  background: linear-gradient(160deg, #25201d 0%, #2a2522 100%);
}

[data-theme="dark"] #tcc.section-white {
  background: linear-gradient(200deg, #25201d 0%, #2a2522 100%);
}

[data-theme="dark"] #areas.section-soft {
  background: linear-gradient(120deg, #1f1a17 0%, #25201d 100%);
}

[data-theme="dark"] #online.section-soft {
  background: linear-gradient(300deg, #1f1a17 0%, #2a2522 100%);
}

@media (min-width: 601px) and (max-width: 900px) {
  h2 {
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
  }

  .navbar {
    display: none;
  }

  .hamburger {
    display: flex;
    position: fixed;
    top: 12px;
    right: 12px;
    background: rgba(255, 250, 246, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 250, 246, 0.98);
    backdrop-filter: blur(18px);
    flex-direction: column;
    padding: 70px 20px 20px;
    gap: 16px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    pointer-events: none;
    border-bottom: 1px solid rgba(185, 141, 133, 0.15);
    z-index: 999;
  }

  nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-button {
    text-align: center;
    width: 100%;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* =========================
   DESKTOP LAYOUT
   ========================= */

@media (min-width: 901px) {
  body {
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .content {
    flex: 1;
    min-height: 0;
    overflow-y: scroll;
    scroll-snap-type: y proximity;
    position: relative;
  }

  section {
    height: 100%;
    min-height: 0;
    scroll-snap-align: start;
    padding: 0;
    overflow: visible;
  }

  #about .container {
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }

  .about-grid {
    height: 100%;
  }

  .about-photo {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .photo-wrapper img {
    max-height: calc(100vh - 200px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .hero {
    padding-top: 0;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 4vh 0;
  }

  .hero-content > * {
    flex-shrink: 0;
  }

  .hero-content > * + * {
    margin-top: clamp(0.5rem, 2vh, 2rem);
  }

  .hero-logo {
    margin-bottom: 0;
  }

  .subtitle {
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-buttons {
    margin-top: 0;
  }

  .scroll-indicator {
    margin-top: auto;
    padding-bottom: 2vh;
  }

  .about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about-text > * + * {
    margin-top: clamp(12px, 1.5vh, 22px);
  }

  .about-text p {
    margin-bottom: 0;
  }

  section.cta {
    scroll-snap-align: start;
    height: calc(100vh - var(--header-height) - var(--footer-height));
    min-height: 0;
    padding: 40px 0;
  }

  .cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
  }

  .cta-box > * + * {
    margin-top: clamp(12px, 2vh, 24px);
  }

  .cta h2 {
    margin: 0;
  }

  .cta-buttons {
    margin-top: 0;
  }

  nav {
    position: fixed;
    top: 0;
    right: max(4%, calc((100% - var(--container)) / 2));
    height: var(--header-height);
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 36px);
    z-index: 1000;
  }
}

/* =========================
   WHATSAPP FLOAT
   ========================= */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: 0.3s;
}

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

.whatsapp-float img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
  }

  .whatsapp-float img {
    width: 22px;
    height: 22px;
  }
}

/* ==========================================================
   NAVBAR
   ========================================================== */

.navbar {
  position: fixed;

  inset: 0 0 auto 0;

  height: var(--header-height);

  z-index: 1000;

  transition: 0.4s;
}

.navbar.scrolled {
  background: rgba(255, 250, 246, 0.72);

  backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(185, 141, 133, 0.15);
}

@media (min-width: 901px) {
  .navbar {
    position: relative;
    inset: auto;
    background: rgba(255, 250, 246, 0.72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(185, 141, 133, 0.15);
    flex-shrink: 0;
  }
}

.nav-container {
  height: 100%;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.brand {
  display: flex;

  align-items: center;

  gap: 14px;

  font-family: var(--font-heading);

  font-size: 1.6rem;
}

.brand img {
  height: clamp(40px, 5vh, 52px);
  width: auto;
}

nav {
  display: flex;

  gap: clamp(16px, 3vw, 36px);

  align-items: center;
}

nav a {
  color: var(--text);

  transition: 0.3s;
}

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

nav a.active {
  color: var(--primary);

  font-weight: 600;
}

.nav-button.active {
  color: white;
}

.nav-button:hover {
  color: white;
}

.nav-button {
  background: var(--primary);

  color: white;

  padding: 12px 22px;

  border-radius: 999px;
}

/* ==========================================================
   HERO
   ========================================================== */

.hero-heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  font-family: inherit;
}

.hero-subtitle {
  display: block;
  margin-top: 28px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 400;
}

.hero {
  text-align: center;
  padding-top: var(--header-height);
}

.hero-content {
  position: relative;

  z-index: 2;
}

.hero-logo {
  margin-bottom: 30px;
}

.hero-logo img {
  width: clamp(120px, 15vw, 200px);

  margin: auto;

  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.08));
}

.signature {
  width: min(450px, 90%);

  margin: auto;

  display: block;
}

.signature path {
  fill: transparent;
  stroke: var(--primary);
  stroke-width: 0.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 3000;
  stroke-dashoffset: 4000;
  animation: sig-draw 3s ease forwards;
}

.signature path:nth-child(2) {
  animation-delay: 0.15s;
}

.signature path:nth-child(3) {
  animation-delay: 0.2s;
}

.signature path:nth-child(4) {
  animation-delay: 0.25s;
}

.signature path:nth-child(5) {
  animation-delay: 0.3s;
}

.signature path:nth-child(6) {
  animation-delay: 0.45s;
}

.signature path:nth-child(7) {
  animation-delay: 0.55s;
}

@keyframes sig-draw {
  0% {
    stroke-dashoffset: 3000;
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: var(--primary);
  }
}

.subtitle {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: clamp(8px, 1.5vw, 18px);

  margin-top: clamp(12px, 2vh, 28px);

  margin-bottom: clamp(16px, 3vh, 36px);

  letter-spacing: 0.22em;

  text-transform: uppercase;

  color: var(--text-soft);

  font-size: clamp(0.75rem, 0.9vw, 0.85rem);
}

.subtitle span {
  width: clamp(20px, 3vw, 42px);

  height: 1px;

  background: var(--primary-light);
}

.hero-text {
  max-width: 720px;

  margin: auto;

  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-buttons {
  margin-top: clamp(20px, 4vh, 48px);

  display: flex;

  justify-content: center;

  gap: clamp(10px, 2vw, 18px);

  flex-wrap: wrap;
}

.scroll-indicator {
  margin-top: 90px;

  font-size: 2rem;

  color: var(--primary);

  animation: float 2.4s infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

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

  100% {
    transform: translateY(0);
  }
}
/* =========================
   SKIP LINK
   ========================= */

.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  padding: 12px 20px;
  background: var(--primary-dark);
  color: #fff;
  z-index: 9999;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 1rem;
}

.skip-link:focus {
  top: 0;
}

/* =========================
   FOCUS VISIBLE
   ========================= */

:focus-visible {
  outline: 3px solid var(--primary-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

.navbar a:focus-visible {
  outline: 3px solid var(--primary-dark);
  outline-offset: 4px;
}

.btn:focus-visible {
  outline: 3px solid var(--primary-dark);
  outline-offset: 3px;
}

/* =========================
   REDUCED MOTION
   ========================= */

@media (prefers-reduced-motion: reduce) {
  .fade {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .signature path {
    animation: none;
    stroke-dashoffset: 0;
    fill: var(--primary);
  }

  .scroll-indicator {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

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

.about-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;

  column-gap: clamp(30px, 5vw, 90px);
  row-gap: clamp(8px, 1.5vh, 20px);
}

.about-tag {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0;
}

.about-photo {
  grid-column: 1;
  grid-row: 1 / 3;
  position: relative;
  align-self: center;
}

.about-text {
  grid-column: 2;
  grid-row: 2;
}

.photo-wrapper {
  position: relative;
}



.photo-wrapper img {
  border-radius: 34px;

  box-shadow: var(--shadow-lg);
}

.section-tag {
  display: inline-block;

  margin-bottom: clamp(10px, 1.5vh, 18px);

  letter-spacing: 0.18em;

  color: var(--primary);

  font-size: clamp(0.7rem, 0.85vw, 0.8rem);

  font-weight: 600;
}

.about-text h2 {
  margin-bottom: clamp(14px, 2vh, 28px);
}

.about-text p {
  margin-bottom: clamp(12px, 1.5vh, 22px);
  text-align: justify;
}

.about-info {
  display: grid;

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

  gap: clamp(12px, 2vw, 22px);

  margin: clamp(20px, 3vh, 42px) 0;
}

.about-info div {
  display: flex;

  flex-direction: column;
}

.about-info strong {
  color: var(--primary-dark);

  margin-bottom: 6px;
}

.about-info span {
  color: var(--text-light);
}
@media (max-width: 600px) {
  .about-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: clamp(16px, 3vw, 28px);
  }

  .about-tag {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
  }

  .about-photo {
    grid-column: 1;
    grid-row: 2;
    overflow: hidden;
  }

  .about-text {
    grid-column: 1;
    grid-row: 3;
  }

  .about-info {
    grid-template-columns: 1fr;
  }
} /* ==========================================================
   AREAS
   ========================================================== */

.areas-grid {
  display: grid;

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

  gap: clamp(16px, 2vw, 32px);
}

.area-card {
  padding: clamp(14px, 2vw, 28px) clamp(16px, 3vw, 34px);
}

.area-card-header {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 16px);
  margin-bottom: clamp(6px, 0.8vh, 10px);
}

.area-card .icon {
  width: clamp(36px, 4vw, 52px);

  height: clamp(36px, 4vw, 52px);

  flex-shrink: 0;

  border-radius: 50%;

  background: linear-gradient(135deg, #f7f2ed, #efe5d8);

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: clamp(1rem, 1.8vw, 1.4rem);

  box-shadow: var(--shadow-sm);

  transition: 0.35s;
}

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

.area-card:hover .icon {
  transform: rotate(-5deg) scale(1.08);
}

.area-card h3 {
  margin-bottom: 0;
}

.area-card p {
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
}

#areas .section-title h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

@media (min-width: 601px) and (max-width: 900px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================
   TCC
   ========================================================== */

.tcc-timeline {
  margin-top: clamp(30px, 5vh, 80px);

  display: grid;

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

  gap: clamp(16px, 2.5vw, 40px);

  position: relative;
}

.tcc-timeline::before {
  content: '';

  position: absolute;

  left: 12%;

  right: 12%;

  top: 42px;

  height: 2px;

  background: linear-gradient(90deg, var(--primary-light), var(--border));
}

.timeline-card {
  position: relative;

  z-index: 2;

  background: white;

  border-radius: 28px;

  padding: clamp(16px, 2.5vw, 34px);

  text-align: center;

  box-shadow: var(--shadow);

  transition: 0.35s;
}

.timeline-card:hover {
  transform: translateY(-8px);
}

.timeline-number {
  width: clamp(48px, 5vw, 84px);

  height: clamp(48px, 5vw, 84px);

  border-radius: 50%;

  margin: auto;

  margin-bottom: clamp(12px, 1.5vh, 28px);

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: clamp(0.85rem, 1.2vw, 1.2rem);

  font-weight: 700;

  color: white;

  background: linear-gradient(135deg, var(--primary), var(--primary-light));

  box-shadow: var(--shadow);
}

.timeline-card h3 {
  margin-bottom: clamp(10px, 1.5vh, 18px);
}

@media (min-width: 901px) {
  .tcc-timeline {
    align-items: stretch;
  }

  .timeline-card {
    display: flex;
    flex-direction: column;
  }

  .timeline-card p {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .tcc-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .tcc-timeline::before {
    display: none;
  }

  .timeline-card {
    padding: clamp(12px, 2vw, 20px);
    text-align: left;
  }

  .timeline-card-header {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.2vw, 14px);
    margin-bottom: clamp(6px, 0.8vh, 10px);
  }

  .timeline-number {
    width: clamp(32px, 3.5vw, 42px);
    height: clamp(32px, 3.5vw, 42px);
    margin: 0;
    flex-shrink: 0;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
  }

  .timeline-card h3 {
    margin-bottom: 0;
  }

  .timeline-card p {
    font-size: clamp(0.85rem, 0.95vw, 0.9rem);
  }
}

@media (max-width: 600px) {
  .tcc-timeline {
    grid-template-columns: 1fr;
  }

  .tcc-timeline::before {
    display: none;
  }
}
/* ==========================================================
   ONLINE
   ========================================================== */

.online-grid {
  display: grid;

  grid-template-columns: 1fr 1.2fr;

  gap: clamp(24px, 5vw, 80px);

  align-items: center;
}

.online-benefits {
  display: grid;

  gap: clamp(10px, 1.5vh, 18px);
}

.benefit {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 16px);
  background: white;

  border-radius: 18px;

  padding: clamp(10px, 1.2vw, 16px) clamp(14px, 2vw, 22px);

  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  width: clamp(32px, 3.5vw, 44px);
  height: clamp(32px, 3.5vw, 44px);
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7f2ed, #efe5d8);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 601px) and (max-width: 900px) {
  .online-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 3vw, 40px);
  }
}

@media (max-width: 600px) {
  .online-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================
   CTA
   ========================================================== */

.cta {
  min-height: 75vh;

  background: radial-gradient(circle at top, #f7f1eb, #efe5d8);
}

.cta-box {
  max-width: 900px;

  margin: auto;

  text-align: center;
}

.cta h2 {
  margin: clamp(12px, 2vh, 24px) 0;
}

.cta p {
  max-width: 700px;

  margin: auto;
}

.cta-buttons {
  margin-top: clamp(20px, 4vh, 50px);

  display: flex;

  justify-content: center;

  gap: clamp(12px, 2vw, 20px);

  flex-wrap: wrap;
}
footer {
  background: #4a3633;

  padding: clamp(20px, 3vh, 40px) 0;

  color: white;
}

.footer {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 20px);
}

.footer-brand img {
  width: clamp(30px, 3vw, 44px);

  flex-shrink: 0;

  opacity: 0.9;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

@media (max-width: 600px) {
  .footer-brand {
    flex-direction: column;
    text-align: center;
  }
}

.footer-brand h3 {
  color: white;

  margin-bottom: 2px;

  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);

  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
}

.footer-social {
  display: flex;
  flex-direction: row;
  gap: clamp(10px, 1.5vw, 20px);
  justify-content: center;
  align-items: center;
}

@media (max-width: 600px) {
  .footer-social {
    flex-direction: column;
  }
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 0.8vw, 10px);
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  flex: 1;

  transition: 0.3s;
}

.footer-social a:hover {
  color: white;
}

.social-icon {
  width: clamp(28px, 2.5vw, 34px);
  height: clamp(28px, 2.5vw, 34px);
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon img {
  width: 60%;
  height: 60%;
  filter: brightness(0) invert(1);
}

.footer-copy {
  text-align: right;
  overflow: hidden;
}

.footer-copy small {
  color: rgba(255, 255, 255, 0.6);

  font-size: clamp(0.75rem, 0.85vw, 0.85rem);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .footer-copy small {
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }
}

/* =========================
   SCROLLBAR
   ========================= */

.content {
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.content::-webkit-scrollbar {
  width: 6px;
}

.content::-webkit-scrollbar-track {
  background: transparent;
}

.content::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}
