/* =========================================================
   NEEX CREATIVE — STYLE (CLEAN FULL)
   ========================================================= */

/* ===== ROOT VARIABLES ===== */
:root {
  --bg: #ffffff;
  --text: #0f1115;
  --muted: #5c5f66;
  --brand: #3E5F63;
  --line: rgba(15,17,21,0.08);
  --radius: 20px;

  --max: 1200px;
}

/* ===== RESET ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Qualquer imagem no site não cria “gap” */
img { display: block; max-width: 100%; }

/* Offset para âncoras não ficarem “escondidas” atrás da navbar */
#about, #projects, #services, #contact { scroll-margin-top: 110px; }

/* ===== UTILITIES / GLOBAL LAYOUT ===== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 8vw;
}
@media (max-width: 640px) {
  .container { padding: 0 24px; }
}

/* ✅ MENOS ESPAÇAMENTO ENTRE SEÇÕES */
.section { padding: 80px 0; }
@media (max-width: 900px) {
  .section { padding: 60px 0; }
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 26px;
  color: #111;
}
.muted { color: var(--muted); }

/* =========================================================
   FLOATING NAVBAR
   ========================================================= */
.nav-floating {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.nav-pill {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12),
              inset 0 1px 0 rgba(255, 255, 255, 0.6);
  width: max(280px, 36vw);
  max-width: 520px;
  border-radius: 26px;
  padding: 6px 16px;
  transition: all 0.4s cubic-bezier(.22,.61,.36,1);
  overflow: hidden;
}

.nav-pill.expanded {
  padding-bottom: 24px;
  border-radius: 26px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
}

/* ===== NAVBAR CONTENT (GRID: logo / hamb / button) ===== */
.nav-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

/* Logo */
.nav-logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: #111;
  line-height: 1;
  justify-self: start;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-logo:visited{ color:#111; }
.nav-logo:hover{ opacity: .85; }

/* Container do hamb */
.nav-menu{
  justify-self: center;
  display: flex;
  align-items: center;
}

/* Hamburger */
.hamb {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;

  width: 42px;
  height: 34px;
  padding: 0;

  cursor: pointer;
  transition: all .3s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.hamb:focus-visible{
  outline: 2px solid rgba(107,0,0,0.55);
  outline-offset: 3px;
  border-radius: 10px;
}

.hamb span {
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: all .3s ease;
  transform-origin: center;
}

/* Transform to X */
.nav-pill.expanded .hamb span:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}
.nav-pill.expanded .hamb span:nth-child(2) {
  opacity: 0;
}
.nav-pill.expanded .hamb span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

/* Book Button */
.btn-book {
  justify-self: end;
  background: linear-gradient(180deg, #1b1b1b, #000);
  color: #fff;

  padding: 0 18px;
  height: 34px;

  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;

  -webkit-tap-highlight-color: transparent;
}

.btn-book:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

/* Dropdown Links */
.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: 0px;
  padding-left: 4px;
  transition: all 0.4s ease;
}

.nav-pill.expanded .nav-links {
  opacity: 1;
  max-height: 260px;
  margin-top: 16px;
}

.nav-links a {
  color: #0f1115;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.2s ease;
}
.nav-links a:hover{
  color: #9b0707;
}
.nav-links a:focus-visible{
  outline: 2px solid rgba(107,0,0,0.55);
  outline-offset: 3px;
  border-radius: 10px;
}

.nav-links a.is-active{
  color: #9b0707;
}

/* Responsive Navbar */
@media (max-width: 640px) {
  .nav-pill {
    width: calc(100% - 24px);
    max-width: 420px;
  }
  .nav-logo { font-size: 1.1rem; }
  .btn-book { padding: 0 14px; font-size: .85rem; height: 32px; }
  .hamb { height: 32px; }
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  background: url("Assets/img/billboard.png") center center/cover no-repeat;
  position: relative;
  color: #fff;
  padding: 0 24px;
  z-index: 0;
}

/* dark overlay for readability */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-top: 40px;
}

.headline {
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 40px;
}
.highlight { color: #fff; }
.fade { color: rgb(255, 255, 255); }

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Para páginas internas (book.html) */
.hero-copy {
  color: var(--muted);
  max-width: 720px;
  margin: 16px auto 0;
  padding: 0 24px;
}

/* =========================================================
   BUTTONS (GLOBAL)
   ========================================================= */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.btn-red {
  background: #6B0000;
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
}
.btn-red:hover {
  background: #e00000;
  box-shadow: 0 12px 28px rgba(255, 0, 0, 0.4);
  transform: translateY(-2px);
}

.btn-light {
  background: rgba(255,255,255,0.85);
  color: #000;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-light:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, #1c1c1c, #000);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.28);
}

/* =========================================================
   ABOUT SECTION — centered, clean, no clipping
   ========================================================= */

/* ✅ MENOS ESPAÇAMENTO NO ABOUT */
.about{ padding: 80px 0; }
@media (max-width: 900px){
  .about{ padding: 60px 0; }
}

.about-grid{
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.about-left{
  display: flex;
  flex-direction: column;
}

.about-title{
  font-size: clamp(2.2rem, 3.6vw, 3.35rem);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #111;
  margin-bottom: 16px;
  max-width: 680px;
}

.about-title span{
  color: #8a8f98;
  font-weight: 650;
}

.about-title strong{
  color: #ff0000;
  font-weight: 800;
}

.about-desc{
  color: #5a5f66;
  font-size: 1.06rem;
  line-height: 1.75;
  max-width: 60ch;
  margin-top: 8px;
}

.about-right{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-list{
  list-style: none !important;
  padding: 0;
  margin: 0;

  display: grid;
  gap: 8px;

  color: #111;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
}

.about-list li{
  margin: 0;
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15,17,21,0.10);
  background: rgba(15,17,21,0.02);

  white-space: nowrap;
  overflow: visible;

  transition: transform 0.2s ease, border-color 0.2s ease;
}

.about-list li:hover{
  transform: translateY(-1px);
  border-color: rgba(62,95,99,0.30);
}

.about-pricing{
  width: 100%;
  border-top: 1px solid rgba(15,17,21,0.08);
  padding-top: 16px;
  display: grid;
  gap: 8px;
}

.about-pricing p{
  font-size: 0.95rem;
  color: #6b7078;
  margin: 0;
}

.about-pricing strong{
  font-size: 1.55rem;
  font-weight: 800;
  color: #111;
  margin: 0;
}

.btn-pricing{
  width: fit-content;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1c1c1c, #000);
  color: #fff;
  text-decoration: none;
  font-weight: 650;
  font-size: 0.92rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-pricing:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.26);
}

/* RESPONSIVE ABOUT (correto: 1 coluna) */
@media (max-width: 1180px){
  .about-grid{
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 0 24px;
  }
  .about-list li{ white-space: normal; }
}

/* =========================================================
   PROJECTS — FULL WIDTH + 4 COLUNAS
   ========================================================= */

/* mantém galeria full-width sem afetar outras seções */
#projects .container{
  max-width: none;
  width: 100%;
  padding: 0 clamp(18px, 4vw, 110px);
}

/* SÓ o título: centralizado (não mexe na galeria) */
#projects .section-title{
  width: 100%;
  text-align: center;
  margin: 0 0 26px;
}

/* Grid */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

/* Card */
.gallery-item{
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15,17,21,0.08);
  background: rgba(15,17,21,0.02);
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);
  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.gallery-item img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(0,0,0,0.10);
  border-color: rgba(15,17,21,0.14);
}
.gallery-item:hover img{ transform: scale(1.03); }

@media (max-width: 1200px){
  .gallery-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px){
  .gallery-grid{ grid-template-columns: 1fr; gap: 14px; }
}

/* =========================================================
   PRICING (mantido caso você queira criar depois)
   ========================================================= */
.pricing-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.pricing-card{
  border-radius: 22px;
  border: 1px solid rgba(15,17,21,0.08);
  background: rgba(15,17,21,0.02);
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);
  padding: 26px;
}

.pricing-card h3{
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.pricing-card ul{
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 16px 0 18px;
  color: #222;
}

.price-tag{
  font-size: 1.25rem;
  font-weight: 800;
  margin: 10px 0 18px;
}

@media (max-width: 980px){
  .pricing-grid{ grid-template-columns: 1fr; gap: 22px; }
}

/* =========================================================
   WHAT WE DO — fixed grid (4 cols) + wider cards + centered title
   ========================================================= */

#services .services-title{
  text-align: center;
  margin-bottom: 26px;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(320px, 1fr));
  gap: 28px;
  justify-content: center;
  width: 100%;
}

.service-card{
  padding: 30px 26px;
  border-radius: 24px;

  border: 1px solid rgba(15,17,21,0.10);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);

  min-height: 220px;
}

#services .service-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15,17,21,0.10);
  background: rgba(255,255,255,0.8);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  line-height: 1;
  color: #111;
}

#services .service-card h3{
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  margin: 2px 0 0;
  color: #111;
}

#services .service-card p{
  margin: 0;
  color: #6b7078;
  line-height: 1.65;
  font-size: 1.02rem;
  max-width: none;
}

.service-icon svg{
  width: 26px;
  height: 26px;
}

#services .service-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(0,0,0,0.10);
  border-color: rgba(15,17,21,0.16);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

@media (max-width: 1200px){
  #services .services-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px){
  #services .services-grid{
    grid-template-columns: 1fr;
  }
  #services .service-card{
    min-height: auto;
  }
}

#services .container{
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 110px);
}

/* =========================================================
   CONTACT 2 — footer/contact style
   ========================================================= */

.contact2{
  background: #141414;
  color: #EFDFC5;
  padding: 80px 0 60px; /* ✅ MENOS ESPAÇO */
}

.contact2-wrap{
  max-width: 1180px;
  margin: 0 auto;
}

.contact2-title{
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 14px;
  color: rgba(239,223,197,0.92);
}

.contact2-email{
  position: relative;
  display: inline-block;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 650;
  color: rgba(239,223,197,0.55);
  text-decoration: none;
  padding-bottom: 14px;
}

.contact2-underline{
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #6B0000, #440000);
  border-radius: 999px;
  opacity: 0.9;
}

.contact2-email:hover{
  color: rgba(239,223,197,0.85);
}
.contact2-email:hover .contact2-underline{
  height: 3px;
}

.contact2-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(239,223,197,0.10);
}

.contact2-label{
  margin: 0 0 10px;
  font-size: 0.88rem;
  color: rgba(239,223,197,0.45);
  letter-spacing: 0.02em;
}

.contact2-link{
  color: rgba(239,223,197,0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(239,223,197,0.22);
  padding-bottom: 2px;
}
.contact2-link:hover{
  color: rgba(239,223,197,0.95);
  border-color: rgba(107,0,0,0.75);
}

.contact2-social{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.contact2-social a{
  color: rgba(239,223,197,0.75);
  text-decoration: none;
  font-weight: 650;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(239,223,197,0.10);
  background: rgba(31,40,49,0.25);
  transition: transform .18s ease, border-color .18s ease, color .18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact2-social a svg{
  width: 18px;
  height: 18px;
  display: block;
}

.contact2-social a:hover{
  transform: translateY(-1px);
  color: rgba(239,223,197,0.95);
  border-color: rgba(107,0,0,0.55);
}

.contact2-cta .contact2-note{
  margin-top: 6px;
  color: rgba(239,223,197,0.65);
  font-size: 0.95rem;
  line-height: 1.35;
}

.contact2-btn{
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 42px;
  padding: 0 18px;
  border-radius: 999px;

  background: #6B0000;
  color: #EFDFC5;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;

  border: 1px solid rgba(239,223,197,0.12);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);

  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.contact2-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
  filter: brightness(1.05);
}

@media (max-width: 900px){
  .contact2-grid{
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: left;
  }
  .contact2-cta{
    align-items: flex-start;
    text-align: left;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
footer{
  padding: 40px 0;
  border-top: 1px solid rgba(15,17,21,0.08);
}
.foot{
  color: #6b7078;
  font-size: 0.95rem;
}

.aboutpage ~ footer,
.book-page ~ footer{
  border-top-color: rgba(239,223,197,0.12);
}
.aboutpage ~ footer .foot,
.book-page ~ footer .foot{
  color: rgba(239,223,197,0.55);
}

/* =========================================================
   ABOUT PAGE — 2 columns
   ========================================================= */

.aboutpage{
  min-height: 100vh;
  padding: 140px 0 90px;
  background: linear-gradient(45deg, #141414, #1F2831);
  color: #EFDFC5;
}

.aboutpage-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 90px);

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  align-items: start;
}

.aboutpage-kicker{
  margin: 0 0 10px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(239,223,197,0.55);
}

.aboutpage-title{
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: rgba(239,223,197,0.92);
}

.aboutpage-text{
  margin: 0 0 14px;
  color: rgba(239,223,197,0.70);
  font-size: 1.04rem;
  line-height: 1.7;
  max-width: 62ch;
}

.aboutpage-tags{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.aboutpage-tags span{
  font-size: 0.92rem;
  color: rgba(239,223,197,0.78);
  background: rgba(31,40,49,0.30);
  border: 1px solid rgba(239,223,197,0.10);
  padding: 8px 12px;
  border-radius: 999px;
}

.aboutpage-cta{
  margin-top: 22px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.aboutpage-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;

  background: linear-gradient(180deg, #6B0000, #440000);
  color: #EFDFC5;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: 0.01em;

  border: 1px solid rgba(239,223,197,0.12);
  box-shadow: 0 14px 34px rgba(0,0,0,0.40);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.aboutpage-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 44px rgba(0,0,0,0.55);
}

.aboutpage-link{
  color: rgba(239,223,197,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(239,223,197,0.22);
  padding-bottom: 2px;
  transition: color .18s ease, border-color .18s ease;
}

.aboutpage-link:hover{
  color: rgba(239,223,197,0.92);
  border-color: rgba(107,0,0,0.70);
}

.aboutpage-photo{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(239,223,197,0.10);
  background: rgba(31,40,49,0.25);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}

.aboutpage-photo img{
  width: 100%;
  height: auto;
  display: block;
}

.aboutpage-contacts{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(239,223,197,0.10);

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  align-items: start;
}

.aboutpage-contact{
  color: rgba(239,223,197,0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(239,223,197,0.18);
  padding-bottom: 2px;
  width: fit-content;
  transition: color .18s ease, border-color .18s ease, transform .18s ease;
}

.aboutpage-contact:hover{
  color: rgba(239,223,197,0.95);
  border-color: rgba(107,0,0,0.70);
  transform: translateY(-1px);
}

@media (max-width: 520px){
  .aboutpage-contacts{
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   BOOK PAGE — Calendly embed
   ========================================================= */

.book-page{
  background: radial-gradient(900px 500px at 20% 10%, rgba(31,40,49,0.55), rgba(20,20,20,0.92)),
              radial-gradient(700px 420px at 85% 18%, rgba(107,0,0,0.22), rgba(20,20,20,0.92)),
              #141414;
  color: #EFDFC5;
  padding: 140px 0 90px;
}

.book-container{
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.book-header{
  text-align: center;
  margin-bottom: 34px;
}

.book-kicker{
  margin: 0 0 10px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(239,223,197,0.55);
}

.book-title{
  margin: 0 0 12px;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: rgba(239,223,197,0.95);
}

.book-subtitle{
  margin: 0;
  color: rgba(239,223,197,0.62);
  font-size: 1.05rem;
  line-height: 1.5;
}

.book-grid{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
  margin-top: 26px;
}

.book-card{
  border-radius: 22px;
  border: 1px solid rgba(239,223,197,0.10);
  background: linear-gradient(180deg, rgba(31,40,49,0.35), rgba(20,20,20,0.45));
  box-shadow: 0 22px 60px rgba(0,0,0,0.45);
  padding: 22px 22px;
}

.book-card-title{
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  color: rgba(239,223,197,0.92);
}

.book-card-text{
  margin: 0 0 14px;
  color: rgba(239,223,197,0.64);
  line-height: 1.65;
  font-size: 0.98rem;
}

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

.book-bullets li{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(239,223,197,0.10);
  background: rgba(20,20,20,0.22);
  color: rgba(239,223,197,0.74);
  font-size: 0.95rem;
}

.book-actions{
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.book-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: 0.01em;

  background: linear-gradient(180deg, #6B0000, #440000);
  color: #EFDFC5;

  border: 1px solid rgba(239,223,197,0.14);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.book-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(0,0,0,0.55);
  filter: brightness(1.05);
}

.book-embed{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(239,223,197,0.10);
  background: rgba(20,20,20,0.25);
  box-shadow: 0 22px 60px rgba(0,0,0,0.45);
}

@media (max-width: 980px){
  .book-grid{
    grid-template-columns: 1fr;
  }
  .book-embed .calendly-inline-widget{
    height: 760px !important;
  }
}/* =========================================================
   NAVBAR FIX (MOBILE) — cole no final do style.css
   ========================================================= */
.nav-header{
  grid-template-columns: auto 1fr auto;
}

.btn-book{
  white-space: nowrap;
}

@media (max-width: 640px){
  .nav-header{ gap: 12px; }
}

@media (max-width: 420px){
  .btn-book{
    padding: 0 12px;
    font-size: .82rem;
  }
}
