.app-container {
  margin: 0 15%;
  padding: 0;
}

/* style header */
.v-toolbar__content {
  justify-content: space-between !important;
  padding: 0 15% !important;
  height: 80px !important;
}

.navigation {
  width: 35%;
  display: flex;
  justify-content: space-between;
}

.blurred-bar {
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px); /* Safari */

  background-color: rgba(var(--v-theme-surface), 0.6);

  transition:
    backdrop-filter .3s ease,
    background-color .3s ease,
    box-shadow .3s ease;
}

/* style links */
.text-link a {
  color: rgba(var(--v-theme-on-surface), 0.7);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.text-link a:hover,
.text-link a.router-link-exact-active {
  color: rgb(var(--v-theme-primary));
}

/* style inputs */
.custom-text-field .v-field {
  border: 1px solid rgba(var(--v-theme-outline), 0.63) !important;
  /* transition: border-width 0.1s ease, border-color 0.1s ease; */
}

/* Quando estiver com foco */
.custom-text-field .v-field.v-field--focused {
  border: 2px solid rgb(var(--v-theme-secondary)) !important; /* engrossa a borda */
}

/* Cor do texto digitado */
.custom-text-field .v-input__control input {
  color: rgba(var(--v-theme-on-surface), 0.7) !important;
  caret-color: rgb(var(--v-theme-primary)) !important; /* cursor na cor verde */
}

/* Placeholder */
.custom-text-field .v-input__control input::placeholder {
  color: rgba(var(--v-theme-on-surface), 0.7) !important;
}



/* style footer*/
.v-footer {
  border-top: 1px solid rgb(var(--v-theme-primary)) !important;
  background-color: rgba(var(--v-theme-surface), 0.8) !important;
  padding: 5% 15% !important;
}

.v-footer .v-row {
  width: 100%;
}

.v-footer .v-row div{
  min-height: 60px;
}

@media (max-width: 365.98px) {
  .app-container {
    margin: 0;
    padding: 0;
  }
}

/* @media (max-width: 765.98px) {
  .app-container {
    margin: 0 5%;
    padding: 0;
  }
} */

@media (max-width: 1716.98px) {
  .app-container {
    margin: 0 10%;
    padding: 0;
  }

  .v-toolbar__content {
    padding: 0 10% !important;
  }
}

@media (max-width: 1506.98px) {
  .app-container {
    margin: 0 5%;
    padding: 0;
  }

  .v-toolbar__content {
    padding: 0 5% !important;
  }
}

@media (max-width: 1465.98px) {
  .navigation {
    width: 50%;
  }
}

/* ============================================================
   Home sections — linguagem visual compartilhada
   ============================================================ */

.section-py {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
}


.text-highlight {
  color: rgb(var(--v-theme-primary));
}

.section-title {
  font-size: clamp(1.85rem, 1.4rem + 1.6vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-subtitle {
  max-width: 620px;
  line-height: 1.7;
}

.glass-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(var(--v-theme-outline), 0.35);
  background: linear-gradient(
    165deg,
    rgba(var(--v-theme-surface-bright), 0.85) 0%,
    rgba(var(--v-theme-surface), 0.92) 100%
  );
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.glass-card:hover,
.glass-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(var(--v-theme-primary), 0.5);
  box-shadow: 0 20px 40px -16px rgba(0, 220, 130, 0.32);
}

.bg-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 220, 130, 0.16), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .glass-card {
    transition: none;
  }

  .reveal,
  .reveal-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}