@font-face {
  font-family: "Vonca";
  src: url("./assets/fonts/Vonca-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vonca";
  src: url("./assets/fonts/Vonca-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rovelle Uno";
  src: url("./assets/fonts/RovelleUno-Thin.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rovelle Uno";
  src: url("./assets/fonts/RovelleUno-Book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-black: #000000;
  --brand-beige: #cebcaa;
  --brand-cru: #e7ded1;
  --brand-off: #f3efe7;
  --bg: #f3efe7;
  --surface: #fdfbf8;
  --text: #000000;
  --muted: #352f2a;
  --line: #e7ded1;
  --accent: #cebCAA;
  --accent-strong: #a8927b;
  --radius: 14px;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 20px 45px rgba(0, 0, 0, 0.08);
  --section-space: 3.4rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Rovelle Uno", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  max-width: 100%;
  overflow-x: clip;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: min(24vw, 300px);
  background-image: url("./assets/brand/logo-bg-lateral-suave.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.7;
  filter: saturate(1.1) contrast(1.08);
  pointer-events: none;
  z-index: 0;
}

body::before {
  left: 14px;
}

body::after {
  right: 14px;
}

.header,
main,
.footer {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

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

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 600;
  margin-bottom: 0.7rem;
}

h1,
h2,
h3 {
  font-family: "Vonca", "Inter", sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.85rem;
}

h1 {
  font-size: clamp(1.9rem, 5vw, 3.35rem);
}

h2 {
  font-size: clamp(1.5rem, 4.2vw, 2.45rem);
}

h3 {
  font-size: 1.08rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-weight: 300;
}

/* Header fixo com efeito de vidro suave */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
  background: rgba(243, 239, 231, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.header.scrolled {
  background: rgba(253, 251, 248, 0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  border-color: #d9cebf;
}

.nav-wrapper {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  max-width: 230px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-1px);
}

.brand-logo {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.menu-toggle span {
  height: 2px;
  width: 100%;
  background: #1f1a17;
  border-radius: 999px;
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.22s ease;
}

.menu-toggle[aria-expanded="true"] {
  border-color: #d9cebf;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  position: absolute;
  top: 78px;
  right: 4%;
  left: 4%;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-12px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease,
    max-height 0.36s ease;
}

.nav a {
  color: #1f1a17;
  font-weight: 400;
  font-size: 0.95rem;
  position: relative;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.nav a:not(.btn):hover::after {
  transform: scaleX(1);
}

.nav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  max-height: 75vh;
  transform: translateY(0) scale(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bdaa94;
  background: var(--accent);
  color: #1e1713;
  border-radius: 12px;
  font-family: "Vonca", "Inter", sans-serif;
  font-weight: 400;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background: #d8c7b5;
}

.btn-sm {
  padding: 0.6rem 1rem;
}

.btn-lg {
  padding: 0.86rem 1.25rem;
}

/* Hero com duas colunas em telas maiores */
.hero {
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.hero::before {
  width: 240px;
  height: 240px;
  right: -80px;
  top: 34px;
  background: radial-gradient(circle, rgba(205, 166, 160, 0.19), rgba(205, 166, 160, 0));
  animation: floatBlob 8.5s ease-in-out infinite;
}

.hero::after {
  width: 190px;
  height: 190px;
  left: -70px;
  bottom: 20px;
  background: radial-gradient(circle, rgba(221, 194, 188, 0.18), rgba(221, 194, 188, 0));
  animation: floatBlob 9.5s ease-in-out infinite reverse;
}

.hero-grid {
  display: grid;
  gap: 1.8rem;
}

.hero-content p {
  max-width: 52ch;
}

.hero-media img {
  min-height: 300px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  transition: transform 0.6s ease, box-shadow 0.5s ease;
}

.hero-media:hover img {
  transform: scale(1.02);
  box-shadow: 0 24px 60px rgba(35, 25, 23, 0.13);
}

.section-head {
  max-width: 68ch;
  margin-bottom: 1.6rem;
}

/* Bloco institucional abaixo do hero */

.showcase {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.showcase img {
  width: 100%;
  min-height: 240px;
  max-height: 520px;
  object-fit: cover;
  border-radius: 0;
}

.showcase-text {
  padding: 1.3rem 1.1rem 1.5rem;
}

.showcase-text h2 {
  margin-bottom: 0.5rem;
}

.showcase-text p {
  margin-bottom: 0;
  max-width: none;
}

/* Bloco com 4 imagens e narrativa do atendimento */

.bridal-story-grid {
  display: grid;
  gap: 1.2rem;
}

.bridal-gallery {
  position: relative;
  display: grid;
  gap: 1rem;
}

.bridal-featured {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.bridal-featured img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 0;
}

.bridal-slider {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.bridal-track {
  display: flex;
  transition: transform 0.55s ease;
}

.bridal-slide {
  margin: 0;
  min-width: 100%;
}

.bridal-slide img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(20, 16, 14, 0.38);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.25s ease, transform 0.25s ease;
}

.slider-btn:hover {
  background: rgba(20, 16, 14, 0.56);
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  z-index: 2;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.slider-dot.active {
  transform: scale(1.25);
  background: #ffffff;
}

.bridal-text {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.4rem 1.2rem;
  box-shadow: var(--shadow-sm);
}

.bridal-text h2 {
  margin-bottom: 0.75rem;
}

.bridal-text p:last-child {
  margin-bottom: 0;
}

/* Bloco de treinamentos com colagem editorial */

.training-grid {
  display: grid;
  gap: 1.2rem;
}

.training-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.training-mobile-slider {
  display: none;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.training-mobile-track {
  display: flex;
  transition: transform 0.55s ease;
}

.training-slide {
  margin: 0;
  min-width: 100%;
}

.training-slide img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 0;
}

.training-copy {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.4rem 1.2rem;
  box-shadow: var(--shadow-sm);
}

.training-copy p:last-child {
  margin-bottom: 0;
}

.training-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.training-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.training-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}

/* Cards de serviços */
.cards {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(205, 166, 160, 0.17);
  color: var(--accent-strong);
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.icon-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.94;
}

.lift-card:hover {
  transform: translateY(-8px);
  border-color: #e7d9d6;
  box-shadow: 0 20px 38px rgba(32, 22, 22, 0.1);
}

.lift-card:hover .icon {
  transform: scale(1.08);
  background: rgba(205, 166, 160, 0.25);
}

/* Seção sobre */
.about-grid {
  display: grid;
  gap: 1.4rem;
}

.about-media img {
  min-height: 330px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  transition: transform 0.6s ease;
}

.about-media:hover img {
  transform: scale(1.02);
}

/* Depoimentos */
.testimonials {
  display: grid;
  gap: 1rem;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.testimonial p {
  color: #413a3d;
}

.testimonial h3 {
  margin-bottom: 0.2rem;
}

.testimonial span {
  color: #7d7478;
  font-size: 0.92rem;
}

/* Bloco CTA final */
.cta {
  background: linear-gradient(130deg, #f5eeec, #faf8f7);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem 1.3rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(28, 20, 20, 0.12);
}

.cta p {
  margin-inline: auto;
  max-width: 55ch;
}

/* Rodapé */
.footer {
  padding: 2.2rem 0 2.8rem;
}

.footer-content {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.4rem;
}

.footer p {
  margin: 0;
  color: #4a4139;
  font-size: 0.94rem;
}

.footer a:hover {
  color: var(--accent-strong);
}

.footer-symbol {
  width: 48px;
  height: 48px;
  border-radius: 0;
  margin-bottom: 0.5rem;
}

/* Modal Produtos Rigolim */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 14, 0.36);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 220;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.products-modal {
  width: min(520px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 1.35rem 1.25rem;
  position: relative;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.3s ease;
}

.modal-backdrop.active .products-modal {
  transform: translateY(0) scale(1);
}

.products-modal h3 {
  margin-bottom: 0.5rem;
}

.products-modal p:last-child {
  margin-bottom: 0;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #3a312a;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Widget flutuante de chat */
.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 230;
  display: grid;
  justify-items: end;
  gap: 0.85rem;
}

.chat-toggle {
  min-width: 132px;
  min-height: 58px;
  border: 1px solid rgba(169, 146, 123, 0.45);
  border-radius: 999px;
  background: linear-gradient(135deg, #231c18, #4b3d34 60%, #a8927b 130%);
  color: #f9f4ec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.85rem 1.1rem;
  box-shadow: 0 20px 42px rgba(35, 26, 22, 0.28);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}

.chat-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 48px rgba(35, 26, 22, 0.34);
}

.chat-toggle[aria-expanded="true"] {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.96);
}

.chat-toggle-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  position: relative;
}

.chat-toggle-icon span {
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.chat-toggle-icon span:nth-child(1) {
  transform: translateY(-5px);
}

.chat-toggle-icon span:nth-child(3) {
  transform: translateY(5px);
}

.chat-toggle-label {
  font-family: "Vonca", "Inter", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.chat-panel {
  position: absolute;
  bottom: calc(100% + 0.85rem);
  right: 0;
  width: min(380px, calc(100vw - 24px));
  max-height: min(72vh, 640px);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  background: rgba(252, 248, 243, 0.96);
  border: 1px solid rgba(206, 188, 170, 0.95);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(24, 18, 15, 0.22);
  backdrop-filter: blur(14px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
}

.chat-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chat-panel-header {
  padding: 1.1rem 1.15rem 0.9rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(231, 222, 209, 0.72), rgba(231, 222, 209, 0.18));
  border-bottom: 1px solid rgba(206, 188, 170, 0.75);
}

.chat-panel-header h3 {
  margin-bottom: 0;
  font-size: 1.15rem;
}

.chat-kicker {
  margin-bottom: 0.28rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #766355;
}

.chat-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(169, 146, 123, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: #3a2d26;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.chat-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.15rem 0;
  color: #5c4b40;
  font-size: 0.86rem;
}

.chat-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3baf67;
  box-shadow: 0 0 0 6px rgba(59, 175, 103, 0.12);
}

.chat-messages {
  padding: 1rem 1.15rem 1.2rem;
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.chat-message {
  max-width: 86%;
  padding: 0.9rem 0.95rem 0.8rem;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(24, 18, 15, 0.07);
}

.chat-message p {
  margin-bottom: 0.4rem;
  color: #2f2722;
  font-size: 0.97rem;
  line-height: 1.55;
}

.chat-message span {
  display: block;
  font-size: 0.74rem;
  color: #74655a;
}

.chat-message-bot {
  justify-self: start;
  background: #fffdf9;
  border: 1px solid rgba(206, 188, 170, 0.58);
  border-bottom-left-radius: 6px;
}

.chat-message-user {
  justify-self: end;
  background: linear-gradient(135deg, #cbb6a0, #b79d83);
  border-bottom-right-radius: 6px;
}

.chat-message-user p,
.chat-message-user span {
  color: #1f1713;
}

.chat-message-highlight {
  background: linear-gradient(135deg, rgba(231, 222, 209, 0.88), rgba(243, 239, 231, 0.9));
}

.chat-form {
  padding: 0.9rem 1rem 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  border-top: 1px solid rgba(206, 188, 170, 0.72);
  background: rgba(255, 252, 247, 0.85);
}

.chat-form textarea {
  width: 100%;
  resize: none;
  border: 1px solid rgba(169, 146, 123, 0.32);
  border-radius: 16px;
  background: #fffcf8;
  padding: 0.95rem 1rem;
  font: inherit;
  color: #231c18;
  line-height: 1.45;
  min-height: 54px;
  max-height: 124px;
}

.chat-form textarea:focus {
  outline: none;
  border-color: #a8927b;
  box-shadow: 0 0 0 4px rgba(168, 146, 123, 0.12);
}

.chat-send {
  min-width: 94px;
  border: 0;
  border-radius: 16px;
  background: #241d19;
  color: #f8f3eb;
  padding: 0.95rem 1rem;
  font-family: "Vonca", "Inter", sans-serif;
  font-size: 0.96rem;
  cursor: pointer;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.chat-send:hover {
  transform: translateY(-1px);
}

.chat-send:disabled {
  opacity: 0.55;
  cursor: wait;
}

/* Animação de entrada discreta */
.reveal {
  opacity: 0;
  transform: none;
  filter: blur(8px);
  transition: opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.05s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.reveal-left {
  transform: none;
}

.reveal-right {
  transform: none;
}

.reveal-left.visible,
.reveal-right.visible {
  transform: none;
}

.parallax-soft {
  will-change: auto;
}

@keyframes floatBlob {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 759px) {
  :root {
    --section-space: 1.9rem;
  }

  .container {
    width: calc(100% - 2rem);
  }

  .nav-wrapper {
    gap: 0.75rem;
  }

  .logo {
    max-width: min(240px, calc(100vw - 120px));
  }

  #sobre .about-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }

  body::before,
  body::after {
    display: none;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  /* Reduz TODAS as imagens para 2/3 da altura original no mobile */
  .section-showcase .showcase img {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
  }

  .training-slide img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
  }

  .section-training .training-slide {
    aspect-ratio: 1 / 1;
  }

  .section-training .training-slide img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
  }

  .section-bridal-story .bridal-slide {
    aspect-ratio: 1 / 1;
  }

  .section-bridal-story .bridal-slide img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
  }

  .section-bridal-story .bridal-featured {
    aspect-ratio: 1 / 1;
  }

  .section-bridal-story .bridal-featured img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
  }

  .hero-media img {
    aspect-ratio: 1 / 1;
    max-height: 50vh;
    object-fit: cover;
    object-position: center 22%;
  }

  .about-media {
    aspect-ratio: 1 / 1;
  }

  .about-media img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
  }

  .training-gallery {
    display: none;
  }

  .training-mobile-slider {
    display: block;
  }

  #sobre .about-content {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.1rem 1rem;
    box-shadow: var(--shadow-sm);
    margin-top: 0.35rem;
    position: static;
  }

  #sobre .about-media {
    position: static;
  }

  #sobre .about-media.reveal,
  #sobre .about-content.reveal {
    transform: none;
  }

  .about-content h2 {
    font-size: clamp(1.35rem, 6.2vw, 1.75rem);
    line-height: 1.25;
    color: #1d1714;
  }

  .about-content p {
    color: #2f2925;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
  }

  .hero-grid {
    gap: 1.05rem;
  }

  .hero-content .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.6rem;
  }

  .hero-content h1 {
    font-size: clamp(2.22rem, 9.5vw, 2.75rem);
    line-height: 1.08;
    margin-bottom: 0.7rem;
  }

  .hero-content p {
    font-size: 1.12rem;
    line-height: 1.55;
    color: #241e1a;
    margin-bottom: 1rem;
  }

  .hero-content .btn-lg {
    min-height: 50px;
    padding: 0.86rem 1.2rem;
    font-size: 1.03rem;
  }

  /* hero-media ja definido acima com 2/3 */

  .chat-widget {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: auto;
    z-index: 230;
    display: grid;
    justify-items: end;
    gap: 0.85rem;
  }

  .chat-toggle {
    min-width: 120px;
    min-height: 54px;
  }

  .chat-panel {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    max-width: 100vw;
    max-height: min(76vh, 620px);
    border-radius: 20px 20px 0 0;
    transform-origin: bottom center;
  }

  .chat-form {
    grid-template-columns: 1fr;
  }

  .chat-send {
    width: 100%;
  }
}

@media (min-width: 760px) {
  .logo {
    max-width: 300px;
  }

  .menu-toggle {
    display: none;
  }

  .nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    width: auto;
    gap: 1.2rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: none;
    overflow: visible;
    transform: none;
    transition: none;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 2rem;
  }

  .cards,
  .testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-text {
    padding: 1.8rem 1.7rem 2rem;
  }

  .bridal-story-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 1.6rem;
  }

  .bridal-text {
    padding: 2rem 1.8rem;
    position: sticky;
    top: 106px;
  }

  .training-grid {
    gap: 1.4rem;
  }

  .training-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.7rem;
  }

  .training-mobile-slider {
    display: none;
  }

  .training-copy {
    padding: 2rem 1.8rem;
  }

  .cta {
    padding: 3rem 2.2rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --section-space: 4.4rem;
  }

  .cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .testimonials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}