/*
Theme Name: Valora Projects
Theme URI: https://valoraprojects.com
Author: Valora Projects
Author URI: https://valoraprojects.com
Description: Tema WordPress para Valora Projects — Remodelações Chave na Mão
Version: 1.0.0
License: GPL v2 or later
Text Domain: valorawp
*/

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  --background:         hsl(36,  22%, 96%);
  --foreground:         hsl(30,  10%, 14%);
  --surface:            hsl(34,  20%, 92%);
  --surface-deep:       hsl(30,  14%, 88%);
  --muted:              hsl(32,  14%, 90%);
  --muted-fg:           hsl(28,   8%, 38%);
  --accent:             hsl(32,  32%, 52%);
  --ink:                hsl(28,  14%, 10%);
  --bone:               hsl(36,  28%, 94%);
  --border:             hsl(30,  14%, 82%);
  --destructive:        hsl(0,   60%, 42%);

  --radius:             0.25rem;
  --shadow-elegant:     0 30px 80px -40px hsl(28 14% 10% / 0.25);
  --shadow-soft:        0 8px  30px -12px hsl(28 14% 10% / 0.12);
  --gradient-veil:      linear-gradient(180deg, hsl(28 14% 10% / 0) 0%, hsl(28 14% 10% / 0.55) 100%);
  --ease-out:           cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Reset / Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font: inherit;
  color: inherit;
  border-radius: 0;
}

.btn-hero-primary {
  max-width: 180px;
  font-size: 10px !important;
  padding: 15px !important;
}

::selection { background: var(--ink); color: var(--bone); }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 300;
  letter-spacing: -0.01em;
}

/* ─── Utilities ──────────────────────────────────────────────── */
.font-display {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.navbar-nav {
  list-style: none !important;
}

@media (min-width: 768px)  { .container { padding-inline: 3rem; } }
@media (min-width: 1024px) { .container { padding-inline: 5rem; } }

.eyebrow {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted-fg);
}

.hover-ul {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.6s var(--ease-out);
}
.hover-ul:hover { background-size: 100% 1px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ken-burns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.12); }
}

.anim-fade-up {
  animation: fade-up 1s var(--ease-out) both;
}
.anim-ken-burns {
  animation: ken-burns 18s ease-out both;
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: background 0.5s ease, border-color 0.5s ease;
}
#navbar.scrolled {
  background: hsl(36 22% 96% / 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid hsl(30 14% 82% / 0.6);
}

.navbar-inner {
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
    align-items: center;
}
  .navbar-logo img {
    display: block;
    width: auto;
    height: 3.75rem;
}
  @media (min-width: 768px) { .navbar-logo img { height: 6rem; } }

.navbar-logo .logo-light { display: block; }
.navbar-logo .logo-dark  { display: none; }
#navbar.scrolled .navbar-logo .logo-light { display: none; }
#navbar.scrolled .navbar-logo .logo-dark  { display: block; }

.navbar-nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .navbar-nav { display: flex; } }

.navbar-nav a {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: hsl(30 10% 14% / 0.8);
  transition: color 0.2s;
}
.navbar-nav a:hover { color: var(--foreground); }

#navbar:not(.scrolled) .navbar-nav a { color: hsl(0 0% 100% / 0.9); }
#navbar:not(.scrolled) .navbar-nav a:hover { color: #fff; }
#navbar:not(.scrolled) .menu-btn { color: #fff; }

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding-inline: 1.25rem;
  background: var(--ink);
  color: var(--bone);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--foreground); }

.navbar-cta { display: none; }
@media (min-width: 1024px) { .navbar-cta { display: inline-flex; } }

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  margin-right: -0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}
@media (min-width: 1024px) { .menu-btn { display: none; } }

.menu-btn svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

#mobile-menu {
  display: none;
  background: var(--background);
  border-top: 1px solid var(--border);
}
#mobile-menu.open { display: block; }
@media (min-width: 1024px) { #mobile-menu { display: none !important; } }

.mobile-menu-inner {
  padding-block: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-menu-inner a {
  font-size: 1rem;
  color: hsl(30 10% 14% / 0.9);
}
.mobile-menu-inner .btn-cta {
  margin-top: 0.5rem;
  height: 2.75rem;
}

/* ─── HERO ───────────────────────────────────────────────────── */
#top {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
}
@supports not (min-height: 100svh) {
  #top { min-height: 100vh; }
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: var(--gradient-veil);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: hsl(28 14% 10% / 0.55);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 4rem;
  padding-top: 8rem;
}
@supports not (min-height: 100svh) {
  .hero-content { min-height: 100vh; }
}
@media (min-width: 768px) { .hero-content { padding-bottom: 6rem; } }

.hero-inner { max-width: 56rem; }

.hero-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: hsl(36 28% 94% / 0.8);
  margin-bottom: 1.5rem;
  animation-delay: 100ms;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.75rem, 7vw, 6.25rem);
  line-height: 0.98;
  color: var(--bone);
  text-wrap: balance;
  animation-delay: 250ms;
}

.hero-sub {
  margin-top: 2rem;
  max-width: 36rem;
  color: hsl(36 28% 94% / 0.8);
  font-size: 1rem;
  line-height: 1.7;
  animation-delay: 450ms;
}
@media (min-width: 768px) { .hero-sub { font-size: 1.125rem; } }

.hero-actions {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  animation-delay: 650ms;
}

.btn-hero-primary {
  display: inline-flex;
  height: 3rem;
  align-items: center;
  padding-inline: 2rem;
  background: var(--bone);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  transition: background 0.2s;
}
.btn-hero-primary:hover { background: hsl(36 28% 94% / 0.9); }

.btn-hero-link {
  display: inline-flex;
  height: 3rem;
  align-items: center;
  padding-inline: 0.5rem;
  color: hsl(36 28% 94% / 0.9);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.hero-footer {
  margin-top: 5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: hsl(36 28% 94% / 0.7);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  animation-delay: 850ms;
}

.hero-discover {
  display: none;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.2s;
}
.hero-discover:hover { color: var(--bone); }
@media (min-width: 768px) { .hero-discover { display: inline-flex; } }

.hero-discover svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ─── INTRO ──────────────────────────────────────────────────── */
#intro {
  background: var(--background);
  padding-block: 7rem;
}
@media (min-width: 768px) { #intro { padding-block: 10rem; } }

.intro-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .intro-grid { grid-template-columns: repeat(12, 1fr); gap: 3rem; }
  .intro-label  { grid-column: span 4; }
  .intro-body   { grid-column: span 8; }
}

.intro-body p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  line-height: 1.15;
  color: var(--foreground);
  text-wrap: balance;
}

.intro-pillars {
  margin-top: 3rem;
  display: grid;
  gap: 2.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}
@media (min-width: 640px) { .intro-pillars { grid-template-columns: repeat(3, 1fr); } }

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--accent);
}
.pillar-text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.6;
}

/* ─── SERVICES ───────────────────────────────────────────────── */
#servicos {
  background: var(--surface);
  padding-block: 7rem;
}
@media (min-width: 768px) { #servicos { padding-block: 9rem; } }

.services-header {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .services-header { grid-template-columns: repeat(12, 1fr); margin-bottom: 6rem; }
  .services-header .col-label { grid-column: span 4; }
  .services-header .col-title { grid-column: span 8; }
}

.services-header h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  color: var(--foreground);
  text-wrap: balance;
}

.services-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
}
.service-card:hover .service-img { transform: scale(1.05); }

.service-img-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--muted);
}
.service-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease-out;
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2rem;
}
@media (min-width: 768px) { .service-body { padding: 2.5rem; } }

.service-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--accent);
}

.service-title {
  margin-top: 1.5rem;
  font-size: 1.875rem;
  color: var(--foreground);
}
.service-link {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--foreground);
  width: fit-content;
}
.service-link svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ─── PORTFOLIO ──────────────────────────────────────────────── */
#portefolio {
  background: var(--background);
  padding-block: 7rem;
}
@media (min-width: 768px) { #portefolio { padding-block: 9rem; } }

.portfolio-header {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .portfolio-header { grid-template-columns: repeat(12, 1fr); }
  .portfolio-header .col-label { grid-column: span 4; }
  .portfolio-header .col-title {
    grid-column: span 8;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

.portfolio-header h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  text-wrap: balance;
  max-width: 40rem;
}

.featured {
  display: grid;
  background: var(--surface);
}
@media (min-width: 768px) { .featured { grid-template-columns: repeat(12, 1fr); } }

.featured-img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
@media (min-width: 768px) {
  .featured-img-wrap { grid-column: span 8; aspect-ratio: auto; min-height: 480px; }
}
.featured-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s ease-out;
}
.featured:hover .featured-img { transform: scale(1.04); }

.featured-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .featured-info { grid-column: span 4; padding: 3rem; }
}

.featured-tag { color: var(--accent); }

.featured-name {
  margin-top: 1.5rem;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  color: var(--foreground);
}

.featured-dl {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
}
.featured-dl .row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}
.featured-dl dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.featured-dl dd { color: var(--foreground); }

.featured-desc {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

.projects-grid {
  margin-top: 3rem;
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }

.project-item { display: block; }

.project-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--muted);
}

/* ─── BEFORE / AFTER HOVER ───────────────────────────────────── */
.project-img-wrap { position: relative; }

.ba-depois,
.ba-antes {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.65s ease, transform 1.4s ease-out;
}
.ba-depois { opacity: 1; z-index: 1; transform: scale(1); }
.ba-antes  { opacity: 0; z-index: 2; transform: scale(1.05); }
.project-item:hover .ba-depois { opacity: 0; transform: scale(1.05); }
.project-item:hover .ba-antes  { opacity: 1; transform: scale(1); }

.ba-label {
  position: absolute;
  bottom: 1rem; right: 1rem;
  z-index: 5;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.52);
  color: #fff;
  padding: 0.3rem 0.65rem;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.ba-label-antes  { opacity: 0; }
.ba-label-depois { opacity: 1; }
.project-item:hover .ba-label-depois { opacity: 0; }
.project-item:hover .ba-label-antes  { opacity: 1; }

.project-meta {
  margin-top: 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.project-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--foreground);
}
.project-type {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted-fg);
}
.project-loc {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted-fg);
}

/* ─── PROCESS ────────────────────────────────────────────────── */
#processo {
  background: var(--ink);
  color: var(--bone);
  padding-block: 7rem;
}
@media (min-width: 768px) { #processo { padding-block: 9rem; } }

.process-header {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .process-header { grid-template-columns: repeat(12, 1fr); margin-bottom: 6rem; }
  .process-header .col-label { grid-column: span 4; }
  .process-header .col-title { grid-column: span 8; }
}

.process-header h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  color: var(--bone);
  text-wrap: balance;
}
.process-header p {
  margin-top: 2rem;
  max-width: 36rem;
  color: hsl(36 28% 94% / 0.7);
  line-height: 1.7;
}

.process-steps {
  display: grid;
  gap: 1px;
  background: hsl(36 28% 94% / 0.1);
}
@media (min-width: 768px) { .process-steps { grid-template-columns: repeat(3, 1fr); } }

.step {
  background: var(--ink);
  padding: 2rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) { .step { padding: 2.5rem; } }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  color: var(--accent);
}
.step-title {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  color: var(--bone);
}
.step-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: hsl(36 28% 94% / 0.65);
  line-height: 1.6;
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
#sobre {
  background: var(--background);
  padding-block: 7rem;
}
@media (min-width: 768px) { #sobre { padding-block: 9rem; } }

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: repeat(12, 1fr); } }

@media (min-width: 768px) { .about-img-col { grid-column: span 6; } }

.about-img-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--muted);
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) { .about-body { grid-column: span 6; } }

.about-body h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  color: var(--foreground);
  text-wrap: balance;
}

.about-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: hsl(30 10% 14% / 0.85);
}
.about-list li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}
.about-list .dash {
  font-family: 'Cormorant Garamond', serif;
  color: var(--accent);
}

.about-note {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--foreground);
  line-height: 1.75;
  max-width: 30rem;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--accent);
  background: hsl(32 20% 88% / 0.35);
}

.about-team {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.about-team .about-list {
  margin-top: 0;
}

.about-team .about-list li {
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted-fg);
  padding-block: 0.65rem;
}

.about-team .about-list .dash {
  color: var(--accent);
  font-size: 0.95rem;
}

.about-team .about-list strong {
  color: var(--foreground);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ─── FAQS ───────────────────────────────────────────────────── */
#faqs {
  background: var(--surface);
  padding-block: 7rem;
}
@media (min-width: 768px) { #faqs { padding-block: 9rem; } }

.faqs-grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 768px) {
  .faqs-grid { grid-template-columns: repeat(12, 1fr); }
  .faqs-sidebar { grid-column: span 4; }
  .faqs-list    { grid-column: span 8; }
}

.faqs-sidebar h2 {
  margin-top: 1.5rem;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.05;
  color: var(--foreground);
  text-wrap: balance;
}
.faqs-sidebar p {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
  max-width: 18rem;
}

.accordion {
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--foreground);
}

.accordion-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.3s var(--ease-out);
}

.accordion-item.open .accordion-icon { transform: rotate(180deg); }

.accordion-content {
  display: none;
  padding-bottom: 2rem;
  padding-right: 2rem;
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.7;
}
.accordion-item.open .accordion-content { display: block; }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
#testemunhos {
  background: var(--surface);
  padding-block: 7rem;
}
@media (min-width: 768px) { #testemunhos { padding-block: 9rem; } }

.testimonials-header {
  margin-bottom: 4rem;
}
.testimonials-header h2 {
  margin-top: 1rem;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  color: var(--foreground);
  text-wrap: balance;
}

.testimonials-grid {
  display: grid;
  gap: 2px;
  background: var(--border);
}

.testimonial {
  background: var(--surface);
  padding: 1.5rem;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
}
@media (min-width: 768px) { .testimonial { padding: 2.5rem 3rem; } }

.testimonial-icon {
  width: 32px;
  height: auto;
  fill: var(--accent);
  opacity: 0.45;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-content p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.125rem, 1.3vw, 1.1875rem);
  line-height: 1.65;
  color: var(--foreground);

}

.testimonial-content p + p {
  margin-top: 1rem;
}

.testimonial-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--foreground);
}

.testimonial-project {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

/* ─── CONTACT ────────────────────────────────────────────────── */
#contact-form {
  scroll-margin-top: 7rem;
}

#contactos {
  background: var(--ink);
  color: var(--bone);
  padding-block: 7rem;
}
@media (min-width: 768px) { #contactos { padding-block: 9rem; } }

.contact-grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(12, 1fr); }
  .contact-info { grid-column: span 5; }
  .contact-form { grid-column: span 7; }
}

.contact-info h2 {
  margin-top: 1.5rem;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  color: var(--bone);
  text-wrap: balance;
}
.contact-info > p {
  margin-top: 2rem;
  color: hsl(36 28% 94% / 0.7);
  line-height: 1.7;
  max-width: 28rem;
}

.contact-details {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail svg {
  width: 16px; height: 16px;
  stroke: var(--accent); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  margin-top: 4px;
  flex-shrink: 0;
}
.detail-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: hsl(36 28% 94% / 0.55);
}
.detail-val { color: var(--bone); }
.detail-val a { display: block; }

.form-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }

.field { display: flex; flex-direction: column; }
@media (min-width: 640px) { .field.full { grid-column: span 2; } }

.field label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: hsl(36 28% 94% / 0.7);
  margin-bottom: 0.75rem;
  display: block;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid hsl(36 28% 94% / 0.25);
  padding-block: 0.75rem;
  color: var(--bone);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.field input::placeholder,
.field textarea::placeholder { color: hsl(36 28% 94% / 0.4); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--bone); }
.field select { cursor: pointer; }
.field textarea { resize: none; }

.field-error {
  display: none;
  margin-top: 0.5rem;
  font-size: 11px;
  color: hsl(0 60% 62%);
}
.field.has-error .field-error { display: block; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-bottom-color: hsl(0 60% 42%); }

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
}
@media (min-width: 640px) { .form-footer { grid-column: span 2; } }

.form-note {
  font-size: 0.75rem;
  color: hsl(36 28% 94% / 0.5);
  max-width: 28rem;
}

.btn-submit {
  display: inline-flex;
  height: 3rem;
  align-items: center;
  padding-inline: 2rem;
  background: var(--bone);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.btn-submit:hover:not(:disabled) { background: hsl(36 28% 94% / 0.9); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Toast */
#toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--foreground);
  color: var(--background);
  padding: 1rem 1.5rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 1000;
  box-shadow: var(--shadow-elegant);
  max-width: 320px;
}
#toast.show { display: flex; }
#toast strong { font-size: 0.9375rem; }
#toast span   { font-size: 0.8125rem; color: hsl(30 10% 14% / 0.7); }

/* ─── Orçamento Floating Button ─────────────────────────────── */
.orcamento-fab {
  position: fixed;
  bottom: calc(2.75rem + 1.75rem + 3.25rem + 0.75rem);
  right: 1.75rem;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--bone);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.625rem 1.125rem;
  border-radius: 2rem;
  box-shadow: 0 4px 20px hsl(28 40% 25% / 0.35);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s;
  white-space: nowrap;
}
.orcamento-fab:hover {
  transform: scale(1.05);
  background: var(--foreground);
  box-shadow: 0 6px 28px hsl(28 40% 25% / 0.5);
}
@media (max-width: 640px) {
  .orcamento-fab {
    bottom: calc(2.75rem + 1.25rem + 3rem + 0.75rem);
    right: 1.25rem;
    font-size: 0.6875rem;
    padding: 0.5rem 0.875rem;
  }
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
#footer {
  background: var(--ink);
  color: hsl(36 28% 94% / 0.7);
  border-top: 1px solid hsl(36 28% 94% / 0.1);
}

.footer-main {
  display: grid;
  gap: 2.5rem;
  padding-block: 3.5rem;
}
@media (min-width: 768px) {
  .footer-main { grid-template-columns: repeat(12, 1fr); }
  .footer-brand { grid-column: span 5; }
  .footer-nav   { grid-column: span 3; }
  .footer-contact { grid-column: span 4; }
}

.footer-logo {
  display: flex;
  align-items: center;
}
.footer-logo img {
  display: block;
  width: auto;
  height: 3.5rem;
}
.footer-brand p {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 24rem;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: hsl(36 28% 94% / 0.5);
  margin-bottom: 1rem;
}
.footer-nav ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--bone); }

.footer-bottom {
  border-top: 1px solid hsl(36 28% 94% / 0.1);
}
.footer-bottom-inner {
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: hsl(36 28% 94% / 0.45);
}

.tel-note {
  display: block;
  font-size: 0.72em;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.55;
  margin-top: 0.25em;
}

/* ─── WhatsApp Floating Button ──────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: calc(2.75rem + 1.75rem);
  right: 1.75rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px hsl(145 63% 49% / 0.45);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px hsl(145 63% 49% / 0.6);
}
.whatsapp-fab svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: #fff;
}
@media (max-width: 640px) {
  .whatsapp-fab {
    bottom: calc(2.75rem + 1.25rem);
    right: 1.25rem;
    width: 3rem;
    height: 3rem;
  }
  .whatsapp-fab svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* ─── PAGE HEADER (subpages) ─────────────────────────────────── */
.page-header {
  background: var(--background);
  padding-top: 9rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .page-header { padding-top: 10.5rem; padding-bottom: 5rem; }
}
.page-header .eyebrow { display: block; margin-bottom: 1.25rem; }
.page-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  line-height: 1;
  color: var(--foreground);
  text-wrap: balance;
}

/* ─── CTA STRIP (subpages bottom) ────────────────────────────── */
.cta-strip {
  background: var(--surface);
  padding-block: 5rem;
  border-top: 1px solid var(--border);
}
.cta-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-strip h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--foreground);
  max-width: 36rem;
  line-height: 1.1;
}

/* ─── SERVICE DETAIL ─────────────────────────────────────────── */
.service-detail {
  padding-block: 7rem;
}
@media (min-width: 768px) { .service-detail { padding-block: 9rem; } }

.service-detail-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) {
  .service-detail-grid { grid-template-columns: repeat(12, 1fr); }
  .sd-img  { grid-column: span 6; }
  .sd-body { grid-column: span 6; }
}

.sd-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--muted);
}
.sd-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease-out;
}
.service-detail:hover .sd-img-wrap img { transform: scale(1.04); }

.sd-body .eyebrow { display: block; margin-bottom: 1.25rem; }

.sd-h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  color: var(--foreground);
  text-wrap: balance;
}

.sd-body > p {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: var(--muted-fg);
  line-height: 1.75;
}

.sd-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.sd-feature {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.875rem;
  color: hsl(30 10% 14% / 0.85);
}
.sd-feature .dash {
  font-family: 'Cormorant Garamond', serif;
  color: var(--accent);
  flex-shrink: 0;
}

.sd-body > .btn-cta {
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .service-detail--alt .sd-img  { order: 2; }
  .service-detail--alt .sd-body { order: 1; }
}

/* ─── BLOG ──────────────────────────────────────────────────── */
.blog-section {
  background: var(--background);
  padding-block: 7rem;
}
@media (min-width: 768px) { .blog-section { padding-block: 9rem; } }

.blog-card {
  display: grid;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}
@media (min-width: 768px) {
  .blog-card { grid-template-columns: repeat(12, 1fr); }
}

.blog-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--muted);
}
@media (min-width: 768px) {
  .blog-card-img {
    grid-column: span 7;
    aspect-ratio: auto;
    min-height: 540px;
  }
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.6s ease-out;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .blog-card-body {
    grid-column: span 5;
    padding: 3.5rem 3rem 3.5rem 3.5rem;
  }
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.blog-card-cat {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent);
}
.blog-card-date {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted-fg);
}

.blog-card-title {
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  color: var(--foreground);
  line-height: 1.1;
  text-wrap: balance;
}

.blog-card-excerpt {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: var(--muted-fg);
  line-height: 1.75;
}

.blog-card-link {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--foreground);
}
.blog-card-link svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.blog-more {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}
.blog-more-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.blog-more p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  max-width: 32rem;
  line-height: 1.7;
}

/* ─── ARTICLE ────────────────────────────────────────────────── */
.article-section {
  background: var(--background);
  padding-block: 7rem;
}
@media (min-width: 768px) { .article-section { padding-block: 9rem; } }

.blog-article-header { max-width: 48rem; }

.blog-article-body {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .blog-article-body { grid-template-columns: 1fr 2fr; }
}

.blog-article-aside {
  font-size: 0.8125rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

.blog-article-content h3 {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  color: var(--foreground);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.blog-article-content h3:first-child { margin-top: 0; }
.blog-article-content p {
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.8;
  margin-top: 0.75rem;
}
.blog-article-content strong { color: var(--foreground); }

.article-hero {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: var(--muted);
  margin-bottom: 4rem;
}
.article-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Sticky CTA Banner ────────────────────────────────────── */
.sticky-cta-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--ink);
  color: var(--bone);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sticky-cta-banner .banner-text {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: hsl(36 28% 94% / 0.7);
}
.sticky-cta-banner .banner-btn {
  display: inline-flex;
  height: 2.25rem;
  align-items: center;
  padding-inline: 1.25rem;
  background: var(--accent);
  color: var(--bone);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  transition: background 0.2s;
}
.sticky-cta-banner .banner-btn:hover {
  background: var(--foreground);
}
@media (max-width: 640px) {
  .sticky-cta-banner { flex-direction: column; text-align: center; padding: 0.5rem 1rem; }
}

/* ─── Pagination ─────────────────────────────────────────────── */
.pagination {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: background 0.2s;
}
.pagination .page-numbers.current {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.pagination .page-numbers:hover:not(.current) {
  background: var(--muted);
}

.wpcf7-form label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: hsl(36 28% 94% / 0.7);
  margin-bottom: 0.75rem;
  display: block;
}
.wpcf7-form input,
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid hsl(36 28% 94% / 0.25);
  padding-block: 0.75rem;
  color: var(--bone);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-bottom-color: var(--bone);
}
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: hsl(36 28% 94% / 0.4);
}
.wpcf7-form select { cursor: pointer; }
.wpcf7-form textarea { resize: none; }
.wpcf7-form .wpcf7-submit {
  display: inline-flex;
  height: 3rem;
  align-items: center;
  padding-inline: 2rem;
  background: var(--bone);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.wpcf7-form .wpcf7-submit:hover { background: hsl(36 28% 94% / 0.9); }
.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 11px;
  color: hsl(0 60% 62%);
  margin-top: 0.5rem;
}
.wpcf7-form .wpcf7-response-output {
  font-size: 0.875rem;
  color: var(--bone);
  border-color: hsl(36 28% 94% / 0.25);
  margin-top: 1rem;
}
