* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0f1014;
  --bg-soft: #181920;
  --bg-soft-alt: #1f2028;
  --card: #181920;
  --card-soft: #20212a;
  --primary: #e7a9b4;      /* rosa nude sofisticado */
  --primary-soft: #f6d8df;
  --accent: #f1e3c3;       /* toque dourado suave */
  --text: #e5e7eb;
  --muted: #9ca3af;
  --line: rgba(255, 255, 255, 0.06);
  --radius: 18px;
  --radius-lg: 24px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
  --shadow-subtle: 0 12px 28px rgba(0, 0, 0, 0.35);
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #20202a 0, #050509 55%, #020206 100%);
  color: var(--text);
  overflow-x: hidden; /* evita scroll lateral no mobile */
}

/* GENÉRICOS */

.container {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 80px 0;
}

.section-contrast {
  padding: 80px 0;
  background: radial-gradient(circle at top left, #252534 0, #101016 55%, #050509 100%);
}

.section-soft {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(247, 226, 229, 0.04), rgba(16, 16, 22, 0.9));
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading.center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px auto;
}

.section-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-soft);
  display: inline-block;
  margin-bottom: 10px;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-heading p {
  color: var(--muted);
}

/* HEADER / NAV */

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 10, 0.92),
    rgba(5, 5, 10, 0.7)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, var(--primary), #b37483);
  color: #120f12;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  font-size: 0.98rem;
}

.brand-tagline {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  width: 100%;
}

/* BOTÕES */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  padding: 11px 20px;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  background: #181820;
  color: var(--text);
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.82rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #b7798b);
  color: #1b1315;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.65);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.55);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
}

/* NAV MOBILE */

.nav-toggle {
  display: none;
  width: 34px;
  height: 28px;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: space-between;
  padding: 3px 2px;
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 999px;
}

/* HERO */

.hero {
  padding: 70px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(231, 169, 180, 0.08);
  border: 1px solid rgba(231, 169, 180, 0.3);
  font-size: 0.78rem;
  color: var(--primary-soft);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero p {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 520px;
  margin-bottom: 22px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-highlight {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  font-size: 0.8rem;
}

.hero-highlight div {
  padding: 12px 12px;
  border-radius: 14px;
  background: radial-gradient(
    circle at top left,
    rgba(231, 169, 180, 0.13),
    rgba(10, 10, 18, 0.9)
  );
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-highlight strong {
  display: block;
  margin-bottom: 4px;
}

/* HERO VISUAL */

.hero-visual {
  position: relative;
}

/* cartão principal da foto */
.hero-main-card {
  background: radial-gradient(circle at top, #272430, #13121a);
  padding: 18px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* container da foto */
.hero-photo-placeholder {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* foto da carla */
#foto-carla {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.logo2 {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

#foto-cliente1 {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.hero-badge strong {
  display: block;
}

.hero-floating-card {
  position: absolute;
  right: -10px;
  bottom: -26px;
  width: 220px;
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: rgba(15, 15, 25, 0.96);
  border: 1px solid rgba(231, 169, 180, 0.4);
  box-shadow: var(--shadow-subtle);
  font-size: 0.78rem;
}

.hero-floating-card p {
  margin-bottom: 6px;
  color: var(--primary-soft);
}

.hero-floating-card span {
  color: var(--muted);
}

/* ESPECIALIDADES */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-subtle);
}

.card-tag {
  display: inline-flex;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(231, 169, 180, 0.18);
  color: var(--primary-soft);
  margin-bottom: 10px;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.card-list {
  list-style: none;
  font-size: 0.86rem;
  color: var(--text);
}

.card-list li {
  padding-left: 14px;
  position: relative;
  margin-bottom: 4px;
}

.card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-soft);
}

/* EXPERIÊNCIA */

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 30px;
  align-items: flex-start;
}

.experience-points {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.experience-points div {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(10, 10, 18, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.experience-points strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.experience-points p {
  font-size: 0.86rem;
  color: var(--muted);
}

.experience-card {
  background: rgba(8, 8, 14, 0.9);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  border: 1px solid rgba(241, 227, 195, 0.25);
  box-shadow: var(--shadow-subtle);
  font-size: 0.9rem;
}

.experience-card h3 {
  margin-bottom: 10px;
}

.experience-card ul {
  list-style: none;
  margin-bottom: 10px;
}

.experience-card li {
  margin-bottom: 6px;
  padding-left: 14px;
  position: relative;
}

.experience-card li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--primary-soft);
}

.small {
  font-size: 0.8rem;
  color: var(--muted);
}

/* PORTFÓLIO */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.portfolio-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
}

.portfolio-thumb {
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(231, 169, 180, 0.34),
    rgba(20, 20, 26, 0.9)
  );
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

/* DEPOIMENTOS */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial {
  background: rgba(10, 10, 16, 0.86);
  border-radius: 16px;
  padding: 20px 18px;
  border: 1px solid rgba(231, 169, 180, 0.25);
  font-size: 0.9rem;
}

.testimonial p {
  color: var(--primary-soft);
  margin-bottom: 8px;
}

.testimonial-name {
  font-size: 0.8rem;
  color: var(--muted);
}

/* CONTATO / AGENDA */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 28px;
}

.contact-list {
  list-style: none;
  margin: 18px 0 20px;
  font-size: 0.9rem;
}

.contact-list li {
  margin-bottom: 5px;
}

.contact-form {
  background: rgba(5, 5, 10, 0.96);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  border: 1px solid rgba(241, 227, 195, 0.3);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.contact-form h3 {
  margin-bottom: 6px;
}

.contact-form label {
  display: block;
  font-size: 0.82rem;
  margin-top: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  margin-top: 4px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #07070b;
  padding: 9px 10px;
  color: var(--text);
  font-size: 0.84rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 80px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* FOOTER */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 0 24px;
  background: #050509;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
}

/* RESPONSIVO */

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 28px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-highlight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .section,
  .section-contrast,
  .section-soft {
    padding: 56px 0;
  }

  .header-inner {
    padding: 10px 0;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .brand-tagline {
    font-size: 0.72rem;
  }

  .nav {
    position: absolute;
    top: 62px;
    right: 16px;
    left: 16px;
    background: rgba(5, 5, 10, 0.98);
    border-radius: 14px;
    padding: 10px 12px;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-main-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 14px;
    max-width: 320px;
  }

  .hero-highlight {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    margin-top: 18px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .section h2 {
    font-size: 1.6rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
  }
}
