:root {
  --color-bg: #1A1330;                
  --color-bg-alt: #221836;
  --color-surface: rgba(255,255,255,0.06);
  --color-surface-strong: rgba(255,255,255,0.12);
  --color-primary: #c89df2;            
  --color-primary-strong: #b276ea;
  --color-accent: #ef8fe6;
  --color-text: #e8dcff;              
  --color-text-muted: #d1ccccaf;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container-max: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top right, rgba(184, 150, 255, 0.12), transparent 45%),
    radial-gradient(circle at 20% 20%, rgba(245, 193, 108, 0.1), transparent 40%),
    var(--color-bg);
  color: #dbdbdcd9;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--color-primary-strong);
}

.container {
  width: min(100% - 3rem, var(--container-max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 26, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
}

.brand__symbol {
  font-size: 1.5rem;
  color: var(--color-accent);
}

.nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav a {
  font-weight: 500;
  font-size: 0.95rem;
}

.nav__cta {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--color-primary);
  transition: background 0.3s ease, color 0.3s ease;
}

.nav__cta:hover {
  background: var(--color-primary);
  color: #2f3450;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
}

.highlight {
  color: #d77feacf;
  font-weight: 600;
}

.hero {
  padding: 3rem 0 4rem;
}

.hero__animation {
  width: 180px;
  margin: 0 auto 30px auto;
  position: relative;
  z-index: 3;
  pointer-events: none;
}

.hero__animation {
  position: relative;
  width: 180px;
  margin: 0 auto;
}

/* Estrelas atrás da carta — versão visível */
.hero__animation::before,
.hero__animation::after {
  content: "";
  position: absolute;
  top: -220px;
  left: -220px;
  width: 650px;
  height: 650px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

/* Camada de estrelas pequenas */
.hero__animation::before {
  background-image:
    /* *pequenas */
    radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,0.9), transparent),
    radial-gradient(2px 2px at 20% 30%, rgba(217,167,255,0.9), transparent),
    radial-gradient(2px 2px at 30% 10%, rgba(255,255,255,0.8), transparent),
    radial-gradient(2px 2px at 40% 25%, rgba(217,167,255,0.85), transparent),
    radial-gradient(2px 2px at 50% 15%, rgba(255,255,255,0.9), transparent),
    radial-gradient(2px 2px at 60% 35%, rgba(217,167,255,0.9), transparent),
    radial-gradient(2px 2px at 70% 10%, rgba(255,255,255,0.8), transparent),
    radial-gradient(2px 2px at 80% 30%, rgba(217,167,255,0.85), transparent),
    radial-gradient(2px 2px at 90% 20%, rgba(255,255,255,0.9), transparent),
    /*  *médias */
    radial-gradient(3px 3px at 15% 60%, rgba(217,167,255,0.8), transparent),
    radial-gradient(3px 3px at 35% 50%, rgba(255,255,255,0.85), transparent),
    radial-gradient(3px 3px at 55% 75%, rgba(217,167,255,0.8), transparent),
    radial-gradient(3px 3px at 75% 55%, rgba(255,255,255,0.9), transparent),
    radial-gradient(3px 3px at 90% 80%, rgba(217,167,255,0.85), transparent),
    /*  *grandes */
    radial-gradient(4px 4px at 20% 85%, rgba(217,167,255,0.55), transparent),
    radial-gradient(4px 4px at 50% 90%, rgba(255,255,255,0.45), transparent),
    radial-gradient(4px 4px at 75% 85%, rgba(217,167,255,0.5), transparent),
    radial-gradient(4px 4px at 40% 60%, rgba(255,255,255,0.4), transparent),
    radial-gradient(4px 4px at 60% 15%, rgba(217,167,255,0.4), transparent);
  animation: starsMove 8s ease-in-out infinite alternate;
}

/* Camada de estrelas maiores */
.hero__animation::after {
  background-image:
    radial-gradient(5px 5px at 25% 40%, rgba(217,167,255,0.55), transparent),
    radial-gradient(4px 4px at 75% 70%, rgba(255,255,255,0.5), transparent),
    radial-gradient(5px 5px at 60% 20%, rgba(217,167,255,0.6), transparent);
  animation: starsMove 10s ease-in-out infinite alternate-reverse;
  opacity: 0.45;
}

@keyframes starsMove {
  0%   { transform: translateY(0) scale(1); }
  100% { transform: translateY(-8px) scale(1.03); }
}

/* A imagem continua acima de tudo */
.hero__animation img {
  position: relative;
  z-index: 5;
}

/* IMAGEM */
.hero__animation img {
  width: 100%;
  max-width: 420px;
  height: auto;
  max-height: 70vh;
  position: relative;
  z-index: 3;
  transform-style: preserve-3d;
  animation: floatMystic2 10s ease-in-out infinite;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.45));
}

/* ANIMAÇÃO PRINCIPAL */
@keyframes floatMystic2 {
  0% {
    transform: translateY(0) rotateY(-10deg) rotateX(2deg) scale(1);
    filter: drop-shadow(0 6px 12px rgba(217,167,255,0.25));
  }
  25% {
    transform: translateY(-15px) rotateY(12deg) rotateX(-1deg) scale(1.02);
    filter: drop-shadow(0 10px 18px rgba(217,167,255,0.35));
  }
  50% {
    transform: translateY(0) rotateY(-7deg) rotateX(3deg) scale(1.01);
    filter: drop-shadow(0 12px 25px rgba(217,167,255,0.28));
  }
  75% {
    transform: translateY(-10px) rotateY(8deg) rotateX(-2deg) scale(1.018);
    filter: drop-shadow(0 8px 18px rgba(217,167,255,0.3));
  }
  100% {
    transform: translateY(0) rotateY(-10deg) rotateX(2deg) scale(1);
    filter: drop-shadow(0 6px 12px rgba(217,167,255,0.25));
  }
}

.hero__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: #d9bcf6;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin: 1rem 0;
}

.hero p {
  color: #d6cfcf;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn--primary {
    background: linear-gradient(158deg, #30263c, #6c348fde);
    color: #ffffffc7;
    box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
  transform: translateY(-2px);
  background: var(--color-primary);
  color: #2f3450;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.btn--ghost:hover {
 
  background: var(--color-primary);
  color: #2f3450;
}

.hero__card {
  position: relative;
  background: linear-gradient(135deg, rgba(184, 150, 255, 0.18), rgba(15, 20, 45, 0.95));
  padding: 2.4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero__card h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.hero__card p {
  color: #d6cfcf;
  margin-bottom: 1.5rem;
}

.hero__card .date {
  font-weight: 600;
  color: #d6cfcf;
}

.hero__card .link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--color-primary-strong);
  font-weight: 500;
}

.hero {
  padding: 5rem 0;
  min-height: 520px;
  display: flex;
  align-items: center;
}


/*
* {
  outline: 1px solid red !important;
}*/

.service-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #f5c16c; /* dourado suave, combina com seu site */
  margin-bottom: 0.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.moon {
  position: absolute;
  width: 160px;
  height: 160px;
  top: -60px;
  right: -40px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(184, 150, 255, 0.45));
  border-radius: 50%;
  filter: blur(0px);
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--color-accent);
}

.services {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(10, 13, 26, 0.9), rgba(10, 13, 26, 0.6));
}

.services h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin: 1rem 0 3rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: block;
  flex-direction: column;
  gap: 1.2rem;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(184, 150, 255, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.card__icon {
  font-size: 2.4rem;     /* maior = mais estético */
  display: inline-block;
  margin-bottom: 1.2rem; /* respira melhor com o título */
  line-height: 1;
}

.card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #f5c16cdb;
}

.card li {
  margin-bottom: 0.6rem;
}

.servicos-lista li:last-child {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.about {
  padding: 5rem 0;
}

.about__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.about__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:url('../img/image.webp') center/cover;
  box-shadow: var(--shadow-soft);
}

.about__image::after {
  content: '';
  position: absolute;
  inset: 8% 8% 12% 18%;
  border: 1px solid rgba(245, 193, 108, 0.35);
  border-radius: var(--radius-md);
}

.about__text p {
  color: #d6cfcf;
  line-height: 1.8;
}

.about__highlights {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.about__highlights strong {
  display: block;
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  color: var(--color-primary-strong);
}

.about__highlights span {
  color: #d6cfcf;
  max-width: 220px;
}

.about__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about__actions .btn {
  min-width: 0;
}

.about-page-hero {
  padding-top: 5srem;

}

.about-page-hero .hero__text p {
  max-width: 800px;
}

/* GRID DA HERO NA PÁGINA SOBRE */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero__image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

/* Mobile */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__image {
    order: -1;
    margin-bottom: 2rem;
  }

  .hero__image img {
    max-width: 420px;
    margin-inline: auto;
  }
}


.about-page-card {
  background: linear-gradient(160deg, rgba(15, 20, 45, 0.9), rgba(184, 150, 255, 0.2));
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-page-card h2 {
  font-family: 'Playfair Display', serif;
}

.about-page-card__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-text-muted);
  display: grid;
  gap: 0.5rem;
}

.journey {
  padding: 5rem 0;
}

.journey h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin: 1rem 0 3rem;
}

.timeline {
  display: grid;
  gap: 2rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  width: 2px;
  background: linear-gradient(180deg, rgba(184, 150, 255, 0.6), rgba(245, 193, 108, 0.4));
}

.timeline__item {
  position: relative;
  padding-left: 3rem;
}

.timeline__item::before {
  content: '';
  position: absolute;
  top: 0.35rem;
  left: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 6px rgba(184, 150, 255, 0.15);
}

.timeline__year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  background: rgba(184, 150, 255, 0.18);
  color: var(--color-primary-strong);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.timeline__item p {
  color: #d6cfcf;
  line-height: 1.75;
}

.approach {
  padding: 5rem 0;
  background: rgba(10, 13, 26, 0.65);
}

.approach h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin: 1rem 0 3rem;
}

.approach__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card--outline {
  border: 1px solid rgba(184, 150, 255, 0.18);
  background: rgba(15, 20, 45, 0.75);
}

.card--outline h3 {
  font-family: 'Playfair Display', serif;
}

.credentials {
  padding: 5rem 0;
}

.credentials h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin: 1rem 0 3rem;
}

.credentials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.credentials__item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid rgba(184, 150, 255, 0.12);
  backdrop-filter: blur(14px);
}

.credentials__item h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}

.credentials__item p {
  margin: 0;
  color: #d6cfcf;
  line-height: 1.7;
}

.page-quote {
  padding: 4.5rem 0;
  text-align: center;
}

.page-quote blockquote {
  margin: 0 auto 1.5rem;
  max-width: 720px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-family: 'Playfair Display', serif;
  line-height: 1.6;
}

.page-quote cite {
  color: #d6cfcf;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-cta {
  padding: 5rem 0 6rem;
}

.page-cta__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
  background: var(--color-surface);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 150, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.page-cta__content p {
  color: #d6cfcf;
  line-height: 1.8;
  margin-bottom: 0;
}
.testimonials {
  padding: 5rem 0;
  background: rgba(10, 13, 26, 0.65);
}

.testimonials__carousel {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* CARD REFINED */
.testimonials figure {
  background: rgba(56, 39, 71, 0.85);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(184, 150, 255, 0.18);
  backdrop-filter: blur(12px);

  /* NEW BEAUTIFUL EFFECTS */
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transition: all 0.35s ease;
  position: relative;
}

/* ✨ Subtle magical icon in the corner */
.testimonials figure::before {
  content: "✨";
  font-size: 1.2rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  opacity: 0.6;
}

/* HOVER UPGRADE */
.testimonials figure:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
  border-color: rgba(184, 150, 255, 0.32);
}

/* TEXT */
.testimonials blockquote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #d6cfcf;
  font-style: italic;
}

/* AUTHOR */
.testimonials figcaption {
  margin-top: 1.5rem;
  color: #d6cfcf;
  font-size: 0.92rem;
}


.cta {
  padding: 5rem 0 6rem;
}

.cta__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: start;
  background: var(--color-surface);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 150, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.cta__content p {
  color: #d6cfcf;
  line-height: 1.8;
}

.cta__form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

input,
select,
textarea {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(184, 150, 255, 0.25);
  background: rgba(10, 13, 26, 0.8);
  color: #d6cfcf;
  padding: 0.8rem 0.9rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline:none;
  border: 2px solid #d9a7ffb8;
  box-shadow: 0 0 0 3px rgba(217, 167, 255, 0.3);
  transition: all 0.25s ease;
}

textarea {
  resize: vertical;
}


.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(184, 150, 255, 0.12);
  background: rgba(6, 8, 17, 0.95);
  text-align: center;
  
}

.footer__title{
  font-family: 'Poppins', sans-serif; /* você já usa no site, combina perfeito */
  font-weight: 600;
  font-size: 1.15rem;  /* maior e mais destacado */
  letter-spacing: 0.5px;
  color: #ffffff; /* se quiser mais brilho que o texto normal */
  margin-bottom: 0.5rem;
  text-align: center;
}

.footer__section {
  justify-self: center;
  align-self: center;
}

.footer__content {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer p,
.footer a {
  color: #d6cfcf;
  font-size: 0.9rem;
  
}

.footer ul li::marker{
  color: transparent;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.footer__copy {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 1rem;
  color: rgba(243, 244, 250, 0.45);
}

@media (max-width: 900px) {
  .hero__content,
  .about__content,
  .cta__content,
  .page-cta__content {
    grid-template-columns: 1fr;
  }

  .hero__card {
    order: -1;
  }

  .timeline::before {
    left: 8px;
  }

  .timeline__item {
    padding-left: 2.5rem;
  }
}

@media (max-width: 720px) {
  .topbar .container {
    padding-inline: 0;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 1.5rem;
    background: rgba(10, 13, 26, 0.96);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--shadow-soft);
    transform: scale(0.95);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
  }

  .nav--open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 540px) {
  .hero {
    padding: 5rem 0 3rem;
  }

  .services,
  .about,
  .journey,
  .approach,
  .credentials,
  .testimonials,
  .cta,
  .page-cta {
    padding: 4rem 0;
  }

  .cta__content {
    padding: 2rem;
  }

  .page-cta__content {
    padding: 2rem;
  }
}

.about-page-hero {
  padding-top: 5rem; /* pushes content below the fixed header */
  padding-bottom: 6rem; /* gives breathing room at the bottom */
  text-align: center;
}

.about-page-hero .hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* no vertical centering now */
  gap: 1.5rem;
}

.about-page-hero .hero__text {
  max-width: 800px;
  margin: 0 auto;
}
