﻿:root {
  --color-primaria: #b49a7d;
  --color-secundaria: #7f8b6f;
  --color-apoio: #d7c6b3;
  --color-bg: #f7f2ea;
  --color-relevo: #e8dfd4;
  --color-paper: #fdfbf7;
  --color-texto: #3b342f;
  --color-texto-suave: #5a514a;
  --font-base: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-titulo: "Playfair Display", "Georgia", serif;
  --shadow-card: 0 12px 35px rgba(0, 0, 0, 0.08);
  --radius: 14px;
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-base);
  background-color: var(--color-bg);
  background-image: radial-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 0),
    linear-gradient(120deg, rgba(213, 197, 177, 0.12), rgba(255, 255, 255, 0));
  background-size: 120px 120px, 100%;
  color: var(--color-texto);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

.announcement-bar {
  width: 100%;
  text-align: center;
  font-family: var(--font-base);
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 500;
  color: #6b5f56;
  background: #efe5d9;
  padding: 6px 8px;
  border-bottom: 1px solid #e2d5c6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  color: var(--color-primaria);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  background: #f9f6f4;
  border-bottom: 1px solid #e8dfd7;
  padding: 12px 0;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 24px;
}

.topbar__inner > * {
  align-self: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8b59f, #b8a58c);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fdfbf7;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand__text small {
  display: block;
  color: #6b6456;
  font-weight: 500;
  line-height: 1.4;
}

.topbar__nav {
  display: none;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  justify-content: center;
}

.topbar__actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.topbar__nav a {
  color: #6b6456;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 0;
  font-size: 15px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.topbar__nav a:hover {
  color: #514a3e;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(81, 74, 62, 0.6);
}

.topbar .button {
  justify-self: end;
  padding: 8px 20px;
  border-radius: 22px;
  height: auto;
  white-space: nowrap;
}

.hero {
  position: relative;
  color: #fdfbf7;
  padding: 120px 18px 90px;
  text-align: center;
}

.hero--cover {
  background:
    linear-gradient(180deg, rgba(46, 35, 28, 0.15), rgba(46, 35, 28, 0.45)),
    url("photos/picture_6.jpeg") 15% center/cover no-repeat;
  background-attachment: fixed;
}

.hero__content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero__content h1 {
  font-family: var(--font-titulo);
  font-size: clamp(32px, 6vw, 56px);
  margin: 10px 0 10px;
  line-height: 1.25;
}

.quote {
  font-weight: 600;
  font-style: italic;
  color: rgba(253, 251, 247, 0.75);
}

.quote-author {
  margin: 0 0 14px;
  color: #f3ece3;
  font-weight: 600;
}

.lead {
  font-size: 19px;
  color: #f7f2ea;
  margin: 0 auto 18px;
  max-width: 720px;
}

.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  justify-content: center;
}

.hero .pill-list li {
  background: rgba(253, 251, 247, 0.16);
  border-color: rgba(253, 251, 247, 0.22);
  color: #fdfbf7;
}

.hero__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  color: #f4ede3;
  margin: 0 0 10px;
}

.lead + .hero__actions {
  margin-top: 8px;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.pill-list li {
  background: var(--color-paper);
  border: 1px solid #d6c9c1;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
  color: #6b6456;
}

.section {
  padding: 48px 18px;
}

.band.section {
  padding: 48px 0;
}

.band .container {
  padding: 0 18px;
  position: relative;
  overflow: hidden;
}

.band .container > *:not(.section-figure) {
  position: relative;
  z-index: 1;
}

.section-figure {
  position: absolute;
}

.work-figure {
  right: -30px;
  top: 40px;
  width: 28%;
  max-width: 340px;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.14));
}

.band-sand {
  background-color: #f8f3ec;
  background-image:
    radial-gradient(rgba(181, 163, 140, 0.08) 1.5px, transparent 0),
    radial-gradient(rgba(255, 255, 255, 0.7) 1px, transparent 0);
  background-size: 120px 120px, 100px 100px;
  background-position: 0 0, 40px 40px;
}

.band-rose {
  background-color: #efe5d9;
  background-image:
    radial-gradient(rgba(191, 154, 125, 0.12) 1px, transparent 0),
    radial-gradient(rgba(255, 255, 255, 0.5) 0.8px, transparent 0);
  background-size: 16px 16px, 22px 22px;
  background-position: 0 0, 10px 12px;
}

.section h2 {
  font-family: var(--font-titulo);
  font-size: clamp(26px, 4.2vw, 38px);
  margin: 6px 0 16px;
  line-height: 1.3;
}

.section#sobre-mim p {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: left;
}

.section#sobre-mim {
  background: #f3ede6;
  color: #333333;
}

.section#sobre-mim .section__content,
.section#sobre-mim .section__content p {
  color: #333333;
}

.section#sobre-mim .button {
  background: linear-gradient(135deg, #a65f37, #bf7a4f);
}

.section#sobre-mim .section__image {
  display: flex;
  justify-content: center;
}

.section#sobre-mim .section__image img {
  width: 90%;
  max-width: 440px;
  border-radius: 16px;
}

.section-subtitle {
  font-size: 18px;
  margin: 0 0 16px;
  color: #6b6456;
}

.circle-highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
  padding: 6px 10px;
  background: transparent;
}

.circle-highlight::after {
  position: absolute;
  left: -20px;
  top: -14px;
  width: calc(100% + 40px);
  height: calc(100% + 28px);
  background-repeat: no-repeat;
  background-size: 110% 110%;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 140'%3E%3Cpath d='M24 82 C 60 16, 178 10, 210 56 C 232 90, 186 124, 94 118 C 58 116, 30 106, 36 84' fill='none' stroke='%237f8b6f' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' stroke-dasharray='620' stroke-dashoffset='620'%3E%3Canimate attributeName='stroke-dashoffset' values='620;60;620' dur='2.5s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E");
  transform: rotate(-2deg);
  pointer-events: none;
  z-index: 0;
}

.circle-animate {
  animation: circle-pop 0.9s ease-out both;
}

@keyframes circle-pop {
  0% {
    transform: scale(0.96);
    box-shadow: 0 0 0 0 rgba(166, 95, 55, 0.12);
  }
  60% {
    transform: scale(1.02);
    box-shadow: 0 0 0 8px rgba(166, 95, 55, 0.08);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(166, 95, 55, 0);
  }
}

.section p {
  margin: 0 0 12px;
  color: #6b6456;
}

/* Tipografia unificada para textos nas seções */
.section p,
.section li,
.section .card p,
.section .card-answer,
.section .work-topic p,
.section .work-subtitle,
.section .para-quem-grid .card p {
  font-family: var(--font-base);
  font-size: 1.05rem;
  line-height: 1.7;
}

.intro-highlight {
  position: relative;
  overflow: hidden;
  background: #fdfbf7;
  padding: 68px 18px;
}

.intro-highlight__grid {
  display: grid;
  gap: 24px;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
}

.intro-highlight__text h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 12px;
}

.intro-highlight__text p {
  max-width: 520px;
  margin-bottom: 16px;
}

.intro-highlight__visual {
  position: relative;
  min-height: 260px;
}

.intro-highlight__pattern {
  position: absolute;
  inset: -22px;
  background-image: radial-gradient(circle at 20% 20%, rgba(191, 154, 125, 0.28) 18%, transparent 20%),
    radial-gradient(circle at 70% 10%, rgba(127, 139, 111, 0.18) 16%, transparent 18%),
    radial-gradient(circle at 45% 70%, rgba(191, 154, 125, 0.2) 20%, transparent 22%),
    radial-gradient(circle at 85% 60%, rgba(127, 139, 111, 0.2) 12%, transparent 14%);
  background-color: #f4eadf;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.08));
  border-radius: 26px;
}

.intro-highlight__image {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.intro-highlight__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-group {
  margin-top: 0;
}

.work-grid {
  display: grid;
  gap: 32px;
}

.work-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.work-split__image {
  justify-self: center;
  align-self: start;
}

.work-split__image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16), 0 8px 18px rgba(0, 0, 0, 0.08);
  margin-top: 350px;
}

.work-block h3 {
  font-family: var(--font-titulo);
  font-size: 22px;
  margin: 0 0 10px;
}

.work-subtitle {
  font-size: 16px;
  margin: 0 0 12px;
  color: #6b6456;
}

.work-intro {
  margin-bottom: 24px;
}

.work-topic {
  margin-top: 28px;
}

.work-topic h3 {
  font-family: var(--font-titulo);
  font-size: 22px;
  margin: 0 0 18px;
}

.work-topic p {
  margin: 0 0 18px;
}

.work-topic p:last-child {
  margin-bottom: 0;
}

.two-col {
  display: grid;
  gap: 22px;
}

.section#sobre-mim .two-col {
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 1fr);
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.section#sobre-mim .section__image {
  justify-self: end;
}

.section#sobre-mim .section__content {
  justify-self: start;
}

.cards {
  display: grid;
  gap: 16px;
  text-align: center;
  align-items: start;
  margin-top: 20px
}

.para-quem-grid {
  text-align: left;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.para-quem-grid .card {
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid #e3d9d0;
  padding: 14px 16px;
}

.para-quem-grid .card h3 {
  color: #222;
  text-align: left;
  width: 100%;
  margin-bottom: 8px;
}

.card {
  background: var(--color-paper);
  border: 1px solid #d6c9c1;
  border-radius: 15px;
  padding: 4px 0px 0px;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px;
  align-self: start;
  overflow: hidden;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0px;
  font-size: 17px;
  color: var(--color-primaria);
  text-align: center;
  width: 95%;
}

.card p:last-child {
  margin-bottom: 0;
}

.card-answer {
  margin: 0;
  color: #6b6456;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, max-height 0.2s ease, visibility 0.2s ease;
}

.card-toggle:focus-visible {
  outline: 2px solid var(--color-primaria);
  outline-offset: 4px;
}

.card-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  border-color: #c9b9ad;
}

.card-toggle.is-open {
  border-color: var(--color-primaria);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
}

.card-toggle:hover .card-answer,
.card-toggle:focus-within .card-answer,
.card-toggle.is-open .card-answer {
  opacity: 1;
  visibility: visible;
  max-height: 240px;
  margin-top: 6px;
  transform: translateY(0);
}

.grid {
  display: grid;
  gap: 18px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}

.checklist li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-secundaria);
  font-weight: 700;
}

.note {
  margin-top: 14px;
  background: var(--color-paper);
  border-left: 4px solid var(--color-apoio);
  padding: 12px 14px;
  border-radius: var(--radius);
  color: #6b6456;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.steps li {
  background: var(--color-paper);
  border: 1px solid #d6c9c1;
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: var(--shadow-card);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--color-paper);
  border: 1px solid #d6c9c1;
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: var(--shadow-card);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-texto);
}

.faq-list p {
  margin: 8px 0 0;
  color: #6b6456;
}

.quote-bridge {
  text-align: center;
  padding: 6px 18px 2px;
}

.erasing-quote {
  font-style: italic;
  color: #333333;
  font-family: var(--font-base);
  font-size: 1.1rem;
  display: inline-block;
  animation: erase-loop 3s ease-in-out infinite;
}

@keyframes erase-loop {
  0%, 20% { opacity: 1; }
  50% { opacity: 0.2; }
  80%, 100% { opacity: 1; }
}

.muted {
  color: #6a6a6a;
}

.contact {
  background: var(--color-paper);
  border-radius: var(--radius);
  border: 1px solid #d6c9c1;
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 24px;
  position: relative;
  margin: 15px auto;
}

.contact h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 10px;
}

.contact-list span {
  color: var(--color-texto);
  font-weight: 600;
  margin-right: 8px;
}

.contact__card {
  background: linear-gradient(135deg, #f7efe8, #f1e7df);
  border: none;
  border-radius: 0;
  padding: 14px;
}

.contact__aside-photo {
  position: absolute;
  right: -420px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  opacity: 0.38;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.contact__aside-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.contact-form h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-family: var(--font-base);
}

.contact-form form {
  display: grid;
  gap: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.form-control {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-base);
  font-size: 14px;
  color: var(--color-texto);
}

.form-control input,
.form-control textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #a69286;
  background: transparent;
  padding: 8px 4px;
  font-family: var(--font-base);
  font-size: 15px;
  color: var(--color-texto);
  border-radius: 0;
  outline: none;
}

.form-control input:focus,
.form-control textarea:focus {
  border-bottom-color: var(--color-primaria);
}

.form-control textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  text-align: center;
}

.contact__cta {
  margin-top: 12px;
}

.section__cta {
  margin-top: 16px;
}

.section__cta.center {
  text-align: center;
}

.cta-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primaria), var(--color-secundaria));
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: 0 12px 26px rgba(118, 98, 78, 0.2);
}

.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(118, 98, 78, 0.24);
}

.button--ghost {
  background: transparent;
  color: var(--color-primaria);
  border: 1px solid var(--color-primaria);
  box-shadow: none;
}

.button--ghost:hover {
  background: rgba(180, 154, 125, 0.08);
}

.footer {
  padding: 10px 18px;
  border-top: 1px solid #cbbeb5;
  background: var(--color-paper);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__links {
  display: flex;
  gap: 10px;
}

.icon-link {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  color: #a69286;
  transition: transform 0.12s ease, opacity 0.12s ease;
}

.icon-link svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.4;
}

.icon-link:hover {
  transform: translateY(-1px);
  opacity: 0.85;
  text-decoration: none;
}

.icon-link--cta {
  width: 34px;
  height: 34px;
  color: var(--color-primaria);
  border: 1px solid var(--color-primaria);
  border-radius: 50%;
  background: rgba(191, 21, 100, 0.06);
  box-shadow: var(--shadow-card);
}

.icon-link--cta svg {
  width: 20px;
  height: 20px;
}

.quote-highlight {
  position: relative;
  display: inline-block;
  font-style: italic;
  background: linear-gradient(90deg, rgba(191, 21, 100, 0.06), rgba(191, 21, 100, 0.12));
  padding: 4px 6px;
  border-radius: 6px;
}

.slide-quote {
  opacity: 0;
  transform: translateX(-12px);
  animation: slide-in 0.8s ease forwards;
}

@keyframes slide-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  z-index: 20;
}

.floating-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-apoio);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}

.floating-btn svg {
  width: 30px;
  height: 30px;
}

.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  opacity: 0.92;
}

.floating-btn--whatsapp {
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.floating-btn--whatsapp svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.28));
}

.floating-btn--whatsapp:hover {
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.32);
}

.floating-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
@media (min-width: 768px) {
  .topbar__nav {
    display: inline-flex;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 96px 18px 88px;
  }

  .two-col {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .section#sobre-mim .two-col {
    grid-template-columns: minmax(360px, 1fr) minmax(420px, 1fr);
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .work-figure {
    display: block;
  }

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

  .contact {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

@media (min-width: 1100px) {
  .topbar {
    border: none;
  }

  .hero {
    padding-top: 60px;
  }

  .section {
    padding: 60px 18px;
  }
}

@media (max-width: 900px) {
  .work-figure {
    display: none;
  }

  .work-split {
    grid-template-columns: 1fr;
  }

  .work-split__image {
    order: -1;
    max-width: 520px;
    width: 100%;
  }

  .intro-highlight__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intro-highlight__text p {
    margin-left: auto;
    margin-right: auto;
  }

  .intro-highlight__visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .contact__aside-photo {
    position: static;
    width: 180px;
    margin: 10px auto 0;
    opacity: 0.32;
  }
}











