/* ================================================================
   Raízes Theme — Main Stylesheet
   Estúdio Raízes | Serra do Cipó, Minas Gerais
   ================================================================ */

/* ---- 1. Custom Properties ---- */
:root {
  /* Core palette — earthy, warm, nature-inspired */
  --c-dark:       #1A1712;   /* Deep warm black */
  --c-dark-2:     #231F18;   /* Dark section alt */
  --c-dark-3:     #2C271E;   /* Dark section subtle */
  --c-cream:      #F5EEE1;   /* Main light background */
  --c-cream-2:    #EDE4D0;   /* Alt light background */
  --c-brown:      #7A5A38;   /* Earth brown */
  --c-gold:       #B8935A;   /* Gold / cerrado amber */
  --c-sand:       #C8B49A;   /* Warm sand */
  --c-fog:        #9C8D7C;   /* Mid-tone muted */
  --c-text:       #1A1712;   /* Main text dark */
  --c-text-lt:    #F5EEE1;   /* Text on dark */
  --c-muted:      #6B5C4A;   /* Secondary text */
  --c-white:      #FEFAF3;   /* Warm white */
  --c-border:     rgba(200, 180, 154, 0.20);

  /* Typography */
  --f-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --sp-section:    clamp(80px, 10vw, 140px);
  --sp-container:  clamp(20px, 5vw, 80px);
  --max-w:         1280px;
  --nav-h:         80px;

  /* Motion */
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:  cubic-bezier(0.16, 1, 0.32, 1);
  --t-fast:    0.20s;
  --t-med:     0.40s;
  --t-slow:    0.70s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ---- 3. Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p { line-height: 1.75; }

/* ---- 4. Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-container);
}

.section { padding: var(--sp-section) 0; }

.section--dark    { background: var(--c-dark);   color: var(--c-text-lt); }
.section--dark-2  { background: var(--c-dark-2);  color: var(--c-text-lt); }
.section--dark-3  { background: var(--c-dark-3);  color: var(--c-text-lt); }
.section--cream   { background: var(--c-cream); }
.section--cream-2 { background: var(--c-cream-2); }

.section-label {
  display: block;
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 20px;
}

.section--cream  .section-label,
.section--cream-2 .section-label { color: var(--c-brown); }

.section-title {
  font-size: clamp(30px, 4.5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  font-family: var(--f-display);
}

.section-body {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--c-muted);
}

.section--dark .section-body { color: var(--c-sand); }

/* ---- 5. Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  transition: all var(--t-fast) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--c-gold);
  color: var(--c-dark);
}
.btn--primary:hover {
  background: var(--c-brown);
  color: var(--c-white);
}

.btn--outline {
  border: 1px solid rgba(245, 238, 225, 0.45);
  color: var(--c-text-lt);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 238, 225, 0.8);
}

.btn--outline-dark {
  border: 1px solid var(--c-text);
  color: var(--c-text);
}
.btn--outline-dark:hover {
  background: var(--c-text);
  color: var(--c-white);
}

/* ---- 6. Navigation ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
}

.site-nav.is-scrolled {
  background: var(--c-dark);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}
.nav-logo img { height: 38px; width: auto; }
.nav-logo-text {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--c-white);
  letter-spacing: 0.08em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
}

.nav-menu a {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(245, 238, 225, 0.75);
  transition: color var(--t-fast);
}
.nav-menu a:hover { color: var(--c-gold); }

.nav-menu .nav-reservar {
  padding: 10px 22px;
  border: 1px solid rgba(184, 147, 90, 0.55);
  color: var(--c-gold);
  transition: all var(--t-fast);
}
.nav-menu .nav-reservar:hover {
  background: var(--c-gold);
  color: var(--c-dark);
  border-color: var(--c-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--c-white);
  transition: all var(--t-fast) var(--ease);
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- 7. Hero Section ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 6s var(--ease-out);
}
.hero-bg img.is-loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    175deg,
    rgba(26, 23, 18, 0.35) 0%,
    rgba(26, 23, 18, 0.60) 55%,
    rgba(26, 23, 18, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--c-text-lt);
  padding: 0 var(--sp-container);
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-brand {
  font-family: var(--f-display);
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--c-white);
  margin-bottom: 16px;
  line-height: 1.05;
}

.hero-tagline {
  font-family: var(--f-body);
  font-size: clamp(9px, 1.1vw, 12px);
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--c-sand);
  margin-bottom: 52px;
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(245, 238, 225, 0.40);
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(245, 238, 225, 0.4), transparent);
  animation: heroScroll 2.2s ease-in-out infinite;
}

@keyframes heroScroll {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.9; transform: scaleY(0.55); }
}

/* ---- 8. Sobre Section ---- */
.section-sobre { background: var(--c-cream); }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.sobre-text { padding-right: 32px; }
.sobre-text .section-title { margin-bottom: 28px; }
.sobre-text .section-body { margin-bottom: 0; max-width: 500px; }

.sobre-image {
  position: relative;
  height: 580px;
  overflow: hidden;
}
.sobre-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.sobre-image:hover img { transform: scale(1.03); }

.sobre-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-top: 64px;
  border-top: 1px solid var(--c-border);
}

.feature-card {}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--c-gold);
}
.feature-icon svg { width: 100%; height: 100%; }

.feature-title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--c-text);
}

.feature-text {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.85;
  font-weight: 300;
}

/* ---- 9. Estúdios Section ---- */
.section-estudios { background: var(--c-dark-2); }

.estudios-header {
  text-align: center;
  margin-bottom: 60px;
}
.estudios-header .section-title { color: var(--c-text-lt); margin-bottom: 0; }

.estudios-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 72px;
}

.estudios-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.estudios-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.estudios-img:hover img { transform: scale(1.05); }

.estudios-amenities-title {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--c-sand);
  margin-bottom: 40px;
}

.estudios-amenities {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px 16px;
  padding-top: 48px;
  border-top: 1px solid rgba(200, 180, 154, 0.12);
}

.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.amenity-icon {
  width: 28px;
  height: 28px;
  color: var(--c-sand);
}
.amenity-icon svg { width: 100%; height: 100%; }
.amenity-label {
  font-size: 11px;
  letter-spacing: 0.10em;
  color: rgba(245, 238, 225, 0.60);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.4;
}

/* ---- 10. Experiência Section ---- */
.section-experiencia { background: var(--c-cream); }

.experiencia-header {
  text-align: center;
  margin-bottom: 56px;
}
.experiencia-header .section-title { margin-bottom: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--c-cream-2);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item:nth-child(1) { aspect-ratio: 3/4; }
.gallery-item:nth-child(2) { aspect-ratio: 3/4; }
.gallery-item:nth-child(3) { aspect-ratio: 3/4; }
.gallery-item:nth-child(4) { aspect-ratio: 3/4; }
.gallery-item:nth-child(5) { aspect-ratio: 3/4; }
.gallery-item:nth-child(6) { aspect-ratio: 3/4; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26, 23, 18, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast);
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 238, 225, 0.25);
  color: var(--c-text-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all var(--t-fast);
}
.lightbox-close:hover {
  background: var(--c-gold);
  color: var(--c-dark);
  border-color: var(--c-gold);
}

/* ---- 11. Arquitetura Section ---- */
.section-arquitetura { background: var(--c-dark); overflow: hidden; }

.arquitetura-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 72px;
}

.arquitetura-text .section-title { color: var(--c-text-lt); margin-bottom: 28px; }
.arquitetura-text .section-body  { color: rgba(200, 180, 154, 0.80); }

p + p.arquitetura-p2 { margin-top: 20px; }

.arquitetura-image { overflow: hidden; }
.arquitetura-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.arquitetura-image:hover img { transform: scale(1.03); }

.arquitetura-full {
  width: calc(100% + var(--sp-container) * 2);
  margin-left: calc(-1 * var(--sp-container));
  overflow: hidden;
}
.arquitetura-full img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
}

/* ---- 12. Tour Virtual Section ---- */
.section-tour { background: var(--c-dark-2); text-align: center; }

.tour-header { margin-bottom: 48px; }
.tour-header .section-title { color: var(--c-text-lt); margin-bottom: 0; }

.tour-preview {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.tour-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 23, 18, 0.50);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.tour-badge {
  display: inline-block;
  padding: 8px 22px;
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
  font-size: 10px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  font-weight: 500;
}
.tour-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 238, 225, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-lt);
  opacity: 0.6;
  cursor: not-allowed;
}
.tour-play svg { margin-left: 4px; }

/* ---- 13. Localização Section ---- */
.section-localizacao { background: var(--c-cream); overflow: hidden; }

.localizacao-hero-img-wrap {
  width: calc(100% + var(--sp-container) * 2);
  margin-left: calc(-1 * var(--sp-container));
  margin-bottom: 80px;
  overflow: hidden;
  max-height: 520px;
}
.localizacao-hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.localizacao-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.localizacao-text .section-title { margin-bottom: 24px; }
.localizacao-text .section-body  { margin-bottom: 0; }

.localizacao-map {
  background: var(--c-cream-2);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.localizacao-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-placeholder {
  text-align: center;
  color: var(--c-muted);
  padding: 40px;
}
.map-placeholder svg {
  margin: 0 auto 20px;
  color: var(--c-sand);
  width: 40px;
  height: 40px;
}
.map-placeholder p {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-fog);
}

/* ---- 14. Contato Section ---- */
.section-contato { background: var(--c-dark-3); }

.contato-header {
  text-align: center;
  margin-bottom: 64px;
}
.contato-header .section-title { color: var(--c-text-lt); margin-bottom: 0; }

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contato-info-title {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--c-text-lt);
  margin-bottom: 32px;
  font-weight: 300;
}

.contato-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contato-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contato-info-item-icon {
  width: 20px;
  height: 20px;
  color: var(--c-gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contato-info-item-icon svg { width: 100%; height: 100%; }

.contato-info-item-body {}
.contato-info-item-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-fog);
  margin-bottom: 4px;
}
.contato-info-item-value {
  font-size: 15px;
  color: var(--c-sand);
  line-height: 1.5;
}
.contato-info-item-value a {
  color: var(--c-gold);
  transition: color var(--t-fast);
}
.contato-info-item-value a:hover { color: var(--c-sand); }

.contato-form-wrap {}

/* ---- 15. Contact Form 7 Styling ---- */
.wpcf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wpcf7-form-control-wrap { width: 100%; }

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 180, 154, 0.18);
  color: var(--c-text-lt);
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  border-radius: 0;
  transition: border-color var(--t-fast);
  -webkit-appearance: none;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus { border-color: var(--c-gold); }

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder { color: rgba(245, 238, 225, 0.30); }

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

.wpcf7 input[type="submit"] {
  width: 100%;
  padding: 16px 32px;
  background: var(--c-gold);
  color: var(--c-dark);
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background var(--t-fast);
}
.wpcf7 input[type="submit"]:hover {
  background: var(--c-brown);
  color: var(--c-white);
}

.wpcf7-response-output {
  padding: 12px 16px;
  font-size: 13px;
  border: 1px solid;
  margin-top: 0 !important;
}

.wpcf7-mail-sent-ok {
  border-color: var(--c-gold) !important;
  color: var(--c-gold) !important;
  background: transparent !important;
}
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
  border-color: #c0392b !important;
  color: #c0392b !important;
  background: transparent !important;
}

/* ---- 16. Footer ---- */
.site-footer {
  background: var(--c-dark);
  padding: 80px 0 36px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.footer-logo {}
.footer-logo img { height: 52px; width: auto; margin: 0 auto; }
.footer-logo-text {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 300;
  color: var(--c-white);
  letter-spacing: 0.12em;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
}
.footer-nav a {
  font-size: 10.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(245, 238, 225, 0.45);
  transition: color var(--t-fast);
}
.footer-nav a:hover { color: var(--c-gold); }

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245, 238, 225, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 238, 225, 0.45);
  transition: all var(--t-fast);
}
.footer-social a:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.footer-social a svg { width: 18px; height: 18px; }

.footer-contact {
  text-align: center;
  color: rgba(245, 238, 225, 0.45);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
}
.footer-contact a {
  color: var(--c-gold);
  transition: color var(--t-fast);
}
.footer-contact a:hover { color: var(--c-sand); }

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(245, 238, 225, 0.07);
}

.footer-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 0;
}

.footer-copyright {
  font-size: 11.5px;
  color: rgba(245, 238, 225, 0.28);
  letter-spacing: 0.06em;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 11.5px;
  color: rgba(245, 238, 225, 0.28);
  letter-spacing: 0.06em;
  transition: color var(--t-fast);
}
.footer-bottom-links a:hover { color: var(--c-gold); }

/* ---- 17. WhatsApp Float Button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }

/* ---- 18. Scroll Animations ---- */
.anim-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}
.anim-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-fade-in {
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease-out);
}
.anim-fade-in.is-visible { opacity: 1; }

.anim-slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}
.anim-slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}
.anim-slide-left.is-visible,
.anim-slide-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.anim-delay-1 { transition-delay: 0.10s; }
.anim-delay-2 { transition-delay: 0.20s; }
.anim-delay-3 { transition-delay: 0.30s; }
.anim-delay-4 { transition-delay: 0.45s; }
.anim-delay-5 { transition-delay: 0.60s; }
.anim-delay-6 { transition-delay: 0.75s; }

/* ---- 19. WordPress Admin Bar ---- */
.admin-bar .site-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-nav { top: 46px; }
}

/* ---- 20. Responsive ---- */
@media (max-width: 1080px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-text  { padding-right: 0; }
  .sobre-image { height: 420px; }

  .arquitetura-content { grid-template-columns: 1fr; gap: 48px; }
  .localizacao-content  { grid-template-columns: 1fr; gap: 48px; }
  .contato-grid         { grid-template-columns: 1fr; gap: 48px; }

  .estudios-amenities   { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom        { justify-content: center; text-align: center; }
  .footer-bottom-links  { justify-content: center; }
}

@media (max-width: 768px) {
  :root {
    --sp-section: clamp(60px, 9vw, 96px);
    --sp-container: 24px;
  }

  .nav-menu   { display: none; }
  .nav-toggle { display: flex; }

  .nav-menu.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--c-dark);
    justify-content: center;
    align-items: center;
    gap: 44px;
  }
  .nav-menu.is-open a {
    font-size: 15px;
    letter-spacing: 0.22em;
    color: var(--c-text-lt);
  }
  .nav-menu.is-open .nav-reservar {
    padding: 14px 32px;
    border: 1px solid rgba(184, 147, 90, 0.55);
  }

  .hero-actions         { flex-direction: column; align-items: center; }
  .sobre-features       { grid-template-columns: 1fr; gap: 36px; }
  .estudios-images      { grid-template-columns: 1fr 1fr; }
  .estudios-amenities   { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .gallery-grid         { grid-template-columns: 1fr 1fr; }
  .localizacao-hero-img { height: 320px; }
  .arquitetura-full     { }
  .arquitetura-full img { aspect-ratio: 4/3; }
}

@media (max-width: 540px) {
  .estudios-images    { grid-template-columns: 1fr; }
  .estudios-amenities { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid       { grid-template-columns: 1fr; }
}

/* ---- 21. Selection & Scrollbar ---- */
::selection { background: var(--c-gold); color: var(--c-dark); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--c-dark); }
::-webkit-scrollbar-thumb { background: var(--c-gold); border-radius: 3px; }

/* ================================================================
   22. Single Estúdio Page
   ================================================================ */

/* ── Hero gallery ─────────────────────────────────────────────── */
.estudio-page { padding-top: var(--nav-h); background: var(--c-cream); }

.estudio-hero { --gap: 6px; }

.estudio-hero-grid {
  display: grid;
  max-height: 560px;
  overflow: hidden;
}

.estudio-hero-grid.has-grid {
  grid-template-columns: 1.65fr 1fr;
  gap: var(--gap);
}

.estudio-hero-grid.single-img {}

.estudio-hero-main {
  overflow: hidden;
  max-height: 560px;
}
.estudio-hero-main .estudio-hero-img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}
.estudio-hero-main:hover .estudio-hero-img { transform: scale(1.03); }

.estudio-hero-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--gap);
  overflow: hidden;
  max-height: 560px;
}

.estudio-hero-side-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.estudio-hero-side-item .estudio-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}
.estudio-hero-side-item:hover .estudio-hero-img { transform: scale(1.06); }

.estudio-hero-placeholder {
  width: 100%;
  height: 380px;
  background: var(--c-cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-fog);
}

/* ── Body layout ──────────────────────────────────────────────── */
.estudio-body {
  padding: 64px 0 100px;
}

.estudio-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
}

/* ── Content (left) ───────────────────────────────────────────── */
.estudio-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-fog);
  margin-bottom: 28px;
}
.estudio-breadcrumb a {
  color: var(--c-gold);
  transition: color var(--t-fast);
}
.estudio-breadcrumb a:hover { color: var(--c-brown); }

.estudio-title-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.estudio-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--c-text);
  line-height: 1.1;
  flex: 1;
}

.estudio-badge {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-top: 6px;
}

/* Stats row */
.estudio-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}

.estudio-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.estudio-stat-icon {
  width: 20px;
  height: 20px;
  color: var(--c-gold);
  flex-shrink: 0;
}
.estudio-stat-icon svg { width: 100%; height: 100%; }
.estudio-stat-value {
  font-size: 16px;
  font-weight: 400;
  color: var(--c-text);
}
.estudio-stat-label {
  font-size: 13px;
  color: var(--c-muted);
  font-weight: 300;
}

.estudio-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 0 0 40px;
}

/* Description */
.estudio-description {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--c-muted);
  margin-bottom: 52px;
}
.estudio-description p + p { margin-top: 1.4em; }
.estudio-description img { max-width: 100%; height: auto; margin: 1.5em 0; }

/* Section label inside content */
.estudio-section-label {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--c-brown);
  display: block;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-border);
}

/* Amenidades */
.estudio-amenidades { margin-bottom: 52px; }

.estudio-amenidades-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}

.estudio-amenidade {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  color: var(--c-text);
  padding: 10px 0;
  border-bottom: 1px solid rgba(200, 180, 154, 0.10);
}

.estudio-amenidade-icon {
  width: 16px;
  height: 16px;
  color: var(--c-gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.estudio-amenidade-icon svg { width: 100%; height: 100%; }

/* Location teaser */
.estudio-location-teaser {
  margin-bottom: 16px;
}
.estudio-location-teaser p {
  font-size: 15px;
  font-weight: 300;
  color: var(--c-muted);
  line-height: 1.7;
}
.estudio-location-teaser a {
  color: var(--c-gold);
  transition: color var(--t-fast);
  margin-left: 4px;
}
.estudio-location-teaser a:hover { color: var(--c-brown); }

/* ── Booking card (right / sticky) ───────────────────────────── */
.estudio-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.estudio-booking-card {
  background: var(--c-dark);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.estudio-booking-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(200, 180, 154, 0.12);
}
.estudio-booking-price-value {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--c-text-lt);
  line-height: 1;
}
.estudio-booking-price-label {
  font-size: 12px;
  color: var(--c-fog);
  font-weight: 300;
  letter-spacing: 0.08em;
}

.estudio-booking-cta {
  width: 100%;
  justify-content: center;
  padding: 16px;
}

.estudio-booking-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25D366;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--t-fast);
}
.estudio-booking-whatsapp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.estudio-booking-whatsapp:hover {
  background: rgba(37, 211, 102, 0.10);
  border-color: #25D366;
}

.estudio-booking-amenidades {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
  border-top: 1px solid rgba(200, 180, 154, 0.12);
}
.estudio-booking-amenidade {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--c-sand);
  font-weight: 300;
  letter-spacing: 0.06em;
}
.estudio-booking-amenidade svg { width: 14px; height: 14px; }

/* ── Other studios ────────────────────────────────────────────── */
.estudio-outros {
  padding: 80px 0 100px;
  background: var(--c-cream-2);
}

.estudio-outros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.estudio-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.estudio-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--c-cream);
  margin-bottom: 20px;
}

.estudio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}
.estudio-card-link:hover .estudio-card-img { transform: scale(1.05); }

.estudio-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--c-cream-2);
}

.estudio-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  background: var(--c-dark);
  color: var(--c-gold);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.estudio-card-title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--c-text);
  margin-bottom: 6px;
}

.estudio-card-price {
  font-size: 13px;
  color: var(--c-gold);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.estudio-card-excerpt {
  font-size: 14px;
  color: var(--c-muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 14px;
}

.estudio-card-cta {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-brown);
  font-weight: 500;
  transition: color var(--t-fast);
}
.estudio-card-link:hover .estudio-card-cta { color: var(--c-gold); }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .estudio-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .estudio-sidebar {
    position: static;
    max-width: 480px;
  }
  .estudio-outros-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .estudio-hero-grid.has-grid {
    grid-template-columns: 1fr;
    max-height: none;
  }
  .estudio-hero-side { grid-template-columns: 1fr 1fr; max-height: 260px; }
  .estudio-hero-main { max-height: 320px; }
  .estudio-amenidades-grid { grid-template-columns: 1fr; }
  .estudio-outros-grid { grid-template-columns: 1fr; }
  .estudio-booking-card { padding: 28px 20px; }
}

