@import url("https://fonts.googleapis.com/css2?family=Alex+Brush&family=Marcellus&display=swap");

:root {
  --markus-accent: #849b82;
  --markus-ink: #263128;
  --markus-text: #657066;
  --markus-text-dark: #465248;
  --markus-soft: #eef3ec;
  --markus-white: #ffffff;
  --markus-border: #a7b5a5;
  --markus-font: "Marcellus", serif;
  --markus-script: "Alex Brush", cursive;
  --markus-container: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.markus-elements-page {
  margin: 0;
  background: var(--markus-white);
  color: var(--markus-text);
  font-family: var(--markus-font);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.markus-elements-page img {
  display: block;
  max-width: 100%;
}

.markus-elements-page a {
  color: inherit;
  text-decoration: none;
}

.markus-elements-page button,
.markus-elements-page input {
  font: inherit;
}

.markus-elements-page button {
  border: 0;
  cursor: pointer;
}

.markus-container {
  width: min(100% - 40px, var(--markus-container));
  margin-inline: auto;
}

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

/* ========================================================
   ELEMENTO 01: BOTÃO
   ======================================================== */
.markus-button-showcase {
  min-height: 410px;
  display: grid;
  place-items: center;
  padding: 90px 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(199, 134, 101, 0.13), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8f5f2 100%);
  text-align: center;
}

.markus-button-showcase__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.markus-eyebrow {
  margin: 0 0 8px;
  color: var(--markus-accent);
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.markus-button-showcase__title {
  margin: 0 0 34px;
  color: var(--markus-ink);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.15;
}

.markus-button-frame {
  display: inline-flex;
  padding: 5px;
  background: var(--markus-accent);
  box-shadow: 0 12px 35px rgba(80, 47, 31, 0.16);
}

.markus-rsvp-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 56px;
  padding: 13px 66px;
  overflow: hidden;
  border: 1px solid var(--markus-white);
  background: var(--markus-accent);
  color: var(--markus-white) !important;
  font-size: 16px;
  line-height: 1;
  transition: color 180ms ease, transform 180ms ease;
}

.markus-rsvp-button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--markus-white);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
}

.markus-rsvp-button:hover,
.markus-rsvp-button:focus-visible {
  color: var(--markus-accent) !important;
}

.markus-rsvp-button:hover::before,
.markus-rsvp-button:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.markus-rsvp-button:active {
  transform: scale(0.98);
}

/* ========================================================
   ELEMENTO 02: O CASAL
   ======================================================== */
.markus-couple-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--markus-white);
}

.markus-couple-section__side-shape {
  position: absolute;
  top: 80px;
  right: 0;
  width: 294px;
  pointer-events: none;
  animation: markus-float-y 4s ease-in-out infinite;
}

.markus-couple-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(420px, 2fr) minmax(230px, 1fr);
  align-items: center;
  gap: 46px;
}

.markus-person-card__name {
  margin: 0 0 14px;
  color: var(--markus-ink);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}

.markus-person-card__role {
  margin: 0 0 30px;
  color: var(--markus-accent);
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 1.3;
}

.markus-person-card__description {
  margin: 0 0 42px;
  color: var(--markus-text);
  line-height: 1.75;
}

.markus-person-card--bride {
  text-align: right;
}

.markus-person-card--bride .markus-person-card__description {
  max-width: 295px;
  margin-left: auto;
}

.markus-person-card__socials {
  display: flex;
  align-items: center;
  gap: 28px;
}

.markus-person-card--bride .markus-person-card__socials {
  justify-content: flex-end;
}

.markus-person-card__socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.markus-person-card__socials a:hover,
.markus-person-card__socials a:focus-visible {
  opacity: 0.7;
  transform: translateY(-4px);
}

.markus-person-card__socials img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.markus-couple-portraits {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 505px;
  padding: 45px 0;
}

.markus-couple-portraits__shape {
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.markus-couple-portraits__shape--left {
  bottom: -3px;
  left: -12px;
  width: 224px;
}

.markus-couple-portraits__shape--right {
  top: 0;
  right: -4px;
  width: 197px;
}

.markus-couple-portraits__photo {
  position: relative;
  z-index: 2;
  width: min(63%, 403px);
  margin: 0;
}

.markus-couple-portraits__photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.markus-couple-portraits__photo--bride {
  z-index: 3;
  margin-left: -150px;
}

.markus-couple-portraits__photo--bride img {
  border: 15px solid var(--markus-white);
}

/* ========================================================
   ELEMENTO 03: CELEBRAÇÃO
   ======================================================== */
.markus-celebrations {
  position: relative;
  overflow: hidden;
  background: var(--markus-soft);
}

.markus-celebrations__shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  animation: markus-float-y 5s ease-in-out infinite;
}

.markus-celebrations__shape--one {
  top: 1%;
  left: 40%;
  width: 394px;
}

.markus-celebrations__shape--two {
  top: 0;
  right: 5%;
  width: 285px;
  animation-delay: -1.5s;
}

.markus-celebrations__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: center;
  gap: 38px;
}

.markus-celebrations__content {
  position: relative;
  z-index: 3;
  padding: 110px 0 92px;
}

.markus-section-heading {
  margin-bottom: 50px;
}

.markus-section-heading__subtitle {
  margin: 0 0 3px;
  color: var(--markus-accent);
  font-family: var(--markus-script);
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1;
}

.markus-section-heading__title {
  margin: 0;
  color: var(--markus-ink);
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.15;
}

.markus-celebration-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 25px 0;
  border-bottom: 1px dashed #7b7b7b;
}

.markus-celebration-item:last-child {
  border-bottom: 0;
}

.markus-celebration-item__icon {
  flex: 0 0 91px;
  display: grid;
  place-items: center;
  width: 91px;
  height: 91px;
}

.markus-celebration-item__icon img {
  width: 91px;
  height: 91px;
  object-fit: contain;
}

.markus-celebration-item__title {
  margin: 0 0 9px;
  color: var(--markus-ink);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.markus-celebration-item__text {
  margin: 0;
  color: var(--markus-text);
}

.markus-celebration-item__text strong {
  color: var(--markus-text-dark);
  font-weight: 400;
}

.markus-celebrations__visual {
  align-self: end;
  height: 926px;
  overflow: hidden;
}

.markus-celebrations__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

/* ========================================================
   ELEMENTO 04: RODAPÉ
   ======================================================== */
.markus-footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.markus-footer__background {
  background-color: #f1ece8;
  background-image: url("../images/footer/footer-Bg1_2.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.markus-footer__logos {
  margin-bottom: 99px;
  border-bottom: 1px solid var(--markus-border);
}

.markus-footer__logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.markus-footer__logo-card {
  min-height: 165px;
  display: grid;
  place-items: center;
  padding: 26px 15px;
  border-right: 1px solid #999999;
}

.markus-footer__logo-card:first-child {
  border-left: 1px solid #999999;
}

.markus-footer__logo-card img {
  max-height: 98px;
  width: auto;
  object-fit: contain;
  transition: transform 260ms ease, opacity 260ms ease;
}

.markus-footer__logo-card:hover img {
  opacity: 0.7;
  transform: translateY(-4px);
}

.markus-footer__main {
  position: relative;
  padding-bottom: 118px;
  border-bottom: 1px solid var(--markus-border);
}

.markus-footer__decor {
  position: absolute;
  right: 0;
  bottom: 39px;
  z-index: 0;
  width: 242px;
  animation: markus-float-y 5s ease-in-out infinite;
}

.markus-footer__columns {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 52px;
}

.markus-footer__title {
  margin: 0 0 34px;
  color: var(--markus-accent);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.markus-footer__text {
  max-width: 281px;
  margin: 0 0 26px;
  color: var(--markus-text-dark);
}

.markus-footer__socials {
  display: flex;
  align-items: center;
  gap: 32px;
}

.markus-footer__socials a {
  display: grid;
  place-items: center;
  width: 30px;
  min-height: 30px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.markus-footer__socials a:hover,
.markus-footer__socials a:focus-visible {
  opacity: 0.65;
  transform: translateY(-3px);
}

.markus-footer__socials img {
  max-width: 30px;
  max-height: 30px;
}

.markus-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.markus-footer__links li {
  position: relative;
  padding-left: 22px;
}

.markus-footer__links li::before {
  position: absolute;
  top: 18px;
  left: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7c7c7c;
  content: "";
}

.markus-footer__links a {
  color: var(--markus-text-dark);
  line-height: 40px;
  transition: color 200ms ease, padding-left 200ms ease;
}

.markus-footer__links a:hover,
.markus-footer__links a:focus-visible {
  color: var(--markus-accent);
  padding-left: 4px;
}

.markus-footer__form {
  position: relative;
  max-width: 330px;
}

.markus-footer__form input {
  width: 100%;
  height: 60px;
  padding: 0 68px 0 39px;
  border: 1px solid #c3c3c3;
  border-radius: 80px;
  outline: 0;
  background: #fdfdfd;
  color: var(--markus-ink);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.markus-footer__form input:focus {
  border-color: var(--markus-accent);
  box-shadow: 0 0 0 4px rgba(199, 134, 101, 0.14);
}

.markus-footer__form button {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 45px;
  height: 45px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  transform: translateY(-50%);
  transition: transform 200ms ease;
}

.markus-footer__form button:hover,
.markus-footer__form button:focus-visible {
  transform: translateY(-50%) scale(1.08);
}

.markus-footer__form button circle {
  fill: var(--markus-accent);
}

.markus-footer__form button path {
  fill: var(--markus-white);
}

.markus-footer__form-message {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--markus-accent);
  font-size: 14px;
}

.markus-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.markus-footer__bottom > p {
  margin: 0;
  color: var(--markus-ink);
  font-weight: 500;
}

.markus-footer__contacts {
  display: flex;
  align-items: center;
  gap: 72px;
}

.markus-footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--markus-ink) !important;
}

.markus-footer__contact-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--markus-accent);
  font-size: 24px;
}

.markus-back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--markus-accent);
  color: var(--markus-white);
  box-shadow: 0 10px 30px rgba(59, 35, 23, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.markus-back-to-top.markus-back-to-top--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ========================================================
   ESTADOS DE ENTRADA DO JULIA.JS
   ======================================================== */
[data-julia-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-julia-reveal="left"] {
  transform: translateX(45px);
}

[data-julia-reveal="right"] {
  transform: translateX(-45px);
}

[data-julia-reveal="up"] {
  transform: translateY(45px) scale(0.98);
}

[data-julia-reveal].julia-reveal--visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@keyframes markus-float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ========================================================
   RESPONSIVIDADE
   ======================================================== */
@media (max-width: 1399px) {
  .markus-couple-section__side-shape,
  .markus-footer__decor {
    display: none;
  }

  .markus-celebrations__shape {
    opacity: 0.2;
  }
}

@media (max-width: 1199px) {
  .markus-couple-grid {
    grid-template-columns: 1fr 1.6fr 1fr;
    gap: 24px;
  }

  .markus-person-card__role {
    margin-bottom: 15px;
    font-size: 14px;
  }

  .markus-person-card__description {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .markus-celebrations__grid {
    grid-template-columns: 1fr;
  }

  .markus-celebrations__content {
    max-width: 760px;
    margin-inline: auto;
  }

  .markus-celebrations__visual {
    display: none;
  }

  .markus-footer__logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .markus-footer__logo-card:nth-child(4) {
    border-left: 1px solid #999999;
  }

  .markus-footer__columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .markus-couple-section {
    padding: 90px 0;
  }

  .markus-couple-grid {
    grid-template-columns: 1fr;
  }

  .markus-couple-portraits {
    order: -1;
    width: min(100%, 670px);
    margin-inline: auto;
  }

  .markus-person-card,
  .markus-person-card--bride {
    max-width: 650px;
    margin-inline: auto;
    text-align: center;
  }

  .markus-person-card--bride .markus-person-card__description {
    max-width: none;
  }

  .markus-person-card__socials,
  .markus-person-card--bride .markus-person-card__socials {
    justify-content: center;
  }

  .markus-footer__logos {
    margin-bottom: 45px;
  }

  .markus-footer__main {
    padding-bottom: 65px;
  }

  .markus-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .markus-container {
    width: min(100% - 30px, var(--markus-container));
  }

  .markus-button-showcase {
    min-height: 330px;
    padding: 70px 0;
  }

  .markus-rsvp-button {
    min-width: 190px;
    padding-inline: 52px;
  }

  .markus-couple-portraits {
    min-height: auto;
    padding: 25px 0 55px;
  }

  .markus-couple-portraits__shape--left {
    left: -25px;
    width: 32%;
  }

  .markus-couple-portraits__shape--right {
    right: -15px;
    width: 30%;
  }

  .markus-couple-portraits__photo--bride {
    margin-left: -80px;
  }

  .markus-couple-portraits__photo--bride img {
    border-width: 10px;
  }

  .markus-celebrations__content {
    padding: 85px 0 70px;
  }

  .markus-section-heading {
    margin-bottom: 34px;
  }

  .markus-celebration-item {
    gap: 22px;
  }

  .markus-celebration-item__icon,
  .markus-celebration-item__icon img {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .markus-footer__logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .markus-footer__logo-card:nth-child(odd) {
    border-left: 1px solid #999999;
  }

  .markus-footer__logo-card:nth-child(4) {
    border-left: 0;
  }

  .markus-footer__columns {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .markus-footer__text,
  .markus-footer__form {
    max-width: none;
  }

  .markus-footer__contacts {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 440px) {
  .markus-couple-portraits__photo {
    width: 68%;
  }

  .markus-couple-portraits__photo--bride {
    margin-left: -58px;
  }

  .markus-celebration-item {
    flex-direction: column;
  }

  .markus-footer__logo-card {
    min-height: 135px;
  }

  .markus-footer__bottom > p {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-julia-reveal] {
    opacity: 1;
    transform: none;
  }
}


/* ========================================================
   INÍCIO: AJUSTES DA PÁGINA PRINCIPAL
   ======================================================== */
body {
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 92px;
}

.wpo-site-header-s1,
.wpo-site-header-s1 .navigation {
  transition: background-color 260ms ease, box-shadow 260ms ease, padding 260ms ease;
}

.wpo-site-header-s1 .navigation:not(.sticky-on):not(.markus-header-scrolled) {
  background: linear-gradient(180deg, rgba(18, 12, 12, 0.56) 0%, rgba(18, 12, 12, 0) 100%);
}

@media (min-width: 992px) {
  .wpo-site-header-s1 .navigation:not(.sticky-on):not(.markus-header-scrolled) #navbar > ul > li > a,
  .wpo-site-header-s1 .navigation:not(.sticky-on):not(.markus-header-scrolled) .navbar-brand.logo {
    color: #ffffff;
  }

  .wpo-site-header-s1 #navbar > ul > li > a {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 14px;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .wpo-site-header-s1 #navbar > ul > li > a::after {
    position: absolute;
    right: 12px;
    bottom: 34px;
    left: 12px;
    height: 1px;
    background: currentColor;
    content: "";
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .wpo-site-header-s1 #navbar > ul > li > a.active::after,
  .wpo-site-header-s1 #navbar > ul > li > a:hover::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .wpo-site-header-s1 .sticky-on #navbar > ul > li > a::after,
  .wpo-site-header-s1 .markus-header-scrolled #navbar > ul > li > a::after {
    bottom: 22px;
  }
}

.wpo-site-header-s1 .navigation.sticky-on,
.wpo-site-header-s1 .navigation.markus-header-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 35px rgba(33, 23, 20, 0.1);
  backdrop-filter: blur(14px);
}

.wpo-site-header-s1 .navigation.sticky-on .navbar-brand.logo,
.wpo-site-header-s1 .navigation.markus-header-scrolled .navbar-brand.logo,
.wpo-site-header-s1 .navigation.sticky-on #navbar > ul > li > a,
.wpo-site-header-s1 .navigation.markus-header-scrolled #navbar > ul > li > a {
  color: #06002e;
}

.wpo-site-header-s1 #navbar > ul > li > a.active {
  color: var(--markus-accent) !important;
}

.wpo-site-header .header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.markus-button-frame--header {
  box-shadow: none;
}

.markus-rsvp-button--header {
  min-width: 205px;
  min-height: 48px;
  padding: 11px 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.markus-hero-actions {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.markus-button-frame--light {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.markus-rsvp-button--light {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.markus-rsvp-button--light::before {
  background: #ffffff;
}

.markus-button-frame--form {
  display: inline-flex;
}

.markus-button-frame--form .markus-rsvp-button {
  border-radius: 0;
  outline: 0;
}

.markus-gifts-section {
  position: relative;
  padding-top: 110px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #fff 0%, #faf6f3 100%);
}

.markus-gifts-section__intro {
  max-width: 720px;
  margin: 18px auto 0;
  color: #666;
  font-size: 17px;
  line-height: 1.8;
}

.markus-gifts-grid .row {
  row-gap: 34px;
}

.wpo-team-section.markus-gifts-section .wpo-team-wrap .wpo-team-item {
  height: 100%;
  margin-bottom: 0;
  overflow: hidden;
  border: 1px solid rgba(199, 134, 101, 0.2);
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(64, 40, 29, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.wpo-team-section.markus-gifts-section .wpo-team-wrap .wpo-team-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 62px rgba(64, 40, 29, 0.14);
}

.wpo-team-section.markus-gifts-section .wpo-team-wrap .wpo-team-item .wpo-team-img {
  width: 100%;
  max-width: none;
  margin: 0;
}

.wpo-team-section.markus-gifts-section .wpo-team-wrap .wpo-team-item .wpo-team-img .wpo-team-img-inner {
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: 1 / 1;
}

.wpo-team-section.markus-gifts-section .wpo-team-wrap .wpo-team-item .wpo-team-img img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wpo-team-section.markus-gifts-section .wpo-team-wrap .wpo-team-item:hover .wpo-team-img img {
  transform: scale(1.05);
}

.wpo-team-section.markus-gifts-section .wpo-team-wrap .wpo-team-item .wpo-team-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
  padding: 28px 26px 32px;
}

.wpo-team-section.markus-gifts-section .wpo-team-wrap .wpo-team-item .wpo-team-text h3 {
  margin: 0 0 4px;
  font-size: 29px;
  line-height: 1.3;
}

.wpo-team-section.markus-gifts-section .wpo-team-wrap .wpo-team-item .wpo-team-text span {
  display: block;
  margin-bottom: 14px;
  color: var(--markus-accent);
}

.wpo-team-section.markus-gifts-section .wpo-team-wrap .wpo-team-item .wpo-team-text p {
  flex: 1;
  margin: 0 0 24px;
  color: #666;
  line-height: 1.7;
}

.markus-button-frame--gift {
  margin-top: auto;
  box-shadow: none;
}

.markus-rsvp-button--gift {
  min-width: 180px;
  min-height: 48px;
  padding: 11px 24px;
  font-size: 14px;
}

.markus-footer__background {
  padding-top: 1px;
  background-color: #efe7e1;
  background-image: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(239,231,225,0.9)), url("../images/footer/footer-Bg1_2.png");
}

.markus-footer__invitation {
  position: relative;
  z-index: 3;
  max-width: 1040px;
  margin: 90px auto -70px;
  padding: 58px 70px;
  border: 1px solid rgba(199, 134, 101, 0.38);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 80px rgba(72, 43, 30, 0.14);
  text-align: center;
  backdrop-filter: blur(12px);
}

.markus-footer__invitation h2 {
  max-width: 760px;
  margin: 0 auto 16px;
  color: #211713;
  font-family: var(--markus-font);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.15;
}

.markus-footer__invitation > p:not(.markus-eyebrow) {
  max-width: 620px;
  margin: 0 auto;
  color: #655851;
}

.markus-footer__invitation-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 30px;
}

.markus-footer__main {
  padding-top: 160px;
  padding-bottom: 72px;
}

.markus-footer__columns--compact {
  grid-template-columns: 1.25fr 0.8fr 1fr;
  gap: 80px;
}

.markus-footer__logo {
  display: inline-block;
  margin-bottom: 20px;
  color: #211713;
  font-family: var(--markus-script);
  font-size: 64px;
  line-height: 1;
}

.markus-footer__logo small {
  margin-right: 2px;
  color: var(--markus-accent);
  font-size: 0.55em;
}

.markus-footer__text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--markus-accent);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: gap 200ms ease, color 200ms ease;
}

.markus-footer__text-link:hover,
.markus-footer__text-link:focus-visible {
  gap: 15px;
  color: #8d5a42;
}

.markus-footer__bottom {
  min-height: 88px;
}

.markus-footer__bottom > p {
  margin: 0;
}

@media (max-width: 1399px) {
  .markus-rsvp-button--header {
    min-width: 184px;
    padding-inline: 14px;
    font-size: 12px;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .wpo-site-header-s1 #navbar > ul > li > a {
    padding-left: 7px;
    padding-right: 7px;
    font-size: 12px;
  }

  .markus-rsvp-button--header {
    min-width: 162px;
    font-size: 11px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header-s1 {
    position: absolute;
  }

  .wpo-site-header-s1 .navigation {
    padding: 14px 0;
  }

  .wpo-site-header-s1 .navigation:not(.sticky-on):not(.markus-header-scrolled) .navbar-brand.logo {
    color: #ffffff;
  }

  .wpo-site-header .header-right {
    display: none;
  }

  .wpo-site-header #navbar > ul > li > a.active {
    background: rgba(255, 255, 255, 0.12);
  }

  .markus-gifts-section {
    padding-top: 80px;
  }

  .markus-footer__invitation {
    margin-top: 65px;
    padding: 48px 38px;
  }

  .markus-footer__columns--compact {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .markus-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  section[id] {
    scroll-margin-top: 76px;
  }

  .wpo-hero-slider .wedding-announcement .couple-text,
  .wpo-hero-style-3 .wedding-announcement .couple-text {
    width: min(92vw, 620px);
    padding-inline: 16px;
  }

  .markus-hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
  }

  .markus-hero-actions .markus-button-frame,
  .markus-hero-actions .markus-rsvp-button {
    width: min(100%, 290px);
  }

  .markus-rsvp-button {
    min-width: 0;
    padding-inline: 28px;
  }

  .markus-gifts-section__intro {
    font-size: 15px;
  }

  .wpo-team-section.markus-gifts-section .wpo-team-wrap .wpo-team-item .wpo-team-text {
    min-height: auto;
  }

  .markus-footer__invitation {
    margin: 48px auto -54px;
    padding: 40px 22px;
  }

  .markus-footer__invitation-actions {
    flex-direction: column;
    gap: 18px;
  }

  .markus-footer__main {
    padding-top: 125px;
    padding-bottom: 48px;
  }

  .markus-footer__columns--compact {
    grid-template-columns: 1fr;
    gap: 38px;
    text-align: center;
  }

  .markus-footer__brand {
    grid-column: auto;
  }

  .markus-footer__text {
    margin-inline: auto;
  }

  .markus-footer__socials {
    justify-content: center;
  }

  .markus-footer__links li {
    padding-left: 0;
  }

  .markus-footer__links li::before {
    display: none;
  }

  .markus-footer__bottom {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding-block: 22px;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .wpo-site-header .navigation .navbar-header .logo {
    font-size: 34px;
  }

  .markus-footer__invitation h2 {
    font-size: 34px;
  }

  .markus-footer__logo {
    font-size: 54px;
  }
}
/* ========================================================
   FIM: AJUSTES DA PÁGINA PRINCIPAL
   ======================================================== */

/* INÍCIO: CORREÇÕES DO MENU */
@media (min-width: 992px) {
  .wpo-site-header-s1 #navbar > ul > li > a::before {
    display: none !important;
  }

  .wpo-site-header-s1 .navigation:not(.sticky-on):not(.markus-header-scrolled) #navbar > ul > li > a.active {
    color: #ffffff !important;
  }
}
/* FIM: CORREÇÕES DO MENU */

/* INÍCIO: REFINAMENTOS FINAIS */
.wpo-site-header .navigation.sticky-header {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.markus-rsvp-button--gift span,
.markus-button-frame--form .markus-rsvp-button span {
  margin: 0 !important;
  color: inherit !important;
  line-height: 1 !important;
}

@media (max-width: 991px) {
  .wpo-site-header .header-right,
  .navigation .header-right {
    display: none !important;
  }

  .wpo-site-header-s1 .navigation.original:not(.markus-header-scrolled) {
    background: linear-gradient(180deg, rgba(18, 12, 12, 0.62) 0%, rgba(18, 12, 12, 0) 100%);
  }
}
/* FIM: REFINAMENTOS FINAIS */

/* INÍCIO: AJUSTES DO BANNER NO CELULAR */
@media (max-width: 767px) {
  .wpo-hero-style-3 {
    height: 680px;
  }

  .wpo-site-header-s1 .navigation.original:not(.sticky-on):not(.markus-header-scrolled) #navbar > ul > li > a.active {
    color: #ffffff !important;
  }
}

@media (max-width: 420px) {
  .wpo-hero-style-3 {
    height: 700px;
  }
}
/* FIM: AJUSTES DO BANNER NO CELULAR */


/* ========================================================
   INÍCIO: REFINAMENTOS VISUAIS — VERDE-SÁLVIA
   ======================================================== */
:root {
  --markus-accent-dark: #5f765f;
  --markus-accent-deep: #354a39;
  --markus-accent-soft: #e8eee5;
  --markus-accent-pale: #f5f7f2;
  --markus-ivory: #fbfaf6;
}

/* Paleta global dos principais elementos do template. */
.markus-elements-page,
body {
  accent-color: var(--markus-accent);
}

.wpo-section-title span,
.wpo-section-title-s2 span,
.wpo-section-title-s3 span,
.wpo-section-title-s4 span,
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .form-control:focus,
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area select:focus,
.story-section .story-timeline .text-holder span,
.wpo-wedding-time .clock-grids > div > div,
.wpo-site-header .navbar-header .logo small,
.wpo-site-header .navbar-header .logo span,
.wpo-site-header #navbar > ul > li > a:hover,
.wpo-site-header #navbar > ul > li > a:focus {
  color: var(--markus-accent) !important;
}

.theme-btn,
.theme-btn-s2,
.theme-btn-s3,
.theme-btn-s4,
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .submit-area button,
.wpo-site-header .mobail-menu button,
.wpo-site-header #navbar,
.wpo-wedding-time .clock-grids > div,
.back-to-top {
  background-color: var(--markus-accent) !important;
}

/* O conjunto do banner desce sem comprometer o fluxo interno. */
.wpo-hero-style-3 .wedding-announcement .couple-text {
  position: relative;
  top: 52px;
}

/* Respiração lateral nas áreas solicitadas. */
.markus-couple-section > .markus-container,
.markus-celebrations > .markus-container {
  width: min(100% - 72px, var(--markus-container));
}

.markus-section-heading {
  padding-inline: 22px;
}

/* Redes sociais com transição cromática individual. */
.markus-person-card__socials {
  gap: 14px;
}

.markus-person-card__socials .markus-social-link {
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border: 1px solid rgba(132, 155, 130, 0.45);
  border-radius: 50%;
  background: rgba(232, 238, 229, 0.7);
  color: var(--markus-accent-dark);
  font-size: 20px;
  opacity: 1;
  transition: color 320ms ease, border-color 320ms ease, background-position 500ms ease, box-shadow 320ms ease, transform 320ms ease;
}

.markus-person-card__socials .markus-social-link::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  content: "";
  opacity: 0;
  transform: scale(0.35) rotate(-20deg);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.markus-person-card__socials .markus-social-link i,
.markus-person-card__socials .markus-social-link svg {
  position: relative;
  z-index: 1;
}

.markus-person-card__socials .markus-social-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.markus-person-card__socials .markus-social-link:hover,
.markus-person-card__socials .markus-social-link:focus-visible {
  border-color: transparent;
  color: #ffffff;
  opacity: 1;
  transform: translateY(-5px) scale(1.04);
}

.markus-person-card__socials .markus-social-link:hover::before,
.markus-person-card__socials .markus-social-link:focus-visible::before {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.markus-social-link--instagram::before {
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 22%, #d62976 54%, #962fbf 77%, #4f5bd5 100%);
}

.markus-social-link--instagram:hover,
.markus-social-link--instagram:focus-visible {
  box-shadow: 0 12px 28px rgba(214, 41, 118, 0.28);
}

.markus-social-link--tiktok::before {
  background: #101010;
}

.markus-social-link--tiktok:hover,
.markus-social-link--tiktok:focus-visible {
  box-shadow: -4px 3px 0 rgba(37, 244, 238, 0.68), 4px -3px 0 rgba(254, 44, 85, 0.62), 0 12px 26px rgba(16, 16, 16, 0.2);
}

/* Lista de presentes com maior hierarquia para o preço. */
.wpo-team-section.markus-gifts-section .wpo-team-wrap .wpo-team-item {
  border-color: rgba(132, 155, 130, 0.28);
  box-shadow: 0 18px 48px rgba(53, 74, 57, 0.09);
}

.wpo-team-section.markus-gifts-section .wpo-team-wrap .wpo-team-item:hover {
  box-shadow: 0 27px 65px rgba(53, 74, 57, 0.16);
}

.wpo-team-section.markus-gifts-section .wpo-team-wrap .wpo-team-item .wpo-team-text .markus-gift-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  margin: 8px 0 18px;
  padding: 7px 18px;
  border: 1px solid rgba(132, 155, 130, 0.3);
  border-radius: 999px;
  background: var(--markus-accent-soft);
  color: var(--markus-accent-deep);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.015em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55);
}

.markus-gifts-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--markus-accent-pale) 100%);
}

/* Rodapé mais elegante, com contraste e profundidade. */
.markus-footer__background {
  background-color: var(--markus-accent-deep);
  background-image:
    radial-gradient(circle at 10% 15%, rgba(255,255,255,0.08), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(132,155,130,0.24), transparent 34%),
    linear-gradient(145deg, #435b47 0%, #304336 62%, #26382d 100%);
}

.markus-footer__invitation {
  overflow: hidden;
  border: 1px solid rgba(132, 155, 130, 0.52);
  border-radius: 2px;
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(132,155,130,0.05) 47% 53%, transparent 53%),
    var(--markus-ivory);
  box-shadow: 0 34px 90px rgba(24, 38, 28, 0.28);
}

.markus-footer__invitation::before,
.markus-footer__invitation::after {
  position: absolute;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(132,155,130,0.28);
  border-radius: 50%;
  content: "";
}

.markus-footer__invitation::before {
  top: -58px;
  left: -48px;
}

.markus-footer__invitation::after {
  right: -48px;
  bottom: -58px;
}

.markus-footer__invitation h2 {
  color: var(--markus-accent-deep);
}

.markus-footer__invitation > p:not(.markus-eyebrow) {
  color: #677168;
}

.markus-footer__main {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.markus-footer__main::before {
  position: absolute;
  top: 122px;
  right: 6%;
  left: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  content: "";
}

.markus-footer__monogram {
  position: absolute;
  top: 92px;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 142px;
  min-height: 60px;
  padding: 8px 18px;
  background: var(--markus-accent-deep);
  color: rgba(255,255,255,0.84);
  font-family: var(--markus-script);
  font-size: 28px;
  transform: translateX(-50%);
}

.markus-footer__monogram i {
  color: #b9c8b5;
  font-size: 26px;
}

.markus-footer__columns--compact {
  padding-top: 34px;
}

.markus-footer__column {
  position: relative;
}

.markus-footer__columns--compact > .markus-footer__column + .markus-footer__column {
  padding-left: 52px;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.markus-footer__logo,
.markus-footer__bottom > p,
.markus-footer__bottom a {
  color: #ffffff;
}

.markus-footer__logo small,
.markus-footer__title,
.markus-footer__text-link,
.markus-footer__contact-icon {
  color: #b9c8b5;
}

.markus-footer__text,
.markus-footer__links a {
  color: rgba(255,255,255,0.72);
}

.markus-footer__links li::before {
  background: #9db09a;
}

.markus-footer__links a:hover,
.markus-footer__links a:focus-visible,
.markus-footer__text-link:hover,
.markus-footer__text-link:focus-visible {
  color: #ffffff;
}

.markus-footer__socials a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}

.markus-footer__socials a:hover,
.markus-footer__socials a:focus-visible {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.14);
  opacity: 1;
}

.markus-footer__socials img {
  max-width: 21px;
  max-height: 21px;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.markus-footer__bottom {
  position: relative;
  min-height: 94px;
}

.markus-footer__bottom::before {
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  bottom: 0;
  left: calc(50% - 50vw);
  z-index: -1;
  background: rgba(19, 31, 23, 0.26);
  content: "";
}

/* Cabeçalho mobile sólido desde o início, logo à esquerda e menu à direita. */
@media (max-width: 991px) {
  .wpo-site-header-s1 .navigation,
  .wpo-site-header-s1 .navigation:not(.sticky-on):not(.markus-header-scrolled) {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 26px rgba(42, 59, 45, 0.1);
    backdrop-filter: blur(14px);
  }

  .wpo-site-header-s1 .navigation:not(.sticky-on):not(.markus-header-scrolled) .navbar-brand.logo,
  .wpo-site-header-s1 .navigation .navbar-brand.logo {
    color: var(--markus-accent-deep);
  }

  .wpo-site-header-s1 .navigation .row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    margin: 0;
  }

  .wpo-site-header-s1 .navigation .row > div:nth-child(2) {
    order: 1;
    flex: 0 0 72%;
    width: 72%;
    max-width: 72%;
    padding-left: 0;
  }

  .wpo-site-header-s1 .navigation .row > div:nth-child(1) {
    order: 2;
    flex: 0 0 28%;
    width: 28%;
    max-width: 28%;
    padding-right: 0;
  }

  .wpo-site-header-s1 .navigation .row > div:nth-child(3) {
    order: 3;
  }

  .wpo-site-header-s1 .mobail-menu {
    display: flex;
    justify-content: flex-end;
  }

  .wpo-site-header-s1 .mobail-menu button {
    display: grid;
    place-content: center;
    width: 43px;
    height: 39px;
    border-radius: 2px;
    background: var(--markus-accent) !important;
    box-shadow: 0 8px 20px rgba(53,74,57,0.17);
  }

  .wpo-site-header-s1 #navbar {
    right: -320px;
    left: auto;
    background: var(--markus-accent-deep) !important;
  }

  .wpo-site-header-s1 #navbar.slideInn {
    right: 0;
    left: auto;
  }

  .wpo-site-header-s1 #navbar > ul > li > a {
    color: rgba(255,255,255,0.88);
  }

  .wpo-site-header-s1 #navbar > ul > li > a.active,
  .wpo-site-header-s1 #navbar > ul > li > a:hover {
    color: #ffffff !important;
    background: rgba(255,255,255,0.1);
  }

  .markus-couple-section > .markus-container,
  .markus-celebrations > .markus-container {
    width: min(100% - 42px, var(--markus-container));
  }

  .markus-footer__columns--compact > .markus-footer__column + .markus-footer__column {
    padding-left: 34px;
  }
}

@media (max-width: 767px) {
  .wpo-hero-style-3 .wedding-announcement .couple-text {
    top: 30px;
  }

  .markus-couple-section > .markus-container,
  .markus-celebrations > .markus-container {
    width: min(100% - 34px, var(--markus-container));
  }

  .markus-section-heading {
    padding-inline: 10px;
  }

  .wpo-team-section.markus-gifts-section .wpo-team-wrap .wpo-team-item .wpo-team-text .markus-gift-price {
    min-height: 40px;
    font-size: 19px;
  }

  .markus-footer__main::before,
  .markus-footer__monogram {
    display: none;
  }

  .markus-footer__columns--compact {
    padding-top: 0;
  }

  .markus-footer__columns--compact > .markus-footer__column + .markus-footer__column {
    padding-top: 32px;
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-left: 0;
  }
}

@media (max-width: 420px) {
  .wpo-hero-style-3 .wedding-announcement .couple-text {
    top: 24px;
  }

  .wpo-site-header-s1 .navigation .row > div:nth-child(2) {
    flex-basis: 76%;
    width: 76%;
    max-width: 76%;
  }

  .wpo-site-header-s1 .navigation .row > div:nth-child(1) {
    flex-basis: 24%;
    width: 24%;
    max-width: 24%;
  }
}
/* FIM: REFINAMENTOS VISUAIS — VERDE-SÁLVIA */

/* INÍCIO: CORREÇÃO DA ABERTURA DO MENU MOBILE PELA DIREITA */
@media (max-width: 991px) {
  .wpo-site-header-s1 #navbar {
    right: -320px !important;
    left: auto !important;
  }

  .wpo-site-header-s1 #navbar.slideInn {
    right: 0 !important;
    left: auto !important;
  }
}
/* FIM: CORREÇÃO DA ABERTURA DO MENU MOBILE PELA DIREITA */

/* ========================================================
   INÍCIO: ACABAMENTO FINAL DE CABEÇALHO E RODAPÉ
   ======================================================== */
@media (min-width: 992px) {
  .wpo-site-header-s1 #navbar,
  .wpo-site-header-s1 .navigation #navbar {
    background: transparent !important;
    background-color: transparent !important;
  }
}

@media (max-width: 991px) {
  .wpo-site-header-s1 .navigation .container-fluid {
    position: relative;
    padding-right: 20px;
    padding-left: 20px;
  }

  .wpo-site-header-s1 .navigation .row {
    position: relative;
    display: block;
    width: 100%;
    min-height: 70px;
    margin: 0;
  }

  .wpo-site-header-s1 .navigation .row > div:nth-child(2) {
    position: static;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .wpo-site-header-s1 .navigation .navbar-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 70px;
    text-align: left;
  }

  .wpo-site-header-s1 .navigation .row > div:nth-child(1) {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 40;
    width: auto;
    max-width: none;
    padding: 0;
    transform: translateY(-50%);
  }

  .wpo-site-header-s1 .mobail-menu,
  .wpo-site-header-s1 .mobail-menu button {
    margin: 0;
  }

  .wpo-site-header-s1 .navigation .row > div:nth-child(3),
  .wpo-site-header-s1 .navigation .row > div:nth-child(4) {
    width: auto;
    max-width: none;
    padding: 0;
  }
}

.back-to-top {
  display: none !important;
}

.markus-footer__decor {
  display: none;
}

.markus-footer__logo {
  color: #ffffff !important;
  text-shadow: 0 8px 30px rgba(0,0,0,0.16);
}

.markus-footer__logo small {
  color: #c7d4c3 !important;
}

.markus-footer__title {
  color: #d7e1d4 !important;
  font-family: var(--markus-font);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.14em;
}

.markus-footer__text,
.markus-footer__links a,
.markus-footer__bottom > p,
.markus-footer__bottom a {
  color: rgba(255,255,255,0.82) !important;
}

.markus-footer__text-link {
  color: #d7e1d4 !important;
}

.markus-footer__links a:hover,
.markus-footer__links a:focus-visible,
.markus-footer__text-link:hover,
.markus-footer__text-link:focus-visible,
.markus-footer__bottom a:hover,
.markus-footer__bottom a:focus-visible {
  color: #ffffff !important;
}

.markus-footer__socials a {
  color: #ffffff;
}

.markus-footer__bottom {
  border-top: 0;
}
/* FIM: ACABAMENTO FINAL DE CABEÇALHO E RODAPÉ */

/* ========================================================
   INÍCIO: MENU MOBILE EM ALTURA TOTAL E DETALHES DA PALETA
   ======================================================== */
@media (max-width: 991px) {
  .wpo-site-header-s1 #navbar,
  .wpo-site-header-s1 .navigation #navbar {
    top: 0 !important;
    right: min(-320px, -86vw) !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(300px, 86vw) !important;
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    overflow: hidden !important;
    background: var(--markus-accent-deep) !important;
    box-shadow: -20px 0 55px rgba(20, 33, 24, 0.24);
    transition: right 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease, visibility 220ms ease;
  }

  .wpo-site-header-s1 #navbar.slideInn,
  .wpo-site-header-s1 .navigation #navbar.slideInn {
    right: 0 !important;
    left: auto !important;
  }

  .wpo-site-header-s1 #navbar .navbar-nav {
    height: calc(100dvh - 105px);
    padding: 0 0 40px;
    overflow-y: auto;
  }

  .wpo-site-header-s1 #navbar > ul > li > a {
    display: block;
    padding: 17px 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 15px;
    line-height: 1.35;
  }
}

@media (max-width: 767px) {
  .wpo-hero-style-3 .wedding-announcement .couple-text {
    top: 52px;
  }
}

@media (max-width: 420px) {
  .wpo-hero-style-3 .wedding-announcement .couple-text {
    top: 46px;
  }
}

.markus-celebration-item__icon img {
  filter: grayscale(1) sepia(0.35) hue-rotate(55deg) saturate(0.8) brightness(0.72);
}
/* FIM: MENU MOBILE EM ALTURA TOTAL E DETALHES DA PALETA */

/* INÍCIO: PREVENÇÃO DE ROLAGEM HORIZONTAL DO MENU RECOLHIDO */
@media (max-width: 991px) {
  .wpo-site-header-s1 #navbar,
  .wpo-site-header-s1 .navigation #navbar {
    right: 0 !important;
    left: auto !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(105%);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease, visibility 220ms ease;
  }

  .wpo-site-header-s1 #navbar.slideInn,
  .wpo-site-header-s1 .navigation #navbar.slideInn {
    right: 0 !important;
    left: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0);
  }
}
/* FIM: PREVENÇÃO DE ROLAGEM HORIZONTAL DO MENU RECOLHIDO */

/* INÍCIO: RECORTE DO PAINEL MOBILE SEM AMPLIAR A LARGURA DA PÁGINA */
html,
body,
.page-wrapper {
  max-width: 100%;
  overflow-x: clip;
}

@media (max-width: 991px) {
  .wpo-site-header-s1 #navbar,
  .wpo-site-header-s1 .navigation #navbar {
    right: 0 !important;
    transform: none !important;
    clip-path: inset(0 0 0 100%);
    pointer-events: none;
    transition: clip-path 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease, visibility 220ms ease;
  }

  .wpo-site-header-s1 #navbar.slideInn,
  .wpo-site-header-s1 .navigation #navbar.slideInn {
    clip-path: inset(0 0 0 0);
    pointer-events: auto;
  }
}
/* FIM: RECORTE DO PAINEL MOBILE SEM AMPLIAR A LARGURA DA PÁGINA */


/* PERSONALIZAÇÃO: TEXTOS DE JÚLIA E MARKUS */
.markus-story-intro {
  max-width: 820px;
  margin: 18px auto 0;
  color: var(--markus-text);
  font-size: 17px;
  line-height: 1.8;
  text-align: center;
}

.markus-story-closing {
  max-width: 900px;
  margin: 60px auto 0;
  padding: 28px 34px;
  border: 1px solid rgba(132, 151, 120, 0.3);
  background: rgba(132, 151, 120, 0.08);
  color: var(--markus-text);
  font-size: 17px;
  line-height: 1.85;
  text-align: center;
}

.markus-person-card__description {
  font-size: 15px;
}

@media (min-width: 1200px) {
  .markus-couple-grid {
    grid-template-columns: minmax(270px, 1.15fr) minmax(390px, 1.65fr) minmax(270px, 1.15fr);
    gap: 34px;
  }

  .markus-person-card--bride .markus-person-card__description {
    max-width: 340px;
  }
}

@media (max-width: 767px) {
  .markus-story-intro {
    padding-inline: 16px;
    font-size: 15px;
  }

  .markus-story-closing {
    margin-top: 35px;
    padding: 22px 18px;
    font-size: 15px;
  }
}

/* INÍCIO: CORREÇÕES DEFINITIVAS DO MOBILE */
@media (max-width: 991px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.markus-menu-open {
    overflow: hidden !important;
    touch-action: none;
  }

  #header,
  .wpo-site-header-s1,
  .wpo-site-header-s1 .navigation {
    z-index: 100000;
  }

  .wpo-site-header-s1 .navigation {
    min-height: 76px;
    padding: 3px 0 !important;
  }

  .wpo-site-header-s1 .navigation .row,
  .wpo-site-header-s1 .navigation .navbar-header {
    min-height: 70px;
  }

  .wpo-site-header-s1 .mobail-menu button {
    position: relative;
    z-index: 100003;
    cursor: pointer;
    pointer-events: auto;
  }

  /* Menu de tela inteira no celular e tablet. */
  .wpo-site-header-s1 #navbar.navigation-holder,
  .wpo-site-header-s1 .navigation #navbar.navigation-holder {
    position: fixed !important;
    inset: 0 !important;
    z-index: 100002 !important;
    display: flex !important;
    width: 100vw !important;
    max-width: none !important;
    height: 100vh !important;
    height: 100dvh !important;
    max-height: none !important;
    align-items: center;
    justify-content: center;
    padding: 92px 26px 38px !important;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background:
      radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.09), transparent 34%),
      linear-gradient(145deg, #263b2d 0%, #3f5841 54%, #5f765f 100%) !important;
    transform: translate3d(100%, 0, 0);
    transition:
      transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 240ms ease,
      visibility 0s linear 360ms;
  }

  .wpo-site-header-s1 #navbar.navigation-holder.slideInn,
  .wpo-site-header-s1 .navigation #navbar.navigation-holder.slideInn {
    right: 0 !important;
    left: 0 !important;
    visibility: visible;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }

  .wpo-site-header-s1 #navbar .menu-close {
    position: absolute;
    top: 22px;
    right: 22px;
    display: grid !important;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }

  .wpo-site-header-s1 #navbar > ul {
    display: flex !important;
    width: min(100%, 430px);
    min-height: calc(100dvh - 160px);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .wpo-site-header-s1 #navbar > ul > li {
    display: block;
    width: 100%;
    margin: 0 !important;
    border: 0 !important;
    text-align: center;
  }

  .wpo-site-header-s1 #navbar > ul > li > a {
    display: flex !important;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 12px 18px !important;
    border: 1px solid transparent;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: clamp(19px, 5.2vw, 25px) !important;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.02em;
  }

  .wpo-site-header-s1 #navbar > ul > li > a.active,
  .wpo-site-header-s1 #navbar > ul > li > a:hover,
  .wpo-site-header-s1 #navbar > ul > li > a:focus-visible {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
  }
}

@media (max-width: 767px) {
  /* Primeira dobra com altura real da tela do aparelho. */
  .wpo-hero-slider.wpo-hero-style-3 {
    height: 100vh !important;
    height: 100svh !important;
    min-height: 680px;
  }

  .wpo-hero-style-3 .wedding-announcement .couple-text {
    top: 52px !important;
    padding: 92px 18px 28px;
  }

  .wpo-hero-style-3 .wedding-announcement .couple-text h2 {
    margin-bottom: 12px;
    font-size: clamp(38px, 12vw, 58px);
    line-height: 0.95;
  }

  .wpo-hero-style-3 .wedding-announcement .couple-text p {
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
    font-size: 16px;
    line-height: 1.45;
  }

  /* Pontos focais específicos para manter o rosto do casal visível. */
  .wpo-hero-style-3 .swiper-slide:nth-child(1) .slide-inner {
    background-position: 44% center !important;
  }

  .wpo-hero-style-3 .swiper-slide:nth-child(2) .slide-inner {
    background-position: 72% center !important;
  }

  .wpo-hero-style-3 .swiper-slide:nth-child(3) .slide-inner {
    background-position: 65% center !important;
  }

  .wpo-hero-style-3 .swiper-slide:nth-child(4) .slide-inner {
    background-position: 66% center !important;
  }

  .wpo-hero-style-3 .slide-inner::before {
    background:
      linear-gradient(180deg, rgba(14, 15, 48, 0.36) 0%, rgba(14, 15, 48, 0.16) 38%, rgba(14, 15, 48, 0.56) 100%) !important;
    opacity: 1 !important;
  }

  /* Contador principal compacto, legível e sem estouro lateral. */
  .wpo-hero-style-3 .wpo-wedding-date #clock {
    display: grid !important;
    width: min(100%, 356px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin: 0 auto;
  }

  .wpo-hero-style-3 .wpo-wedding-date #clock > .box {
    width: auto !important;
    min-width: 0;
    height: 86px !important;
    margin: 0 !important;
    float: none !important;
    background-size: 100% 100% !important;
  }

  .wpo-hero-style-3 .wpo-wedding-date #clock .box > div {
    margin: 0 !important;
  }

  .wpo-hero-style-3 .wpo-wedding-date #clock .time {
    margin-top: 15px !important;
    font-size: 24px !important;
    line-height: 1 !important;
  }

  .wpo-hero-style-3 .wpo-wedding-date #clock span {
    font-size: 11px !important;
    line-height: 1.15;
  }

  /* Segundo contador: quatro colunas reais no celular. */
  .wpo-wedding-time .clock-grids {
    overflow: hidden;
  }

  .wpo-wedding-time #clock2 {
    position: relative;
    z-index: 2;
    display: grid !important;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 38px 12px !important;
    overflow: visible;
  }

  .wpo-wedding-time #clock2 > .box {
    width: auto !important;
    min-width: 0;
    margin: 0 !important;
    float: none !important;
  }

  .wpo-wedding-time #clock2 > .box + .box {
    margin-left: 0 !important;
  }

  .wpo-wedding-time #clock2 .time {
    padding-top: 0 !important;
    color: #fff !important;
    font-size: clamp(24px, 8vw, 34px) !important;
    line-height: 1 !important;
  }

  .wpo-wedding-time #clock2 span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 11px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 420px) {
  .wpo-site-header-s1 .navigation .navbar-header .logo {
    max-width: calc(100vw - 92px);
    font-size: 22px !important;
    white-space: nowrap;
  }

  .wpo-site-header-s1 .navigation .navbar-header .logo small {
    font-size: 0.56em !important;
  }

  .wpo-hero-slider.wpo-hero-style-3 {
    min-height: 700px;
  }

  .markus-hero-actions {
    margin-top: 16px;
  }

  .markus-hero-actions .markus-rsvp-button {
    min-height: 46px;
    padding: 12px 18px;
    font-size: 11px;
  }
}
/* FIM: CORREÇÕES DEFINITIVAS DO MOBILE */



/* INÍCIO: FLORES DO FORMULÁRIO NO MOBILE */
@media (max-width: 575px) {
  .wpo-contact-section .wpo-contact-section-wrapper,
  .wpo-contact-section-s2 .wpo-contact-section-wrapper {
    overflow: visible;
  }

  .wpo-contact-section .wpo-contact-section-wrapper .vector-1,
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .vector-1,
  .wpo-contact-section .wpo-contact-section-wrapper .vector-2,
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .vector-2 {
    display: block !important;
    z-index: 2;
    pointer-events: none;
    opacity: 0.88;
  }

  .wpo-contact-section .wpo-contact-section-wrapper .vector-1,
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .vector-1 {
    top: -52px;
    left: -38px;
  }

  .wpo-contact-section .wpo-contact-section-wrapper .vector-2,
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .vector-2 {
    right: -38px;
    bottom: -52px;
  }

  .wpo-contact-section .wpo-contact-section-wrapper .vector-1 img,
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .vector-1 img,
  .wpo-contact-section .wpo-contact-section-wrapper .vector-2 img,
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .vector-2 img {
    display: block;
    width: 145px;
    max-width: 145px !important;
    height: auto;
  }

  .wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area,
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area {
    position: relative;
    z-index: 3;
  }
}

@media (max-width: 420px) {
  .wpo-contact-section .wpo-contact-section-wrapper .vector-1 img,
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .vector-1 img,
  .wpo-contact-section .wpo-contact-section-wrapper .vector-2 img,
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .vector-2 img {
    width: 118px;
    max-width: 118px !important;
  }
}
/* FIM: FLORES DO FORMULÁRIO NO MOBILE */


/* INÍCIO: AJUSTES FINAIS — FLORES MOBILE E REDES DO RODAPÉ */

/* Mostra as duas ilustrações florais também no celular. */
@media (max-width: 575px) {
  #confirmar-presenca .wpo-contact-section-wrapper {
    margin-top: 54px;
    margin-bottom: 54px;
  }

  #confirmar-presenca .vector-1,
  #confirmar-presenca .vector-2 {
    display: block !important;
    z-index: 2;
    pointer-events: none;
  }

  #confirmar-presenca .vector-1 {
    top: -72px !important;
    left: -44px !important;
  }

  #confirmar-presenca .vector-2 {
    right: -44px !important;
    bottom: -72px !important;
  }

  #confirmar-presenca .vector-1 img,
  #confirmar-presenca .vector-2 img {
    width: 150px;
    max-width: 150px !important;
    height: auto;
    opacity: 0.9;
  }

  #confirmar-presenca .wpo-contact-form-area {
    position: relative;
    z-index: 4;
  }
}

/* Repete no rodapé o efeito animado das redes sociais da seção O Casal. */
.markus-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.markus-footer__socials .markus-footer-social {
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  min-height: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 19px;
  opacity: 1;
  transition:
    color 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease,
    transform 320ms ease;
}

.markus-footer__socials .markus-footer-social::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  content: "";
  opacity: 0;
  transform: scale(0.35) rotate(-20deg);
  transition:
    opacity 320ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.markus-footer__socials .markus-footer-social i,
.markus-footer__socials .markus-footer-social svg {
  position: relative;
  z-index: 1;
}

.markus-footer__socials .markus-footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.markus-footer__socials .markus-footer-social:hover,
.markus-footer__socials .markus-footer-social:focus-visible {
  border-color: transparent;
  color: #ffffff;
  opacity: 1;
  transform: translateY(-5px) scale(1.04);
}

.markus-footer__socials .markus-footer-social:hover::before,
.markus-footer__socials .markus-footer-social:focus-visible::before {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.markus-footer-social--instagram::before {
  background: linear-gradient(
    135deg,
    #feda75 0%,
    #fa7e1e 22%,
    #d62976 54%,
    #962fbf 77%,
    #4f5bd5 100%
  );
}

.markus-footer-social--instagram:hover,
.markus-footer-social--instagram:focus-visible {
  box-shadow: 0 12px 28px rgba(214, 41, 118, 0.3);
}

.markus-footer-social--tiktok::before {
  background: #101010;
}

.markus-footer-social--tiktok:hover,
.markus-footer-social--tiktok:focus-visible {
  box-shadow:
    -4px 3px 0 rgba(37, 244, 238, 0.68),
    4px -3px 0 rgba(254, 44, 85, 0.62),
    0 12px 26px rgba(16, 16, 16, 0.25);
}

.markus-footer-social--cosmos::before {
  background: linear-gradient(135deg, #ff9a3d, #ff6b00 58%, #d84a00);
}

.markus-footer-social--cosmos:hover,
.markus-footer-social--cosmos:focus-visible {
  box-shadow: 0 12px 28px rgba(255, 107, 0, 0.3);
}

/* FIM: AJUSTES FINAIS — FLORES MOBILE E REDES DO RODAPÉ */


/* INÍCIO: MOBILE ROBUSTO — MENU E BANNER */
@media (max-width: 991px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body.markus-menu-open {
    overflow: hidden !important;
    overscroll-behavior: none;
    touch-action: none;
  }

  #header,
  #header .wpo-site-header,
  #header .navigation {
    position: relative;
    z-index: 2147482000 !important;
  }

  #header .navigation {
    min-height: 58px !important;
    padding: 0 !important;
  }

  #header .navigation .container-fluid,
  #header .navigation .row {
    min-height: 58px !important;
  }

  #header .mobail-menu {
    position: relative;
    z-index: 2147483001;
  }

  #header .markus-menu-toggle {
    position: relative;
    z-index: 2147483001;
    display: inline-flex !important;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 10px !important;
    border: 0 !important;
    border-radius: 4px;
    background: #83987e !important;
    cursor: pointer;
    pointer-events: auto !important;
  }

  #header .markus-menu-toggle .icon-bar {
    display: block !important;
    width: 21px !important;
    height: 2px !important;
    margin: 3px 0 !important;
    border: 0 !important;
    background: #fff !important;
  }

  #header #navbar.navigation-holder {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483000 !important;
    display: flex !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    max-height: none !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 82px 24px 36px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    background:
      radial-gradient(circle at 50% 0%, rgba(255,255,255,.14), transparent 32%),
      linear-gradient(145deg, #263b2d 0%, #405a43 52%, #6f866a 100%) !important;
    transform: translate3d(100%, 0, 0) !important;
    transition:
      transform 360ms cubic-bezier(.22, 1, .36, 1),
      opacity 220ms ease,
      visibility 0s linear 360ms !important;
  }

  body.markus-menu-open #header #navbar.navigation-holder,
  #header #navbar.navigation-holder.markus-menu-is-open {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) !important;
    transition-delay: 0s !important;
  }

  #header #navbar .markus-menu-close {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    z-index: 2147483002 !important;
    display: grid !important;
    width: 46px !important;
    height: 46px !important;
    place-items: center;
    padding: 0 !important;
    border: 1px solid rgba(255,255,255,.35) !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.12) !important;
    color: #fff !important;
    font-size: 20px !important;
    cursor: pointer;
    pointer-events: auto !important;
  }

  #header #navbar > ul {
    display: flex !important;
    width: min(100%, 430px) !important;
    min-height: calc(100dvh - 150px);
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  #header #navbar > ul > li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    border: 0 !important;
    float: none !important;
    text-align: center;
  }

  #header #navbar > ul > li > a {
    display: flex !important;
    width: 100% !important;
    min-height: 56px !important;
    align-items: center;
    justify-content: center;
    padding: 12px 16px !important;
    border: 1px solid transparent !important;
    border-radius: 14px !important;
    color: rgba(255,255,255,.94) !important;
    background: transparent !important;
    font-size: clamp(18px, 5.2vw, 24px) !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
  }

  #header #navbar > ul > li > a.active,
  #header #navbar > ul > li > a:hover,
  #header #navbar > ul > li > a:focus-visible {
    border-color: rgba(255,255,255,.28) !important;
    background: rgba(255,255,255,.12) !important;
    color: #fff !important;
  }
}

@media (max-width: 767px) {
  #header {
    height: 58px !important;
  }

  #header .navbar-brand.logo {
    max-width: calc(100vw - 92px) !important;
    font-size: 22px !important;
    line-height: 1 !important;
    white-space: nowrap;
  }

  #header .navbar-brand.logo small {
    font-size: 1em !important;
  }

  .wpo-hero-slider.wpo-hero-style-3 {
    position: relative !important;
    width: 100% !important;
    height: calc(100svh - 58px) !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    overflow: hidden !important;
    background: #263b2d;
  }

  .wpo-hero-style-3 > .swiper-container,
  .wpo-hero-style-3 > .swiper-container > .swiper-wrapper,
  .wpo-hero-style-3 > .swiper-container > .swiper-wrapper > .swiper-slide,
  .wpo-hero-style-3 .slide-inner {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
  }

  .wpo-hero-style-3 > .swiper-container > .swiper-wrapper {
    position: relative !important;
  }

  .wpo-hero-style-3 > .swiper-container > .swiper-wrapper > .swiper-slide {
    position: relative !important;
  }

  .wpo-hero-style-3 .slide-inner {
    display: block !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
  }

  .wpo-hero-style-3 .swiper-slide:nth-child(1) .slide-inner {
    background-position: 48% center !important;
  }

  .wpo-hero-style-3 .swiper-slide:nth-child(2) .slide-inner {
    background-position: 73% center !important;
  }

  .wpo-hero-style-3 .swiper-slide:nth-child(3) .slide-inner {
    background-position: 71% center !important;
  }

  .wpo-hero-style-3 .swiper-slide:nth-child(4) .slide-inner {
    background-position: 66% center !important;
  }

  .wpo-hero-style-3 .slide-inner::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block !important;
    content: "";
    background: linear-gradient(
      180deg,
      rgba(18, 25, 30, .28) 0%,
      rgba(18, 25, 30, .16) 35%,
      rgba(18, 25, 30, .64) 100%
    ) !important;
    opacity: 1 !important;
  }

  .wpo-hero-style-3 .wedding-announcement {
    position: absolute !important;
    inset: 0 !important;
    z-index: 6 !important;
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    pointer-events: none;
  }

  .wpo-hero-style-3 .wedding-announcement .couple-text {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 380px !important;
    margin: 0 auto !important;
    padding: 24px 16px 38px !important;
    transform: none !important;
    pointer-events: auto;
  }

  .wpo-hero-style-3 .wedding-announcement .couple-text h2 {
    margin: 0 0 10px !important;
    font-size: clamp(37px, 11.5vw, 50px) !important;
    line-height: .98 !important;
  }

  .wpo-hero-style-3 .wedding-announcement .couple-text p {
    max-width: 330px !important;
    margin: 0 auto 14px !important;
    font-size: clamp(12px, 3.5vw, 15px) !important;
    line-height: 1.45 !important;
  }

  .wpo-hero-style-3 .wpo-wedding-date {
    margin: 0 auto 12px !important;
  }

  .wpo-hero-style-3 .wpo-wedding-date #clock {
    display: grid !important;
    width: min(100%, 330px) !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 5px !important;
    margin: 0 auto !important;
  }

  .wpo-hero-style-3 .wpo-wedding-date #clock > .box {
    width: auto !important;
    min-width: 0 !important;
    height: 74px !important;
    margin: 0 !important;
    float: none !important;
    background-size: 100% 100% !important;
  }

  .wpo-hero-style-3 .wpo-wedding-date #clock .time {
    margin-top: 12px !important;
    font-size: 22px !important;
    line-height: 1 !important;
  }

  .wpo-hero-style-3 .wpo-wedding-date #clock span {
    font-size: 9px !important;
    line-height: 1 !important;
  }

  .wpo-hero-style-3 .markus-hero-actions {
    display: grid !important;
    width: min(100%, 220px) !important;
    gap: 8px !important;
    margin: 0 auto !important;
  }

  .wpo-hero-style-3 .markus-hero-actions .markus-button-frame,
  .wpo-hero-style-3 .markus-hero-actions .markus-rsvp-button {
    width: 100% !important;
  }

  .wpo-hero-style-3 .markus-hero-actions .markus-rsvp-button {
    min-height: 42px !important;
    padding: 10px 12px !important;
    font-size: 10px !important;
  }

  .wpo-hero-style-3 .swiper-pagination {
    bottom: 10px !important;
    z-index: 8 !important;
  }

  .wpo-hero-style-3 .next-prev-btn {
    display: none !important;
  }
}

@media (max-width: 380px) and (max-height: 680px) {
  .wpo-hero-style-3 .wedding-announcement .couple-text {
    padding-top: 10px !important;
    padding-bottom: 28px !important;
  }

  .wpo-hero-style-3 .wedding-announcement .couple-text h2 {
    font-size: 34px !important;
  }

  .wpo-hero-style-3 .wedding-announcement .couple-text p {
    margin-bottom: 8px !important;
    font-size: 11px !important;
  }

  .wpo-hero-style-3 .wpo-wedding-date #clock > .box {
    height: 66px !important;
  }

  .wpo-hero-style-3 .wpo-wedding-date #clock .time {
    margin-top: 9px !important;
    font-size: 19px !important;
  }

  .wpo-hero-style-3 .markus-hero-actions .markus-rsvp-button {
    min-height: 38px !important;
  }
}
/* FIM: MOBILE ROBUSTO — MENU E BANNER */

/* INÍCIO: CORREÇÃO DEFINITIVA DO MENU E BANNER MOBILE */

/* Controles do menu nunca aparecem no desktop. */
.markus-mobile-menu-button,
.markus-mobile-menu-close {
  display: none !important;
}

@media (min-width: 992px) {
  #header #navbar.markus-navigation-panel {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 991px) {
  body.markus-mobile-menu-open {
    overflow: hidden !important;
    overscroll-behavior: none;
    touch-action: none;
  }

  #header,
  #header .wpo-site-header,
  #header .navigation {
    z-index: 100000 !important;
  }

  #header .navigation {
    min-height: 64px !important;
    padding: 0 14px !important;
    background: #fff !important;
  }

  #header .navigation .container-fluid,
  #header .navigation .row {
    min-height: 64px !important;
  }

  /* Logo à esquerda. */
  #header .navbar-header {
    display: flex !important;
    height: 64px !important;
    align-items: center !important;
  }

  #header .navbar-brand.logo {
    position: relative !important;
    z-index: 100002 !important;
    max-width: calc(100vw - 92px) !important;
    margin: 0 !important;
    color: #81977d !important;
    font-size: 22px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  #header .navbar-brand.logo small {
    color: inherit !important;
    font-size: inherit !important;
  }

  /* Coluna do botão posicionada no canto direito. */
  #header .mobail-menu {
    position: fixed !important;
    z-index: 100003 !important;
    top: 11px !important;
    right: 14px !important;
    display: block !important;
    width: 42px !important;
    height: 42px !important;
  }

  #header .markus-mobile-menu-button {
    position: relative !important;
    display: flex !important;
    width: 42px !important;
    height: 42px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 4px !important;
    background: #83987e !important;
    box-shadow: none !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    appearance: none !important;
  }

  #header .markus-mobile-menu-button .icon-bar {
    position: static !important;
    display: block !important;
    width: 21px !important;
    height: 2px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 2px !important;
    background: #fff !important;
    transform: none !important;
  }

  #header .header-right {
    display: none !important;
  }

  /* Painel independente do Bootstrap. */
  #header #navbar.markus-navigation-panel {
    position: fixed !important;
    z-index: 100001 !important;
    inset: 0 !important;
    display: flex !important;
    width: 100vw !important;
    max-width: none !important;
    height: 100vh !important;
    height: 100dvh !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 84px 22px 32px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    background:
      radial-gradient(circle at 50% 0%, rgba(255,255,255,.13), transparent 35%),
      linear-gradient(145deg, #263b2d 0%, #405a43 54%, #71876c 100%) !important;
    transform: translateX(100%) !important;
    transition:
      transform .34s cubic-bezier(.22,1,.36,1),
      opacity .22s ease,
      visibility 0s linear .34s !important;
  }

  body.markus-mobile-menu-open #header #navbar.markus-navigation-panel,
  #header #navbar.markus-navigation-panel.is-mobile-menu-open {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(0) !important;
    transition-delay: 0s !important;
  }

  #header #navbar .markus-mobile-menu-close {
    position: absolute !important;
    z-index: 100004 !important;
    top: 18px !important;
    right: 18px !important;
    display: grid !important;
    width: 46px !important;
    height: 46px !important;
    place-items: center !important;
    padding: 0 !important;
    border: 1px solid rgba(255,255,255,.4) !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.12) !important;
    color: #fff !important;
    font-size: 20px !important;
    cursor: pointer !important;
  }

  #header #navbar > ul {
    display: flex !important;
    width: min(100%, 430px) !important;
    min-height: calc(100dvh - 150px) !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  #header #navbar > ul > li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    border: 0 !important;
    float: none !important;
    text-align: center !important;
  }

  #header #navbar > ul > li > a {
    display: flex !important;
    width: 100% !important;
    min-height: 56px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 14px !important;
    border: 1px solid transparent !important;
    border-radius: 14px !important;
    background: transparent !important;
    color: rgba(255,255,255,.95) !important;
    font-size: clamp(18px, 5.2vw, 24px) !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
  }

  #header #navbar > ul > li > a.active,
  #header #navbar > ul > li > a:hover,
  #header #navbar > ul > li > a:focus-visible {
    border-color: rgba(255,255,255,.28) !important;
    background: rgba(255,255,255,.12) !important;
    color: #fff !important;
  }
}

@media (max-width: 767px) {
  #header {
    height: 64px !important;
  }

  /* O banner ocupa a área visível restante, sem quebrar o Swiper. */
  .wpo-hero-slider.wpo-hero-style-3 {
    position: relative !important;
    width: 100% !important;
    height: calc(100vh - 64px) !important;
    height: calc(100svh - 64px) !important;
    min-height: 600px !important;
    max-height: none !important;
    margin: 0 !important;
    overflow: hidden !important;
    background: #263b2d !important;
  }

  .wpo-hero-style-3 > .swiper-container {
    position: absolute !important;
    z-index: 1 !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
  }

  .wpo-hero-style-3 > .swiper-container > .swiper-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
  }

  .wpo-hero-style-3 > .swiper-container > .swiper-wrapper > .swiper-slide {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
  }

  .wpo-hero-style-3 .slide-inner {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
  }

  /* Recortes verticais locais, um para cada slide. */
  .wpo-hero-style-3 .swiper-slide:nth-child(1) .slide-inner {
    background-image: url("../assets/images/slider/mobile/slide-1.webp") !important;
  }

  .wpo-hero-style-3 .swiper-slide:nth-child(2) .slide-inner {
    background-image: url("../assets/images/slider/mobile/slide-2.webp") !important;
  }

  .wpo-hero-style-3 .swiper-slide:nth-child(3) .slide-inner {
    background-image: url("../assets/images/slider/mobile/slide-3.webp") !important;
  }

  .wpo-hero-style-3 .swiper-slide:nth-child(4) .slide-inner {
    background-image: url("../assets/images/slider/mobile/slide-4.webp") !important;
  }

  .wpo-hero-style-3 .wedding-announcement {
    z-index: 5 !important;
  }

  .wpo-hero-style-3 .next-prev-btn {
    display: none !important;
  }
}

@media (max-width: 380px) and (max-height: 680px) {
  .wpo-hero-slider.wpo-hero-style-3 {
    min-height: 540px !important;
  }
}

/* FIM: CORREÇÃO DEFINITIVA DO MENU E BANNER MOBILE */


/* INÍCIO: REFINOS FINAIS DO CABEÇALHO E PRIMEIRA DOBRA */
@media (max-width: 991px) {
  #header .navigation .row {
    position: relative !important;
    display: block !important;
    width: 100% !important;
  }

  #header .navigation .row > div:nth-child(1) {
    position: static !important;
    width: 0 !important;
    max-width: 0 !important;
    padding: 0 !important;
  }

  #header .navigation .row > div:nth-child(2) {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 58px 0 0 !important;
  }

  #header .navigation .row > div:nth-child(3) {
    position: static !important;
    width: 0 !important;
    max-width: 0 !important;
    padding: 0 !important;
  }

  #header .navigation .row > div:nth-child(4) {
    display: none !important;
  }

  body.markus-mobile-menu-open #header .markus-mobile-menu-button {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

@media (max-width: 767px) {
  .wpo-hero-style-3 .wedding-announcement {
    align-items: flex-end !important;
    justify-content: center !important;
    padding: 0 0 18px !important;
  }

  .wpo-hero-style-3 .wedding-announcement .couple-text {
    padding: 16px 14px 26px !important;
  }
}
/* FIM: REFINOS FINAIS DO CABEÇALHO E PRIMEIRA DOBRA */

/* INÍCIO: CABEÇALHO MOBILE SEM HAMBÚRGUER E RSVP AJUSTADO */

/* O menu completo continua disponível apenas no desktop. */
@media (max-width: 991px) {
  body {
    overflow-x: hidden;
  }

  #header {
    position: relative !important;
    z-index: 10000 !important;
    width: 100% !important;
    height: 68px !important;
  }

  #header .wpo-site-header,
  #header .navigation {
    width: 100% !important;
    min-height: 68px !important;
    background: #ffffff !important;
  }

  #header .navigation {
    padding: 0 14px !important;
    box-shadow: 0 6px 20px rgba(38, 59, 45, 0.08) !important;
  }

  #header .navigation .container-fluid,
  #header .navigation .row {
    width: 100% !important;
    min-height: 68px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #header .navigation .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
  }

  /* Retira definitivamente a área do hambúrguer. */
  #header .navigation .row > div:nth-child(1),
  #header .mobail-menu,
  #header .markus-mobile-menu-button,
  #header .markus-mobile-menu-close {
    display: none !important;
  }

  /* Logo à esquerda. */
  #header .navigation .row > div:nth-child(2) {
    display: flex !important;
    width: auto !important;
    max-width: none !important;
    flex: 1 1 auto !important;
    padding: 0 !important;
  }

  #header .navbar-header {
    display: flex !important;
    width: 100% !important;
    height: 68px !important;
    align-items: center !important;
  }

  #header .navbar-brand.logo {
    display: inline-flex !important;
    max-width: 165px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #81977d !important;
    font-size: 22px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  #header .navbar-brand.logo small {
    color: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
  }

  /* A navegação textual fica oculta no celular. */
  #header .navigation .row > div:nth-child(3),
  #header #navbar,
  #header .markus-navigation-panel {
    display: none !important;
  }

  /* Botão direto de confirmação no lugar do hambúrguer. */
  #header .navigation .row > div:nth-child(4) {
    display: flex !important;
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding: 0 !important;
  }

  #header .header-right,
  #header .markus-button-frame--header {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #header .markus-rsvp-button--header {
    display: inline-flex !important;
    width: auto !important;
    min-width: 138px !important;
    min-height: 42px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 13px !important;
    border: 2px solid rgba(255, 255, 255, 0.78) !important;
    outline: 1px solid #81977d !important;
    outline-offset: 2px !important;
    background: #81977d !important;
    color: #ffffff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  #header .markus-rsvp-button--header span {
    color: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
  }

  #confirmar-presenca {
    scroll-margin-top: 68px;
  }
}

@media (max-width: 390px) {
  #header .navigation {
    padding: 0 10px !important;
  }

  #header .navbar-brand.logo {
    max-width: 142px !important;
    font-size: 19px !important;
  }

  #header .markus-rsvp-button--header {
    min-width: 126px !important;
    min-height: 40px !important;
    padding: 9px 10px !important;
    font-size: 9px !important;
  }
}

/* Formulário mobile com o mesmo encaixe visual da versão desktop. */
@media (max-width: 575px) {
  #confirmar-presenca.wpo-contact-section {
    padding: 42px 0 68px !important;
    overflow: hidden !important;
    background-position: center !important;
  }

  #confirmar-presenca > .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  #confirmar-presenca .wpo-contact-section-wrapper {
    width: min(100%, 390px) !important;
    max-width: 390px !important;
    margin: 52px auto 22px !important;
    overflow: visible !important;
    border-radius: 190px 190px 34px 34px !important;
    background: #ffffff !important;
    box-shadow: 0 10px 34px rgba(0, 11, 50, 0.16) !important;
  }

  #confirmar-presenca .wpo-contact-form-area {
    position: relative !important;
    z-index: 4 !important;
    padding: 102px 28px 44px !important;
    border-radius: 190px 190px 34px 34px !important;
    background: #ffffff !important;
  }

  #confirmar-presenca .wpo-section-title {
    margin-bottom: 24px !important;
  }

  #confirmar-presenca .wpo-section-title h2 {
    max-width: 270px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    font-size: clamp(27px, 8vw, 38px) !important;
    line-height: 1.05 !important;
  }

  #confirmar-presenca .wpo-contact-form-area .form-control {
    height: 48px !important;
    margin-bottom: 16px !important;
    font-size: 14px !important;
  }

  #confirmar-presenca .submit-area {
    margin-top: 8px !important;
  }

  /* Arco superior centralizado, sem cortar nas laterais. */
  #confirmar-presenca .vector-1 {
    position: absolute !important;
    z-index: 5 !important;
    top: -72px !important;
    left: 50% !important;
    display: block !important;
    width: 112% !important;
    max-width: 430px !important;
    transform: translateX(-50%) !important;
    pointer-events: none !important;
  }

  #confirmar-presenca .vector-1 img {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    opacity: 1 !important;
  }

  /* Flores inferiores seguindo a borda do formulário. */
  #confirmar-presenca .vector-2 {
    position: absolute !important;
    z-index: 2 !important;
    right: 50% !important;
    bottom: -92px !important;
    left: auto !important;
    display: block !important;
    width: 112% !important;
    max-width: 430px !important;
    transform: translateX(50%) !important;
    pointer-events: none !important;
  }

  #confirmar-presenca .vector-2 img {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    opacity: 0.92 !important;
  }

  #confirmar-presenca .shape-1,
  #confirmar-presenca .shape-2 {
    opacity: 0.35 !important;
  }
}

@media (max-width: 380px) {
  #confirmar-presenca.wpo-contact-section {
    padding-top: 34px !important;
  }

  #confirmar-presenca .wpo-contact-section-wrapper {
    width: calc(100% - 6px) !important;
    margin-top: 48px !important;
  }

  #confirmar-presenca .wpo-contact-form-area {
    padding: 92px 22px 38px !important;
  }

  #confirmar-presenca .vector-1,
  #confirmar-presenca .vector-2 {
    width: 118% !important;
  }
}

/* FIM: CABEÇALHO MOBILE SEM HAMBÚRGUER E RSVP AJUSTADO */
