:root {
  --black: #000000;
  --red: #b41717;
  --soft: #fbeaea;
  --white: #ffffff;

  --text-dark: #141414;
  --text-light: #fbeaea;

  --muted-dark: #000000;
  --muted-light: #fbeaea;

  --card-light: rgba(255, 255, 255, 0.78);
  --border-dark: rgba(0, 0, 0, 0.1);
  --border-light: rgba(255, 255, 255, 0.1);

  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  --radius: 22px;
  --container: 1200px;
}

/* =========================
   FONTS
========================= */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Perandory";
  src: url("../fonts/Perandory-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Symphony";
  src: url("../fonts/Symphony-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--soft);
  color: var(--text-dark);
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

/* =========================
   LAYOUT
========================= */
.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 40px, 760px);
  margin: 0 auto;
}

.section {
  padding: 32px 0;
  margin: 0;
}

/* =========================
   TYPOGRAPHY
========================= */
.eyebrow {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 16px;
}

h1,
h2,
h3,
h4 {
  line-height: 1.05;
}

h1 {
  font-family: "Perandory", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--text-dark);
}

h2 {
  font-family: "Perandory", serif;
  font-size: clamp(2rem, 2vw, 3.4rem);
  color: var(--text-dark);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

h4 {
  font-size: 1rem;
  color: var(--text-dark);
}

p {
  color: var(--muted-dark);
}

.script-text {
  display: inline-block;
  font-family: "Symphony", cursive;
  color: var(--red);
  font-weight: 400;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: #cf1a1a;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: rgba(0, 0, 0, 0.14);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.text-link {
  color: var(--red);
  font-weight: 600;
}

/* =========================
   SECTION COLOR THEMES
========================= */
.section-dark {
  background: #1b1b1d;
  color: var(--text-light);
}

.section-soft {
  background: var(--soft);
  color: var(--text-dark);
}

.section-red {
  background: var(--red);
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark .text-link {
  color: var(--white);
}

.section-dark p {
  color: var(--muted-light);
}

.section-soft h1,
.section-soft h2,
.section-soft h3,
.section-soft h4,
.section-soft .text-link {
  color: var(--text-dark);
}

.section-soft p {
  color: var(--muted-dark);
}

.section-red h1,
.section-red h2,
.section-red h3,
.section-red h4,
.section-red .text-link {
  color: var(--white);
}

.section-red p {
  color: rgba(255, 255, 255, 0.88);
}

/* =========================
   TOP HEADER / NAV
========================= */
.top-hero-header {
  background: var(--soft);
  padding: 28px 0 0;
  width: 100%;
}

.topbar-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.topbar-logo {
  position: absolute;
  left: 30px;
  top: -18px;
  z-index: 10;
}

.topbar-logo img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.topbar-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: var(--black);
  width: 100%;
  padding-left: 150px;
  margin: 0;
}

.topbar-nav a {
  color: var(--white);
  font-family: "Perandory", serif;
  text-transform: uppercase;
  font-size: 1.4rem;
  padding: 20px 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.25s ease, background 0.25s ease;
}

.topbar-nav a:first-child {
  border-left: none;
}

.topbar-nav a:hover,
.topbar-nav a.active {
  color: var(--red);
  background: #111111;
}

.menu-toggle {
  display: none;
}

/* =========================
   LOGO HOVER SWAP
========================= */
.logo-link {
  position: relative;
  display: inline-block;
}

.logo-link img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  display: block;
}

.logo-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.logo-link:hover .logo-hover {
  opacity: 1;
}

.logo-link:hover .logo-default {
  opacity: 0;
}


/* =========================
   HOME HERO
========================= */
.home-hero {
  position: relative;
  background: var(--soft);
  padding: 1px 20px 1px;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-hero-inner {
  width: min(100%, 900px);
  margin: 0 auto;
  text-align: center;
}

.main-hero-logo {
  width: min(100%, 760px);
  margin: 0 auto;
  object-fit: contain;
}

.hero-symbols {
  position: absolute;
  inset: 0;
  pointer-events: none;
}



/* =========================
   SHARED HEADINGS / BLOCKS
========================= */
.section-heading {
  margin-bottom: 34px;
}

.split-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

/* =========================
   CARDS
========================= */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 26px;
}

.service-card,
.review-card,
.blog-card,
.contact-card,
.contact-form,
.faq-item {
  background: var(--card-light);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(3px);
}

/* cards por cor de seção */
.section-dark .service-card,
.section-dark .review-card,
.section-dark .blog-card,
.section-dark .contact-card,
.section-dark .contact-form,
.section-dark .faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-soft .service-card,
.section-soft .review-card,
.section-soft .blog-card,
.section-soft .contact-card,
.section-soft .contact-form,
.section-soft .faq-item {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.section-red .service-card,
.section-red .review-card,
.section-red .blog-card,
.section-red .contact-card,
.section-red .contact-form,
.section-red .faq-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* =========================
   TAGS
========================= */
.style-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.style-tags span {
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--text-dark);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.5);
}
/* =========================
   STYLE RIBBON ABOVE GALLERY
========================= */
.style-marquee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  text-align: center;
  font-family: "Perandory", serif;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--soft);
}

.style-marquee .divider {
  color: var(--red);
  font-size: 0.8rem;
}

.style-marquee a {
  color: var(--soft);
  transition: 0.25s ease;
  position: relative;
}

.style-marquee a:hover {
  color: var(--red);
}

.style-marquee a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.25s ease;
}

.style-marquee a:hover::after {
  width: 100%;
}

@media (max-width: 768px){
  .style-marquee {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: start;
    gap: 10px;
    text-align: left;
    font-size: 1.2rem;
    margin-bottom: 18px;
  }

  .style-marquee .divider {
    display: none;
  }

  .style-marquee a {
    display: block;
    position: relative;
    padding-left: 18px;
  }

  .style-marquee a::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0.2em;
    font-size: 0.6rem;
    color: var(--red);
  }

  .style-marquee a::after {
    display: none;
  }

  .style-marquee a:hover {
  color: var(--red);
}

  .gallery-home {
    margin-top: 10px;
  }

  .gallery-slider {
    max-width: 100%;
  }

  .gallery-viewport {
    max-width: 100%;
  }

  .gallery-slide img {
    height: 220px;
    padding: 0;
  }

  .gallery-btn {
    width: 44px;
    font-size: 1.2rem;
    opacity: 1;
    background: rgba(0, 0, 0, 0.24);
  }

}



/* =========================
   GALLERY SLIDER
========================= */
.gallery-home {
  margin-top: 20px;
}

.gallery-slider {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
}

.gallery-viewport {
  overflow: hidden;
  width: 100%;
}

.gallery-track {
  display: flex;
  gap: 0;
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 calc(100% / 3);
  min-width: calc(100% / 3);
}

.gallery-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* no rounded corners */
.gallery-viewport,
.gallery-track,
.gallery-slide,
.gallery-slide img {
  border-radius: 0;
}

/* hover zones / arrows */
.gallery-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  border: none;
  background: rgba(0, 0, 0, 0.22);
  color: var(--white);
  font-size: 2rem;
  cursor: default;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease, color 0.25s ease;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-btn.prev {
  left: 0;
}

.gallery-btn.next {
  right: 0;
}

.gallery-slider:hover .gallery-btn {
  opacity: 1;
}

.gallery-btn:hover {
  background: rgba(180, 23, 23, 0.75);
  color: var(--white);
}

/* optional subtle dark fade on edges */
.gallery-btn.prev::after,
.gallery-btn.next::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gallery-btn.prev::after {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.18), transparent);
}

.gallery-btn.next::after {
  background: linear-gradient(to left, rgba(0, 0, 0, 0.18), transparent);
}

/* =========================
   HOME INTRO SECTION
========================= */
.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.intro-text {
  max-width: 680px;
}

.intro-title {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
}

.intro-title .script-text {
  font-size: 1.35em;
  text-transform: none;
}

.intro-text p + p {
  margin-top: 10px;
}

.intro-photo {
  display: flex;
  justify-content: flex-end;
}

.intro-portrait {
width:100%;
max-width:420px;
height:auto;
border-radius:60% / 60%;
object-fit:cover;
box-shadow:0 10px 35px rgba(0,0,0,0.35);
padding:8px;
background:var(--red);

}

.gallery-home {
  margin-top: 20px;
}



/* =========================
   REVIEW / BLOG GRIDS
========================= */

.review-card {
  display: flex;
  flex-direction: column;
  border-radius: 0;
  transition: transform 0.2s ease, border-color 0.2s ease;
  border-top: 3px solid var(--red);
  position: relative;
  overflow: hidden;
  padding: 30px 28px;
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,0,0,0.18);
}

.review-card p {
  margin-bottom: 20px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-stars {
  margin: 8px 0 14px;
  font-size: 1.35rem;
  letter-spacing: 2px;
  color: #b41717;
  line-height: 1;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-tag {
  display: inline-block;
  margin-top: 16px;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 600;
}

.review-source {
  color: var(--red);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
}

.review-link-wrap {
  margin-top: 8px;
}

.review-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #000;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
}

.review-link:hover {
  text-decoration: underline;
}

.review-link img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.review-meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5px;
}

/* =========================
   REVIEWS FILTERS
========================= */

.reviews-toolbar {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
  width: 100%;
}

.reviews-toolbar-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.reviews-reset-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  transition: 0.2s ease;
  cursor: pointer;
  box-sizing: border-box;
  border: 1px solid var(--black);
  color: var(--black);
  background: transparent;
}

.reviews-reset-btn:hover {
  background: var(--black);
  color: var(--white);
}

.reviews-select {
  height: 44px;
  min-width: 170px;
  padding: 0 40px 0 16px;
  border: 1px solid #d7cccc;
  border-radius: 999px;
  background-color: #ffffff;
  color: var(--black);
  font-size: 0.95rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  outline: none;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image:
    linear-gradient(45deg, transparent 50%, var(--red) 50%),
    linear-gradient(135deg, var(--red) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.reviews-select:focus {
  border-color: var(--red);
}

@media (max-width: 768px) {
  .reviews-toolbar-form {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .reviews-select,
  .reviews-reset-btn {
    width: 100%;
    min-width: 100%;
  }
}
/* =========================
   REVIEWS CAROUSEL
========================= */
.home-inline-readmore {
  color: var(--white);
  font-style: italic;
  font-weight: 400;
  text-decoration: underline;
  margin-left: 4px;
}

.home-inline-readmore:hover {
  color: var(--soft);
}

.reviews-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.reviews-viewport {
  overflow: hidden;
  width: 100%;
  padding: 8px 0;
}

.reviews-track {
  display: flex;
  gap: 18px;
  transition: transform 0.55s ease;
  will-change: transform;
}

.custom-review-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: calc((100% - 36px) / 3);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  padding: 22px 26px 24px;
  min-height: 245px;
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.custom-review-card h3 {
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.custom-review-card .review-stars {
  color: var(--black);
  letter-spacing: 0.18em;
  font-size: 1rem;
  margin-bottom: 16px;
}

.custom-review-card p {
  color: var(--white);
  margin-bottom: 18px;
}

.custom-review-card .review-source {
  display: block;
  color: var(--black);
  font-size: 0.92rem;
  margin-top: 10px;
}

.custom-review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.32);
}

.reviews-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--black);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s ease;
  flex-shrink: 0;
}

.reviews-arrow:hover {
  background: #111111;
  color: var(--soft);
  transform: scale(1.04);
}

.reviews-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.reviews-view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 12px 26px;
  background: var(--black);
  color: var(--white);
  border-radius: 999px;
  font-family: "Perandory", serif;
  font-size: 1.05rem;
  transition: 0.25s ease;
}

.reviews-view-all-btn:hover {
  background: #111111;
  color: var(--red);
}

/* responsive */
@media (max-width: 1024px) {
  .custom-review-card {
    flex: 0 0 calc((100% - 18px) / 2);
    min-width: calc((100% - 18px) / 2);
  }
}

@media (max-width: 768px) {
@media (max-width: 768px) {

  .reviews-slider {
    gap: 0;
    align-items: center;
  }

  .reviews-viewport {
    width: 100%;
    overflow: hidden;
    padding: 0;
  }

  .reviews-track {
    gap: 0;
  }

  .custom-review-card {
    flex: 0 0 100%;
    min-width: 100%;
    margin: 0;
  }

  .reviews-arrow {
    position: absolute;
    top: 95%;
    z-index: 5;
  }

  .reviews-prev {
    left: 8px;
  }

  .reviews-next {
    right: 13px;
  }
  
}
}

/* =========================
   BOOKING SECTION
========================= */
.booking-info {
  text-align: center;
  max-width: 720px;
  margin: auto;
}

.booking-info p {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.booking-layout {
  display: grid;
  gap: 40px;
}

.booking-heading h2 {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 0.95;
  color: var(--red);
}

.booking-heading .script-text {
  font-size: 1.2em;
  text-transform: none;
  color: var(--red);
}

.booking-content {
  display: grid;
  grid-template-columns: 1.65fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.booking-left {
  display: grid;
  gap: 30px;
}

.shop-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

.shop-map {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 4px 6px 12px rgba(0,0,0,0.06);
}

.shop-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: none;
  display: block;
}

.shop-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: stretch;
}

.shop-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 200px;
}

.shop-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shop-hours {
  opacity: 0.8;
  font-size: 0.9rem;
}

.shop-info h3 {
  color: var(--red);
  margin-bottom: 6px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
}

.shop-label {
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.shop-phone {
  color: var(--red);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.shop-info p {
  color: var(--white);
  margin-bottom: 2px;
}

.shop-address,
.shop-note {
  display: none;
}

.booking-right {
  display: grid;
  gap: 20px;
  align-content: start;
  padding-top: 8px;
}

.contact-block {
  display: grid;
  gap: 8px;
}

.booking-email {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  word-break: break-word;
}

.booking-email:hover {
  color: var(--red);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}

.social-icon {
  width: 36px;
  height: 36px;
  color: var(--white);
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg,
.social-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.social-icon-img img {
  filter: brightness(0) invert(1);
}

.social-icon:hover {
  transform: translateY(-2px);
  color: var(--red);
}

.social-icon-img:hover img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(93%) saturate(5302%) hue-rotate(355deg) brightness(88%) contrast(92%);
}

/* responsive */
@media (max-width: 1024px) {
  .booking-content {
    grid-template-columns: 1fr;
  }

  .booking-right {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .shop-card {
    grid-template-columns: 1fr;
  }

  .shop-map {
    height: 220px;
  }

  .booking-line-2,
  .booking-line-3 {
    margin-left: 0;
  }

  .booking-title {
    align-items: center;
    text-align: center;
    width: 100%;
  }
}

/* =========================
   BOOKING PAGE
========================= */

.booking-hero {
  padding-bottom: 36px;
}

.booking-hero .container.narrow {
  max-width: 860px;
}

/* ---------- Pricing ---------- */

.booking-pricing-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.booking-pricing-card {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 32px 40px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;

  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  align-items: start;
}

.pricing-label {
  font-family: "Symphony", cursive;
  color: var(--red);
  font-size: 4rem;
  line-height: 1;
  padding-top: 18px;
}

.pricing-content {
  border-left: 2px solid rgba(0, 0, 0, 0.1);
  padding-left: 24px;
}

.pricing-content p {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.4;
}

.pricing-content p:last-child {
  margin-bottom: 0;
}

/* ---------- Main booking block ---------- */

.booking-main-section {
  padding-top: 0;
}

.booking-main-box {
  width: 100%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  padding: 42px;
}

.booking-main-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.selected-files-list {
  margin-top: 10px;
}

.selected-file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  margin-top: 6px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
}

.selected-file-item button {
  background: transparent;
  border: none;
  color: #b41717;
  cursor: pointer;
  font-weight: 600;
}

/* ---------- Left side / shops ---------- */

.booking-page-left .booking-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.booking-page-left .shop-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  align-items: start;
  padding: 0 0 18px 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.booking-page-left .shop-card:last-child {
  padding-bottom: 0;
  margin-bottom: 20px;
}

.booking-page-left .shop-map {
  height: 100%;
  min-height: 200px;
}

.booking-page-left .shop-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.booking-page-left .shop-info {
  padding: 6px 0 0 0;
}

.booking-page-left .shop-top {
  margin-bottom: 18px;
}

.booking-page-left .shop-label {
  margin-bottom: 1px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.booking-page-left .shop-top h3 {
  margin-bottom: 1px;
  color: var(--red);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
}

.booking-page-left .shop-phone {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
}

.booking-page-left .shop-hours p {
  margin-bottom: 2px;
  color: var(--black);
}

.booking-subtitle {
  display: none;
}

/* ---------- Right side / form ---------- */

.booking-page-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-form-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.booking-form-card .form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.booking-form-card .form-row:last-of-type {
  margin-bottom: 0;
}

.booking-form-card label {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}

.booking-form-card input,
.booking-form-card select,
.booking-form-card textarea {
  width: 100%;
  border: 1px solid #d7cccc;
  border-radius: 16px;
  background: #ffffff;
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  padding: 18px 18px;
  outline: none;
  box-sizing: border-box;
}

.booking-form-card input,
.booking-form-card select {
  min-height: 54px;
}

.booking-form-card select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6.5 6 6.5-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

.booking-form-card textarea {
  resize: vertical;
  min-height: 190px;
}

.booking-form-card input:focus,
.booking-form-card select:focus,
.booking-form-card textarea:focus {
  border-color: var(--red);
}

.booking-form-card input[type="file"]::file-selector-button {
  margin-right: 12px;
  border: none;
  border-radius: 20px;
  background: var(--soft);
  color: var(--red);
  padding: 10px 14px;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
}

.booking-submit-btn {
  margin-top: 12px;
}

/* ---------- Messages ---------- */

.booking-success-message,
.booking-error-message {
  padding: 16px 18px;
  border-radius: 0;
  font-size: 0.98rem;
  line-height: 1.6;
}

.booking-success-message {
  background: #edf7ef;
  border: 1px solid #c7e3cc;
  color: #2f5d39;
}

.booking-error-message {
  background: #fbecec;
  border: 1px solid #efc5c5;
  color: #8a2f2f;
}

/* ---------- Helper content ---------- */

.booking-help-box {
  margin-top: 32px;
}

.booking-help-divider {
  width: 100%;
  height: 1px;
  background: var(--red);
  margin-bottom: 22px;
}

.booking-help-section {
  margin-bottom: 20px;
}

.booking-help-section:last-child {
  margin-bottom: 0;
}

.booking-help-section h4 {
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
}

.booking-help-section p,
.booking-help-section li {
  font-size: 0.96rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.78);
}

.booking-help-section ul {
  margin: 0;
  padding-left: 0;
}

.size-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.size-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 1px;
}

.size-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--red);
  font-size: 0.75rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .booking-main-grid {
    grid-template-columns: 1fr;
  }

  .booking-page-left .shop-card {
    grid-template-columns: 220px 1fr;
  }

  .booking-pricing-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pricing-content {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .booking-pricing-card {
    padding: 24px 22px;
  }

  .pricing-label {
    font-size: 2.3rem;
  }

  .booking-main-box {
    padding: 22px;
  }

  .booking-page-left .shop-card {
    grid-template-columns: 1fr;
  }

  .booking-page-left .shop-map {
    min-height: 220px;
  }

  .booking-page-left .shop-info {
    padding: 0;
  }
}
/* =========================
   CTA BANNER
========================= */
.cta-box {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  box-shadow: var(--shadow);
}
/* =========================
  PORTFOLIO PAGE
========================= */

.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.portfolio-filter-btn {
  background: #f4f1f1;
  border: 1px solid #d8d1d1;
  border-radius: 999px;
  padding: 0px 22px;
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: 400 !important;
  cursor: pointer;
  transition: all 0.2s ease;
}

.portfolio-filter-btn:hover {
  border-color: #b41717;
  color: #b41717;
}

.portfolio-filter-btn.active {
  background: #ffffff;
  border-color: #000000;
  color: #000000;
  font-weight: 600 !important;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  align-items: start;
}

.portfolio-item {
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0 !important;
  overflow: visible !important;
  aspect-ratio: auto !important;
  height: auto !important;
  min-height: 0 !important;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.portfolio-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-item img {
  display: block;
  width: 100%;
  height: auto !important;
  max-width: 100%;
  border-radius: 0 !important;
  object-fit: unset !important;
  aspect-ratio: auto !important;
  overflow: visible !important;
  transition: transform 0.3s ease;
}

.portfolio-item:hover img {
  transform: scale(1.03);
}

.portfolio-item img {
  background: #eee;
}

.portfolio-item img.loaded {
  background: none;
}

.portfolio-grid figure,
.portfolio-grid .portfolio-item,
.portfolio-grid .portfolio-item img {
  border-radius: 0 !important;
  overflow: visible !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: unset !important;
}

@media (max-width: 1400px) {
  .portfolio-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

  .portfolio-filters {
    gap: 10px;
  }

  .portfolio-filter-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

/* =========================
   PORTFOLIO FILTERS
========================= */

.portfolio-toolbar {
  margin-bottom: 34px;
}

.portfolio-filter-btn {
  background: #ffffff;
  border: 1px solid #d7cccc;
  color: var(--black);
}

.portfolio-filter-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: #ffffff;
}

.portfolio-filter-btn.active {
  border: 1px solid var(--black);
  color: var(--black);
  background: transparent;
}

.portfolio-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.portfolio-load-more-btn {
  height: 44px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid #000;
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.2s ease;
  color: var(--black) !important;
}

.portfolio-load-more-btn:hover,
.portfolio-load-more-btn:focus,
.portfolio-load-more-btn:active,
.portfolio-load-more-btn:visited {
  color: #fff;
  text-decoration: none;
}


.portfolio-load-more-btn:hover {
  background: #000;
  color: #fff;
}

.portfolio-lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.portfolio-lightbox.is-open {
  display: block;
}

.portfolio-lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9999;
}

.portfolio-lightbox-content {
  position: relative;
  z-index: 2;
  width: min(92vw, 1200px);
  height: min(90vh, 900px);
  margin: 5vh auto;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
}

.portfolio-lightbox-image-wrap {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.portfolio-lightbox-image-wrap img {
  max-width: 100%;
  max-height: calc(90vh - 110px);
  width: auto;
  height: auto;
  display: block;
  border-radius: 0 !important;
  object-fit: contain !important;
  background: transparent;
}

.portfolio-lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  font-size: 28px;
  line-height: 1;
  border-radius: 999px;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-lightbox-close:hover {
  background: var(--soft);
  color: var(--red);
}

.portfolio-lightbox-arrow {
  position: fixed;
  top: 50vh;
  transform: translateY(-50%);
  z-index: 10000;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-lightbox-prev {
  left: 24px;
}

.portfolio-lightbox-next {
  right: 24px;
}

.portfolio-lightbox-arrow:hover {
  background: #f2f2f2;
  box-shadow: 0 10px 24px rgba(0,0,0,0.32);
  transform: translateY(-50%) scale(1.06);
}

body.lightbox-open {
  overflow: hidden;
}

.portfolio-lightbox-image-wrap {
  position: relative;
}

.portfolio-lightbox-cta-wrap {
  margin-top: 8px;
  padding-bottom: 8px;
}

.portfolio-lightbox-cta {
  background: #b41717;
  color: #fff;

  padding: 12px 22px;
  border-radius: 999px;

  font-size: 0.95rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;

  text-decoration: none;
  white-space: nowrap;

  transition: 0.2s ease;
}

.portfolio-lightbox-cta:hover {
  background: #8e1111;
}

@media (max-width: 900px) {
  .portfolio-lightbox-content {
    width: min(94vw, 1000px);
    height: min(82vh, 800px);
  }

  .portfolio-lightbox-prev {
    left: 10px;
  }

  .portfolio-lightbox-next {
    right: 10px;
  }

  .portfolio-lightbox-close {
    top: 8px;
    right: 8px;
  }
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.portfolio-lightbox.is-open {
  display: block;
}

.portfolio-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

.portfolio-lightbox-content {
  position: relative;
  z-index: 2; /* MUITO importante */
}

/* =========================
   INNER PAGES
========================= */
.inner-page .page-hero {
  padding: 80px 20px 32px;
  text-align: center;
  background: var(--soft);
}

/* =========================
   FAQ
========================= */
.faq-list {
  display: grid;
  gap: 18px;
}

/* =========================
   BLOG
========================= */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #ffffff;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-image-link {
  display: block;
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.blog-card-content {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #b41717;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.blog-card h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-card p {
  margin: 0 0 16px;
  line-height: 1.5;
}

.blog-read-more {
  margin-top: auto;
  font-weight: 600;
  text-decoration: none;
  color: #b41717;
}

.single-post-page .container.narrow {
  text-align: left;
}

.post-back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
}

.post-back-link:hover {
  color: #b41717;
}

.post-title {
  font-family: "Symphony", serif !important;
  font-size: 3.2rem;
  line-height: 1.05;
  margin: 10px 0 14px;
}

.post-meta-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 0.95rem;
  opacity: 0.85;
}

.post-meta-separator {
  opacity: 0.6;
}

.post-date {
  margin-top: 6px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.post-content {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.post-featured-image {
  width: 100%;
  max-width: 720px;
  margin: 20px 0 30px;
}

.post-comments-link {
  color: inherit;
  text-decoration: none;
}

.post-comments-link:hover {
  color: #b41717; 
}

.post-comments-section {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.post-comments-section h2 {
  margin-bottom: 16px;
}

@media (max-width: 980px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   FOOTER
========================= */
.site-footer {
  margin-top: 0px;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.3fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-symbol {
  width: 80px;
  height: auto;
  margin-bottom: 16px;
}

.footer-column h4,
.footer-brand h3 {
  color: var(--white);
  margin-bottom: 14px;
}

.footer-column a,
.footer-column p,
.footer-brand p {
  color: var(--muted-light);
  display: block;
  margin-bottom: 10px;
}

.footer-spacer {
  margin-top: 26px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 34px;
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--muted-light);
}

/* =========================
   IMAGE SIZE CONTROL
========================= */
.hero-logo,
.brand-logo,
.footer-symbol,
.main-hero-logo {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .service-cards,
  .review-grid,
  .blog-grid,
  .portfolio-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .topbar-logo img,
  .logo-link img {
    width: 100px;
    height: 100px;
  }

  .main-hero-logo {
    width: min(100%, 650px);
  }

  .gallery-track {
    min-height: 560px;
  }

  .gallery-slide img {
    height: 560px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }


  .home-hero {
    min-height: 360px;
    padding: 40px 20px 54px;
  }

  .main-hero-logo {
    width: 100%;
    max-width: 560px;
  }

  .split-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-cards,
  .review-grid,
  .blog-grid,
  .portfolio-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-btn {
    display: none;
  }

  .gallery-track {
    min-height: auto;
  }

  .portfolio-item img {
    height: 100px;
  }


}

@media (max-width: 480px) {
  .topbar-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar-nav a {
    font-size: 0.95rem;
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .main-hero-logo {
    width: 100%;
  }

  .gallery-slide img {
    height: 180px;
  }

  .portfolio-item img {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .intro-grid,
  .booking-info-grid,
  .services-tags-grid {
    grid-template-columns: 1fr;
  }


  .intro-portrait {
    max-width: 360px;
    height: 460px;
  }

  .intro-title,
  .booking-heading h2 {
    text-align: center;
  }

  .services-tags-grid span {
    font-size: 0.95rem;
  }

   .intro-text {
    grid-column: 1 / -1;
  }

  .intro-title {
    grid-area: title;
    text-align: left;
    font-size: 1.35rem;
    line-height: 1.02;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 700;
  }

  .intro-text p {
    font-family: "Montserrat", sans-serif !important;
    font-size: 0.98rem !important;
    line-height: 1.5 !important;
    letter-spacing: 0 !important;
    text-align: left;
    margin: 0;
    color: var(--white);
  }

  .intro-text p + p {
    margin-top: 14px !important;
  }

  .intro-photo {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: 6px;
  }

.intro-photo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 6px;
}
}

@media (max-width: 1024px) {
  .gallery-slide {
    flex: 0 0 50%;
    min-width: 50%;
  }

  .gallery-slide img {
    height: 380px;
  }
}


/* =========================
   MOBILE OVERRIDES - HOME / HEADER
========================= */
.menu-toggle {
  display: none;
}

@media (max-width: 768px) {

  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 90x;
    grid-template-areas:
      "title photo"
      "text text";
    gap: 12px 14px;
    align-items: start;
    margin-bottom: 34px;
  }


  .intro-title {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 700;
    line-height: 1.06 !important;
  }

  .style-marquee {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: start;
    gap: 1px;
    text-align: left;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .style-marquee .divider {
    display: none;
  }

  .style-marquee a {
    display: block;
    position: relative;
    padding-left: 18px;
  }

  .style-marquee a::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0.5em;
    font-size: 0.7rem;
    color: var(--red);
  }

  .style-marquee a::after {
    display: none;
  }

  .gallery-home {
    margin-top: 10px;
  }

  .gallery-slide img {
    height: 220px;
    padding: 0;
  }

  .gallery-btn {
    width: 44px;
    font-size: 1.2rem;
    opacity: 1;
    background: rgba(0, 0, 0, 0.24);
  }
}

@media (max-width: 480px) {
  .gallery-slide img {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .topbar-logo {
    display: none !important;
  }

  .top-hero-header {
    padding: 10px 0 0;
    min-height: 0;
  }

  .home-hero {
    padding-top: 12px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 14px;
    top: 10px;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: var(--black);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 1001;
  }

  .topbar-wrap {
    position: relative;
    display: block;
    width: 100%;
    margin-left: 0;
    min-height: 44px;
  }

  .topbar-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(82vw, 320px);
    height: 100vh;
    background: var(--black);
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 24px 24px;
    z-index: 1000;
    transition: left 0.28s ease;
  }

  .topbar-nav.open {
    left: 0;
  }

  .topbar-nav a {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    font-size: 1.1rem;
  }
}

/* =========================
   CONTACT PAGE - MOBILE TIGHTENING
========================= */
@media (max-width: 768px) {
  .booking-hero {
    padding-top: 28px;
    padding-bottom: 14px;
  }

  .booking-pricing-section {
    padding-top: 8px;
    padding-bottom: 14px;
  }

  .booking-main-section {
    padding-top: 6px;
    padding-bottom: 32px;
  }

  .booking-pricing-card {
    padding: 20px;
  }

  .booking-main-box {
    padding: 20px;
  }

  .booking-left {
    gap: 18px;
  }

  .shop-card {
    display: block;
    gap: 0;
    padding-bottom: 10px;
  }

  .shop-map {
    display: none !important;
  }

  .shop-info {
    display: block;
    height: auto;
  }

  .shop-top {
    margin-bottom: 10px;
  }

  .shop-top h3 {
    margin-bottom: 4px;
  }

  .shop-phone {
    margin-bottom: 8px;
  }

  .shop-address {
    margin: 4px 0 10px;
    font-size: 0.95rem;
    line-height: 1.45;
    color: rgba(0, 0, 0, 0.78);
  }

  .shop-hours {
    opacity: 1;
    font-size: 0.95rem;
  }

  .shop-note {
    margin-top: 6px;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--red);
    font-weight: 600;
  }

  .shop-address,
  .shop-note {
    display: block;
  }

}

@media (max-width: 768px) {
  .shops-section {
    display: none;
  }

  .booking-help-divider {
    display: none;
}

.booking-subtitle {
  display: block;
  font-size: 1.8rem;
  margin: 28px 0 12px;
}

.section-soft .booking-subtitle {
  color: var(--text-dark);
}

.booking-subtitle .script-text {
  font-size: 1.2em;
}

.pricing-content p {
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.4;
}

  .booking-pricing-card,
  .booking-info-card {
    margin-top: 0; /* ajusta aqui */
  }

  .booking-left {
    gap: 16px; /* diminui o espaço entre os blocos */
  }

.booking-help-box {
  margin-top: 0;
}

.booking-main-box {
  padding-top: 0;
}

.booking-main-grid {
  padding-top: 0;
}

.pricing-label {
  padding-top: 0;
}

.booking-subtitle {
  margin-top: 10px;
}

}

@media (max-width: 768px) {
  .portfolio-toolbar-form {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .portfolio-filter-btn {
    width: auto;
    min-width: unset;
    height: 36px;
    padding: 0 14px;
    font-size: 0.85rem;
  }
}

/* =========================
   TEST - 2 COLUNAS MOBILE
========================= */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .portfolio-item img {
    height: 160px;
    object-fit: cover;
  }
}

.faq-section-title {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-left: 5px;
}

/* =========================
   FAQ SIGNATURE TEXT
========================= */
.faq-signature {
  display: block;
  margin-top: 30px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.4;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

@media (max-width: 900px) {
  .portfolio-lightbox-content {
    width: min(94vw, 1000px);
    height: auto;
    max-height: 88vh;
    margin: 3vh auto;
    grid-template-rows: auto auto;
    gap: 10px;
  }

  .portfolio-lightbox-image-wrap {
    height: auto;
    overflow: visible;
  }

  .portfolio-lightbox-image-wrap img {
    max-width: 100%;
    max-height: 68vh;
    width: auto;
    height: auto;
  }

  .portfolio-lightbox-cta-wrap {
    margin-top: 0;
    padding-bottom: 0;
  }

  .portfolio-lightbox-prev {
    left: 10px;
  }

  .portfolio-lightbox-next {
    right: 10px;
  }

  .portfolio-lightbox-close {
    top: 8px;
    right: 8px;
  }
}
