:root {
  --spotify-soft-green: #b6e2c8;
  --borda-principal: #ff9ebd;
  --borda-secundaria: #ffcddc;
  --sombra-romantica: rgba(255, 160, 200, 0.18);
  --anim-duration: 1.6s;
}

.borda-romantica {
  border: 3px solid var(--borda-principal);
  border-radius: 18px;
  box-shadow: 0 6px 22px var(--sombra-romantica);
  overflow: hidden;
}

.img-romantica {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.card-adjust {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.card-adjust .card-text {
  flex: 1 1 40%;
}

@media (max-width: 768px) {
  .card-adjust {
    gap: 1rem;
  }

  .card-adjust .card-text {
    flex-basis: 100%;
    margin-top: 0.4rem;
  }

  .borda-romantica {
    border-width: 2px;
    border-radius: 14px;
  }
}

/* CORREÇÃO DEFINITIVA DO SCROLL */
html,
body {
  overflow-y: auto !important;
  height: auto !important;
}

.mbr-reveal {
  position: static !important;
  height: auto !important;
}

/* FOOTER CUSTOM */
#footer-custom {
  background-image: linear-gradient(to right, #aee6ff, #ffe1fd 60%);
  padding: 60px 20px;
  text-align: center;
  margin: 0px;
  padding: 10px 0px 10px 0px;
  min-height: 0rem;
}

.footer-container {
  max-width: 900px;
  margin: auto;
}

#footer-custom span {
  font-size: 0.9rem;
}

footer {
  position: relative;
  padding: 22px 16px 18px;
  text-align: center;
  background: linear-gradient(180deg,
      #fde4f1 0%,
      #f8cfe3 45%,
      #f4bcd8 100%);
}

footer p,
footer span {
  color: #a76a8f;
  font-size: 13px;
  font-weight: bolder;
  letter-spacing: 0.4px;
}

.footer-flower {
  position: absolute;
  left: 16px;
  bottom: 14px;
  width: 18px;
  height: 18px;
  opacity: 0.85;
  pointer-events: none;
}

.footer-flower img {
  width: 100%;
  height: 100%;
  display: block;
  animation: daisyWind 5.5s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes daisyWind {
  0% {
    transform: rotate(0deg) translateY(0);
  }

  25% {
    transform: rotate(2deg) translateY(-1px);
  }

  50% {
    transform: rotate(-2deg) translateY(1px);
  }

  75% {
    transform: rotate(1deg) translateY(-1px);
  }

  100% {
    transform: rotate(0deg) translateY(0);
  }
}

@media (max-width: 480px) {
  footer {
    padding: 26px 12px 20px;
  }

  .footer-flower {
    left: 10px;
    bottom: 10px;
    width: 16px;
    height: 16px;
    opacity: 0.75;
  }

  footer p,
  footer span {
    font-size: 12px;
  }
}

.zck-custom {
  position: relative;
  display: inline-block;

  font-weight: 600;
  color: #2f2f2f;
  text-decoration: none;

  padding: 6px 12px;
  border-radius: 6px;

  overflow: hidden;
  transition: color 0.35s ease;
}

.zck-custom::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(90deg,
      #b6e2c8,
      #ccebdd);

  transform: translateX(100%);
  transition: transform 0.45s ease;

  z-index: -1;
  border-radius: 6px;
}

.zck-custom:hover::before {
  transform: translateX(0);
}

.zck-custom:hover {
  color: #1f5f46;
}

@media (max-width: 480px) {
  .zck-custom {
    padding: 5px 10px 5px 10px;
    font-size: 15px;
  }
}

h1,
h2 {
  text-shadow: 1px 1px 2px #2f2f2f;
}

h3 {
  text-shadow: 1px 1px 1px #2f2f2f;
}

.video-bg {
  position: relative;
  overflow: hidden;
}

/* WRAPPER CONTROLA O CORTE */
.video-bg .video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 177.77vh;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.video-bg .container-fluid,
.video-bg .mbr-overlay {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  .navbar,
  .mbr-navbar {
    padding: 10px 14px !important;
  }

  .navbar-brand img {
    max-height: 42px;
  }

  .navbar-brand span {
    font-size: 1rem;
  }

  .mbr-fullscreen {
    min-height: 100svh !important;
    padding: 24px 16px !important;
  }

  .mbr-fullscreen h1,
  .mbr-fullscreen h2 {
    font-size: 1.9rem !important;
    line-height: 1.2;
    text-align: center;
  }

  .mbr-fullscreen p {
    font-size: 0.95rem !important;
    line-height: 1.4;
    text-align: center;
  }
}

/* VIMEO FULLSCREEN */
.video-fullscreen {
  width: 100%;
  height: 100svh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.video-fullscreen iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0 !important;
  display: block;
}

.video-section {
  position: relative;
  overflow: hidden;
}

.video-section .video-cover {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.video-section .video-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}

.video-section iframe {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 120vw;
  height: 120vh;

  min-width: 100%;
  min-height: 100%;

  transform: translate(-50%, -50%);
  pointer-events: none;
}

.video-section .mbr-overlay,
.video-section .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .video-section iframe {
    width: 160vw;
    height: 160vh;
  }
}

.borda-animada {
  position: relative;
  padding: 5px;
  border-radius: 15px;
  overflow: hidden;
}

.borda-animada iframe {
  position: relative;
  z-index: 2;
  border-radius: 12px !important;
  border: none !important;
}

.borda-animada::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -20%;
  width: 140%;
  height: 80%;
  background: linear-gradient(270deg, #FFA0F9 50%, #8CB7F9 50%);
  animation: girarBorda 10s linear infinite;
  z-index: 1;
}

@keyframes girarBorda {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#image02-i .image-wrapper h1 {
  margin-top: 10px;
}

@media (min-width: 992px) {
  .navbar .container {
    justify-content: flex-start;
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-name {
  font-size: 1.6rem;
  font-weight: 600;
  color: #f2f2f2;
  letter-spacing: 0.04em;

  transition:
    color 0.35s ease,
    transform 0.35s ease,
    text-shadow 0.35s ease;
}

.brand-name:hover {
  color: #d4af37;
  transform: translateY(-1px);
  text-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

.brand-name {
  position: relative;
}

.brand-name::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #d4af37;
  transition: width 0.35s ease;
}

.brand-name:hover::after {
  width: 100%;
}

/* DESATIVAÇÃO SEGURA DE ANIMAÇÕES DUPLICADAS */
.mbr-animated,
.mbr-section-title[data-animate],
.mbr-text[data-animate] {
  animation: none !important;
}

.jarallax {
  transform: none !important;
}

#testimonials-7-v4t53pILQ5 {
  background-color: rgb(255, 225, 253);
  overflow: hidden;
}

#testimonials-7-v4t53pILQ5 .card {
  background: transparent;
  border: none;
}

#testimonials-7-v4t53pILQ5 .card-box {
  animation: softFadeUp 1.2s ease forwards;
}


#testimonials-7-v4t53pILQ5 .card-text {
  color: #5a2d4f;
  letter-spacing: 0.4px;
  position: relative;
}

#testimonials-7-v4t53pILQ5 .img-wrapper {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

#testimonials-7-v4t53pILQ5 .img-wrapper::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 140, 190, 0.45),
      rgba(255, 140, 190, 0.15),
      transparent 70%);
  animation: auraPulse 3.5s ease-in-out infinite;
  z-index: 0;
}

#testimonials-7-v4t53pILQ5 .img-wrapper img {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  max-width: 100%;
  height: auto;
  transition: transform .45s ease, box-shadow .45s ease;
}

#testimonials-7-v4t53pILQ5 .img-wrapper:hover img {
  transform: scale(1.05);
  box-shadow: 0 14px 30px rgba(255, 120, 180, 0.35);
}

#testimonials-7-v4t53pILQ5 .card-title {
  color: #6b3458;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

#testimonials-7-v4t53pILQ5 .card-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff9ccf, #ff6fb1);
  transform: translateX(-50%);
  transition: width .4s ease;
}

#testimonials-7-v4t53pILQ5 .card-title:hover::after {
  width: 100%;
}

#testimonials-7-v4t53pILQ5 .card-title strong {
  animation: heartSoft 2.2s ease-in-out infinite;
}

/* ===== Keyframes ===== */
@keyframes softFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes auraPulse {
  0%, 100% {
    transform: scale(1);
    opacity: .6;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@keyframes heartSoft {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}

.ps-letter {
  font-family: 'Dancing Script', cursive;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #7a4b6a;
  max-width: 90%;
  opacity: 0.95;
  letter-spacing: 0.3px;
  text-align: left;
  position: relative;
}
