/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

/* RSVP Styles */
* {
  box-sizing: border-box;
}

html {
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: none;
  color: #000;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  padding: 20px;
}

/* Home page: full-width layout */
body.page-home {
  padding: 0;
  background: #faf9f7;
  min-height: 100vh;
}

.page-home {
  min-height: 100vh;
  background: #faf9f7;
  padding: 0;
}

/* Navbar */
.navbar {
  position: static;
  z-index: 100;
  background: transparent;
  border-bottom: none;
  margin-top: 0.8rem;
}

.navbar-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem 0.8rem 0rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: auto;
  flex: 0 0 auto;
}

.navbar-brand {
  font-size: clamp(2.6rem, 7.2vw, 4.1rem);
  line-height: 0.95;
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.navbar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-link {
  display: block;
  padding: 0.2rem 0.42rem;
  color: #000;
  text-decoration: none;
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  border-radius: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  opacity: 0.65;
  background: transparent;
  transform: translateY(-3px);
}

.nav-link:focus {
  transform: translateY(3px);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  color: #000;
}

.navbar-toggle-bar {
  display: block;
  height: 2px;
  width: 22px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.navbar-close {
  display: none;
}

/* Mobile: full-screen black overlay menu */
@media (max-width: 768px) {
  .navbar {
    background: transparent;
    border-bottom: none;
  }

  .navbar-container {
    max-width: 390px;
    margin: 1.1rem auto 0;
    padding: 1.05rem 1.1rem 1.05rem 0.7rem;
    background: transparent;
    border-radius: 0;
    gap: 0;
  }

  .navbar-inner {
    width: 100%;
  }

  .navbar-toggle {
    display: flex;
    width: 36px;
    height: 36px;
    border: 1px solid transparent;
  }

  .navbar-brand {
    font-size: clamp(2.2rem, 12.2vw, 3.6rem);
    letter-spacing: 0.05em;
  }

  .navbar-overlay {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    background: transparent;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 2.5rem 1.5rem 2rem;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear 0s;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navbar-overlay::before {
    content: "";
    position: fixed;
    inset: 0;
    left: 0;
    right: 0;
    background: #000;
    z-index: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navbar-overlay.is-open {
    visibility: visible;
    pointer-events: auto;
    transition: visibility 0s linear 0s;
    background: #000;
  }

  .navbar-overlay.is-open::before {
    transform: scaleX(1);
    transform-origin: left;
  }

  .navbar-overlay.is-closing::before {
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  html.navbar-menu-open,
  body.navbar-menu-open {
    overflow: hidden !important;
  }

  body.navbar-menu-open {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
  }

  .navbar-overlay .navbar-close {
    z-index: 3;
    pointer-events: auto;
  }

  .navbar-overlay .navbar-menu {
    position: relative;
    z-index: 1;
  }

  .navbar-close {
    display: block;
    position: absolute;
    top: 1.5rem;
    left: auto;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    font-weight: 300;
    -webkit-tap-highlight-color: transparent;
    transform: translateX(32px);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    transition-delay: 0.12s;
  }

  .navbar-overlay.is-open .navbar-close {
    transform: translateX(0);
    opacity: 1;
  }

  .navbar-overlay.is-closing .navbar-close {
    transform: translateX(32px);
    opacity: 0;
    transition-delay: 0s;
  }

  .navbar-overlay .navbar-menu {
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
    transform: translateX(-32px);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    transition-delay: 0.12s;
  }

  .navbar-overlay.is-open .navbar-menu {
    transform: translateX(0);
    opacity: 1;
  }

  .navbar-overlay.is-closing .navbar-menu {
    transform: translateX(-32px);
    opacity: 0;
    transition-delay: 0s;
  }

  .navbar-overlay .navbar-menu li {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .navbar-overlay .nav-link {
    display: block;
    padding: 1rem 0.75rem;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }

  .navbar-overlay .nav-link:hover,
  .navbar-overlay .nav-link:focus {
    color: #fff;
    background: transparent;
    opacity: 0.85;
  }
}

/* Desktop: overlay in flow, menu in header row */
@media (min-width: 769px) {
  .navbar-overlay {
    position: static;
    width: auto;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: transparent;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transition: none;
  }

  .navbar-close {
    display: none !important;
  }

  .navbar-overlay .navbar-menu {
    flex-direction: row;
    justify-content: flex-end;
    max-width: none;
    flex-wrap: wrap;
  }

  .navbar-overlay .navbar-menu li {
    max-width: none;
    width: auto;
    text-align: left;
  }

  .navbar-overlay .navbar-menu li:last-child {
    margin-left: auto;
  }

  .navbar-overlay .nav-link {
    padding: 0.2rem 0.35rem;
    color: #000;
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.19em;
    text-transform: uppercase;
  }

  .navbar-overlay .nav-link:hover {
    color: #000;
    background: transparent;
    opacity: 0.65;
  }
}

@keyframes hero-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Home intro letter */
.home-intro {
  padding: 1.75rem 1.25rem 1.25rem;
}

.home-intro-inner {
  max-width: 50rem;
  margin: 0 auto;
  padding: 1.5rem 1.35rem;
  box-sizing: border-box;
  text-align: center;
}

.home-intro-inner p {
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: #000;
}

.home-intro-inner p:last-child {
  margin-bottom: 0;
}

.home-intro-greeting {
  font-weight: 600;
  color: #000;
}

.home-intro-inner p.home-intro-foot {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 0.875rem;
  font-style: italic;
  color: #000;
}

@media (min-width: 769px) {
  .home-intro {
    padding: 2.25rem 1.5rem 1.75rem;
  }

  .home-intro-inner {
    padding: 2rem 2.25rem;
  }

  .home-intro-inner p {
    font-size: 1.1875rem;
  }
}

/* Home nav blocks (mobile-first: large tappable images) */
.home-nav-blocks {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1rem 1rem 0;
}

.home-nav-block {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #000;
  background: transparent;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  border: none;
  margin-bottom: 2rem;
}

.home-nav-block:last-child {
  margin-bottom: 0;
}

.home-nav-block:active {
  opacity: 0.97;
}

.home-nav-block-img {
  display: block;
  width: min(374px, 100%);
  aspect-ratio: 1;
  height: auto;
  margin: 0 auto;
  object-fit: cover;
  vertical-align: middle;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.home-nav-block:hover .home-nav-block-img {
  filter: grayscale(100%);
  opacity: 0.9;
  transform: translateY(-6px);
}

.home-nav-block-label {
  display: block;
  width: 100%;
  padding: 1.25rem 1rem 0;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  background: transparent;
  color: #000;
}

@media (min-width: 769px) {
  .home-nav-blocks {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1.5rem 0;
  }

  .home-nav-block {
    margin-bottom: 2.5rem;
  }

  .home-nav-block:last-child {
    margin-bottom: 0;
  }

  .home-nav-block-label {
    padding: 1.5rem 1.25rem 0;
  }

  .lista-de-casamento-section .home-nav-blocks {
    max-width: 980px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: start;
  }

  .lista-de-casamento-section .home-nav-block {
    margin-bottom: 0;
  }

  .page-home .home-nav-blocks {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem 1.75rem;
    align-items: start;
  }

  .page-home .home-nav-block {
    margin-bottom: 0;
  }
}

/* Sections */
.page-home main .section {
  padding: 3.5rem 1.5rem;
}

.page-home main .section-alt {
  background: #f1f0ed;
}

.container {
  max-width: 720px;
  margin: 0 auto;
}

.section-title {
  margin: 0 0 1.75rem 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  letter-spacing: -0.02em;
}

/* O nosso dia: info block + 2×2 photo collage */
.section-title--nosso-dia {
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.875rem;
}

.nosso-dia-intro {
  margin-bottom: 2.25rem;
  text-align: center;
}

.nosso-dia-meta {
  margin: 0 0 1.25rem 0;
  font-size: 1.125rem;
  color: #000;
  line-height: 1.5;
}

.nosso-dia-meta-sep {
  margin: 0 0.5rem;
  color: #000;
}

.nosso-dia-details p {
  margin: 0 0 0.65rem 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
}

.nosso-dia-details p strong {
  font-weight: 600;
  color: #000;
}

.nosso-dia-action-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nosso-dia-action-link:hover {
  color: #000;
  opacity: 0.75;
}

.como-chegar-spot {
  margin-top: 1.75rem;
}

.como-chegar-spot:first-of-type {
  margin-top: 1rem;
}

.como-chegar-spots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.como-chegar-spot .nosso-dia-action-link {
  margin-top: 0.75rem;
}

.nosso-dia-section .como-chegar-spot p {
  margin: 0 0 0.2rem 0;
  min-height: 2.2rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}

.nosso-dia-section .como-chegar-spot .nosso-dia-action-link {
  display: block;
  width: fit-content;
  margin: 0.75rem auto 0;
  text-align: center;
}

.como-chegar-img {
  width: 100%;
  display: block;
  margin-top: 0.35rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  line-height: 0;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.nosso-dia-section .como-chegar-spot:hover .como-chegar-img {
  filter: grayscale(100%);
  opacity: 0.9;
  transform: translateY(-6px);
}

.como-chegar-drivers {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  text-align: center;
}

.como-chegar-drivers p {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
}

.como-chegar-drivers p:last-child {
  margin-bottom: 0;
}

.como-chegar-drivers .nosso-dia-action-link {
  margin-top: 0;
}

@media (min-width: 769px) {
  .nosso-dia-section .container {
    max-width: 1100px;
  }

  .nosso-dia-section .como-chegar-spot {
    display: flex;
    flex-direction: column;
  }

  .nosso-dia-section .como-chegar-spot p {
    min-height: 2.2rem;
    margin-bottom: 0.2rem;
  }

  .como-chegar-spots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
  }

  .como-chegar-spot,
  .como-chegar-spot:first-of-type {
    margin-top: 0;
  }
}

/* Onde ficar — grelha tipo cartões (hotéis) */
.onde-ficar-section .container {
  max-width: 40rem;
}

.onde-ficar-hotels-header {
  text-align: center;
  margin-bottom: 2rem;
}

.onde-ficar-hotels-title {
  margin: 0 0 1rem 0;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #000;
  line-height: 1.2;
}

.onde-ficar-hotels-intro {
  margin: 0 auto 1rem;
  max-width: 34rem;
  font-size: 1.2rem;
  line-height: 1.65;
  letter-spacing: 0.03em;
  color: #000;
  text-align: center;
}

.onde-ficar-hotels-hint {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  font-style: italic;
  color: #000;
}

.onde-ficar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 1rem;
  text-align: center;
}

.onde-ficar-card {
  margin: 0;
}

.onde-ficar-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.onde-ficar-card-link:hover {
  opacity: 0.92;
}

.onde-ficar-card-img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 0;
  vertical-align: middle;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.onde-ficar-card-link:hover .onde-ficar-card-img {
  filter: grayscale(100%);
  opacity: 0.9;
  transform: translateY(-6px);
}

.onde-ficar-card-name {
  margin: 0.85rem 0 0.35rem 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #000;
}

.onde-ficar-card-meta {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #000;
}

/* Lista de presentes — progresso e estado “Oferecido” */
.lista-item-card--offered {
  opacity: 0.58;
}

.lista-item-card--offered .onde-ficar-card-name {
  color: #000;
}

.lista-item-progress {
  width: 100%;
  height: 6px;
  margin: 0.5rem 0 0;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.lista-item-progress-fill {
  height: 100%;
  background: #000;
  border-radius: 999px;
  transition: width 0.25s ease;
}

.lista-item-offered {
  margin: 0.65rem 0 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: #000;
}

.lista-presentes-section .alert {
  margin: 0 auto 1.5rem;
  max-width: 34rem;
}

.contribution-item-intro {
  margin-bottom: 1.5rem;
}

.contribution-item-summary {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  max-width: 28rem;
  margin: 0 auto;
}

.contribution-item-summary--stacked {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.contribution-item-summary--stacked .contribution-item-thumb {
  width: 220px;
  height: 220px;
  margin: 0 auto;
}

.contribution-item-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.contribution-item-text {
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: #000;
}

.contribution-hint {
  margin: 0.35rem 0 0 0;
  font-size: 0.8125rem;
  color: #000;
  opacity: 0.75;
}

.contribution-back {
  margin-top: 0.5rem;
}

.contribution-closed {
  text-align: center;
  font-size: 1.0625rem;
  margin: 0 0 1rem 0;
}

.items-admin-hint {
  margin: 0 auto 1.5rem;
  max-width: 34rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #000;
  text-align: center;
}

.items-admin-hint code {
  font-size: 0.875rem;
  padding: 0.1em 0.35em;
  background: rgba(0, 0, 0, 0.06);
}

.items-admin-file {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0.65rem 0;
  font-size: 0.9375rem;
  color: #000;
}

.lista-item-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.onde-ficar-drivers {
  margin-top: 2.5rem;
  text-align: left;
}

.lista-presentes-collage {
  margin: 0.5rem auto 1.5rem;
  max-width: min(40rem, 100%);
}

.lua-de-mel-collage {
  width: 100%;
  max-width: min(95rem, 100%);
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.lista-presentes-gifts-header {
  margin-bottom: 1.25rem;
}

.lista-presentes-gifts-header .onde-ficar-hotels-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 769px) {
  .onde-ficar-hotels-title {
    font-size: 2.125rem;
  }

  .lista-presentes-section .onde-ficar-hotels-intro {
    max-width: 50rem;
  }

  .onde-ficar-section:not(.lista-presentes-section) .onde-ficar-hotels-intro {
    max-width: 50rem;
  }

  .lista-presentes-section .container {
    max-width: 1200px;
  }

  .lista-presentes-section .onde-ficar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem 1.75rem;
  }

  .onde-ficar-section:not(.lista-presentes-section) .container {
    max-width: 1200px;
  }

  .onde-ficar-section:not(.lista-presentes-section) .onde-ficar-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem 1.75rem;
  }

  .onde-ficar-grid {
    gap: 2rem 1.5rem;
  }

  .lista-presentes-collage.nosso-dia-collage {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .onde-ficar-card-name {
    font-size: 1rem;
  }

  .onde-ficar-card-meta {
    font-size: 0.875rem;
  }
}

.nosso-dia-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 100%;
  background: #fff;
  line-height: 0;
}

.nosso-dia-collage-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.wedding-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.info-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.info-card h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
}

.info-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: #000;
  line-height: 1.5;
}

.info-card a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

.info-card a:hover {
  text-decoration: underline;
}

.info-card .btn {
  margin-top: 1rem;
  display: inline-block;
  text-decoration: none;
  color: #000;
}

.info-card .btn:hover {
  text-decoration: none;
  color: #000;
}

.content-block {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #000;
}

.lista-de-casamento-section .content-block {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.lista-de-casamento-section .onde-ficar-hotels-intro {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.content-block p {
  margin: 0 0 1rem 0;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

.content-block a:hover {
  text-decoration: underline;
}

.text-muted {
  color: #000 !important;
  font-size: 0.9375rem;
}

.rsvp-block {
  text-align: center;
  padding: 1rem 0;
}

.btn-rsvp {
  margin-top: 1rem;
  display: inline-block;
  text-decoration: none;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item h4 {
  margin: 0 0 0.35rem 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #000;
}

.faq-item p {
  margin: 0;
  font-size: 0.9375rem;
  color: #000;
  line-height: 1.5;
}

/* FAQs — conversa estilo WhatsApp */
.faq-chat-section {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.faq-chat-container {
  max-width: 28rem;
}

.faq-chat-container .section-title {
  text-transform: uppercase;
}

.faq-chat-app {
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-chat-header {
  padding: 0.65rem 1rem 0.7rem;
  background: #f0f2f5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-chat-contact {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.faq-chat-contact-icon {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-size: 0.95rem;
}

.faq-chat-contact-name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111b21;
  letter-spacing: 0.01em;
}

.faq-chat-thread {
  padding: 0.75rem 0.65rem 1.25rem;
  min-height: 12rem;
  background-color: #e5ddd5;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d1ccc4' fill-opacity='0.35'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.faq-chat-day {
  margin: 0 auto 0.85rem;
  max-width: fit-content;
  padding: 0.2rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #54656f;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.faq-chat-exchange {
  display: grid;
  row-gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.faq-chat-exchange:last-child {
  margin-bottom: 0;
}

.faq-chat-row {
  display: flex;
  align-items: flex-end;
  margin-bottom: 0;
}

.faq-chat-row:last-child {
  margin-bottom: 0;
}

.faq-chat-row--guest {
  justify-content: flex-start;
}

.faq-chat-row--host {
  justify-content: flex-end;
}

.faq-chat-bubble {
  max-width: 88%;
  padding: 0.45rem 0.6rem 0.5rem;
  font-size: 1.125rem;
  line-height: 1.45;
  box-shadow: 0 1px 0.5px rgba(11, 20, 26, 0.13);
}

.faq-chat-bubble p {
  margin: 0;
  color: #111b21;
}

.faq-chat-bubble p + p {
  margin-top: 0.4rem;
}

.faq-chat-bubble--guest {
  background: #fff;
  border-radius: 2px 10px 10px 10px;
}

.faq-chat-bubble--host {
  background: #d9fdd3;
  border-radius: 10px 2px 10px 10px;
}

.faq-chat-link {
  color: #027e6f;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-chat-link:hover {
  color: #015a50;
}

.faq-chat-bubble--guest .faq-chat-link {
  color: #027e6f;
}

@media (min-width: 769px) {
  .faq-chat-thread {
    padding: 1rem 0.85rem 1.5rem;
  }

  .faq-chat-bubble {
    font-size: 1.1875rem;
  }
}

.page-footer {
  padding: 2rem 1.5rem;
  text-align: center;
  background: #f1f0ed;
  color: #000;
  font-size: 0.9375rem;
}

.page-footer p {
  margin: 0;
}

.page-footer .container {
  max-width: 720px;
  margin: 0 auto;
}

.page-footer .back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: #000;
  text-decoration: none;
  font-size: 0.9375rem;
}

.page-footer .back-link:hover {
  color: #000;
  opacity: 0.75;
}

/* Admin dashboard */
.admin-container {
  max-width: 64rem;
}

.admin-header {
  margin-bottom: 2rem;
}

.admin-title {
  margin-bottom: 0.5rem;
}

.admin-subtitle {
  margin: 0;
  text-align: center;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  opacity: 0.75;
}

.admin-stats {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.admin-stat-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.9rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.admin-stat-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.admin-stat-value {
  margin: 0.2rem 0 0;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.admin-stat-value small {
  font-size: 0.8rem;
  letter-spacing: 0;
  font-weight: 600;
  opacity: 0.72;
}

.admin-panel {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 1rem;
  margin-top: 1.25rem;
}

.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.admin-panel-title {
  margin: 0;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #f4f4f2;
  font-size: 0.75rem;
  font-weight: 700;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 46rem;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.7rem 0.55rem;
  font-size: 0.875rem;
}

.admin-table th {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.admin-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.02);
}

.admin-table-id {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  width: 3.5rem;
}

.admin-table-value {
  font-weight: 700;
  white-space: nowrap;
}

.admin-chip {
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: #f4f4f2;
  white-space: nowrap;
}

.admin-chip--ok {
  background: #ecfdf5;
  border-color: #9de3c7;
}

.admin-chip--muted {
  background: #f5f5f5;
  border-color: #d9d9d9;
}

.admin-chip--highlight {
  background: #fef3c7;
  border-color: #f6d980;
}

.admin-empty {
  margin: 0;
  padding: 0.6rem 0.2rem 0.2rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-panel {
    padding: 0.85rem;
  }
}

@media (min-width: 900px) {
  .admin-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Inner pages (section pages) */
body.page-inner {
  padding: 0;
  background: #faf9f7;
  min-height: 100vh;
}

.page-inner {
  min-height: 100vh;
  background: #faf9f7;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.page-inner-main {
  flex: 1;
}

.page-inner .section {
  padding: 3.5rem 1.5rem;
}

/* RSVP Form Styles */
.rsvp-container,
.roulette-container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.rsvp-card,
.roulette-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 32px 24px;
  width: 100%;
}

.rsvp-title,
.roulette-title {
  text-align: center;
  color: #000;
  margin: 0 0 32px 0;
  font-size: 28px;
  font-weight: 600;
}

/* Honor page specific title spacing */
#honor-container .rsvp-title {
  margin: 0 0 20px 0;
}

.rsvp-form {
  width: 100%;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: #000;
  font-weight: 500;
  font-size: 16px;
}

.form-label--required::after {
  content: " *";
  color: #000;
  font-weight: 600;
}

.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  background: white;
  color: #000;
  transition: border-color 0.2s;
}

.form-select:focus {
  outline: none;
  border-color: #000;
}

/* Dropdown Styles */
.dropdown-wrapper {
  position: relative;
  width: 100%;
}

.dropdown-input {
  width: 100%;
  cursor: text;
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: -2px;
}

.dropdown-list.hidden {
  display: none;
}

.dropdown-item {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 16px;
  color: #000;
  transition: background-color 0.15s;
}

.dropdown-item:hover {
  background-color: #f0f0f0;
}

.dropdown-item:first-child {
  border-top: 1px solid #e0e0e0;
}

.confirmation-question {
  margin: 0 0 12px 0;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #000;
  font-size: 16px;
}

.radio-input {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #000;
}

.form-actions,
.roulette-actions {
  margin-top: 32px;
  text-align: center;
}

.btn {
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary,
.btn-spin {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}

.btn-primary:hover,
.btn-spin:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.alert-error {
  background: #fee;
  color: #000;
  border: 1px solid #fcc;
}

.alert-success {
  background: #ecfdf5;
  color: #000;
  border: 1px solid #a7f3d0;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.confirmacoes-intro {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
}

.confirmacoes-intro p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: #000;
  text-align: center;
}

.confirmacoes-after-submit {
  margin: 16px 0 0 0;
}

.confirmacoes-contact {
  margin-top: 2rem;
  text-align: center;
}

.confirmacoes-contact p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #000;
}

/* Confirmações: botão principal (estilo editorial, alinhado à home) */
.confirmacoes-form .form-actions {
  margin-top: 2rem;
}

.confirmacoes-form .form-select,
.confirmacoes-form .form-textarea {
  border-radius: 0;
}

.btn.btn-confirmacoes {
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
  display: block;
  text-decoration: none;
  padding: 1rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  background: #faf9f7;
  border: 2px solid #000;
  border-radius: 0;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
}

.btn.btn-confirmacoes:hover {
  color: #000;
  background: #fff;
  border-color: #000;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.btn.btn-confirmacoes:focus-visible {
  outline: 2px solid #000;
  outline-offset: 3px;
}

.btn.btn-confirmacoes:active {
  transform: translateY(0);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
}

.btn.btn-confirmacoes.btn-confirmacoes-inline {
  width: auto;
  max-width: none;
  margin: 0;
  display: inline-block;
}

.revolut-links-row {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

@media (min-width: 769px) {
  .section-alt .contribution-item-summary--stacked {
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .section-alt .contribution-item-summary--stacked .contribution-item-thumb {
    width: 350px;
    height: 350px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
  }

  .section-alt .contribution-item-intro .payment-actions {
    text-align: center;
  }
}

@media (min-width: 769px) {
  .contribution-item-intro .payment-actions {
    text-align: center;
  }

  .contribution-item-intro .revolut-links-row {
    width: fit-content;
    margin: 0 auto;
  }
}

/* Roulette Wheel Styles */
/* --- Wheel / Pointer --- */
.wheel-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 28px;
  aspect-ratio: 1;
}

.wheel {
  --rotation: 0deg;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 10px solid #1f2937;              /* slate-800 */
  box-shadow: 0 20px 50px rgba(0,0,0,.18), inset 0 0 0 6px rgba(255,255,255,.5);
  background:
    radial-gradient(closest-side, rgba(255,255,255,.45), transparent 60%),
    conic-gradient(
      #fef3c7 0 45deg,      /* yellow-100 */
      #fde68a 45deg 90deg,   /* yellow-300 */
      #fbbf24 90deg 135deg,  /* yellow-500 */
      #f59e0b 135deg 180deg, /* amber-500 */
      #10b981 180deg 225deg, /* emerald-500 */
      #06b6d4 225deg 270deg, /* cyan-500 */
      #3b82f6 270deg 315deg, /* blue-500 */
      #8b5cf6 315deg 360deg  /* violet-500 */
    );
  transform: rotate(var(--rotation));
  transition: transform 4.6s cubic-bezier(.17,.67,.12,.99);
  overflow: hidden;
}

/* decorative inner ring + gloss */
.wheel-ring {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.65);
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.2);
  pointer-events: none;
}
.wheel-gloss {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 60% at 50% -10%, rgba(255,255,255,.55), transparent 35%);
  border-radius: 50%;
  pointer-events: none;
}

/* Labels at slice centers */
.wheel-label {
  --angle: calc(var(--i) * 45deg + 22.5deg); /* center of each 45° slice */
  --radius: calc(50% - 40px); /* Distance from center (adjust 40px for label position) */
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform-origin: 0 0;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius)));
  pointer-events: none;
  z-index: 5;
}
.wheel-label span {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle)));
  display: inline-block;
  background: rgba(255,255,255,.95);
  padding: .4rem .7rem;
  border-radius: .5rem;
  font-weight: 600;
  font-size: 13px;
  color: #000;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
  white-space: nowrap;
  border: 1px solid rgba(0,0,0,.12);
  text-align: center;
}

/* Pointer */
.wheel-pointer {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 26px solid #ef4444;          /* red-500 */
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.25));
  z-index: 10;
}

/* Result + buttons (unchanged, just minor polish) */
.result { text-align:center; margin: 20px 0; padding: 18px; background:#f8f9fa; border-radius:12px; }
.result.hidden { display:none; }
.result-message { margin:0; font-size:20px; color:#000; line-height:1.5; }
.result-message strong { color:#000; font-size:22px; }

/* Honor page styles */
.honor-content {
  text-align: center;
  padding: 20px 0;
}

.honor-gif {
  margin: 10px 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Honor loading screen */
.honor-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.honor-loading-spinner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid #e5e7eb;
  border-top-color: #000;
  animation: honor-spin 1s linear infinite;
  margin-bottom: 12px;
}

.honor-loading-text {
  margin: 0;
  color: #000;
  font-size: 16px;
}

@keyframes honor-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Honor page specific image styling */
#honor-container .gif-animation {
  max-width: 80%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.gif-animation {
  max-width: 70%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.honor-message {
  font-size: 24px;
  color: #000;
  line-height: 1.6;
  margin: 20px 0 0;
}

.honor-message strong {
  color: #000;
  font-size: 28px;
}

.btn.btn-spin {
  background: #fff;
  color: #000;
  border: 2px solid #000;
  border-radius: 12px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
.btn.btn-spin:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.btn:disabled{ opacity:.6; cursor:not-allowed; }

/* Confetti (re-use your existing) */


/* Counter-rotate text to make it horizontal in each section */
/* Each section is rotated by section-index * 45deg, so we need to counter-rotate */
.wheel-section[style*="--section-index: 0"] span {
  transform: translateX(-50%) rotate(-0deg);
}

.wheel-section[style*="--section-index: 1"] span {
  transform: translateX(-50%) rotate(-45deg);
}

.wheel-section[style*="--section-index: 2"] span {
  transform: translateX(-50%) rotate(-90deg);
}

.wheel-section[style*="--section-index: 3"] span {
  transform: translateX(-50%) rotate(-135deg);
}

.wheel-section[style*="--section-index: 4"] span {
  transform: translateX(-50%) rotate(-180deg);
}

.wheel-section[style*="--section-index: 5"] span {
  transform: translateX(-50%) rotate(-225deg);
}

.wheel-section[style*="--section-index: 6"] span {
  transform: translateX(-50%) rotate(-270deg);
}

.wheel-section[style*="--section-index: 7"] span {
  transform: translateX(-50%) rotate(-315deg);
}

.wheel-section:nth-child(odd) {
  background: #f0f0f0;
}

.wheel-section:nth-child(even) {
  background: #e0e0e0;
}

.wheel-pointer {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 30px solid #333;
  z-index: 10;
}

.result {
  text-align: center;
  margin: 24px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.result.hidden {
  display: none;
}

.result-message {
  margin: 0;
  font-size: 20px;
  color: #000;
  line-height: 1.5;
}

.result-message strong {
  color: #000;
  font-size: 24px;
}

/* Confetti Effect */
.confetti {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
}

.confetti-item {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ff6b6b;
  border-radius: 50%;
  animation: confetti-fall linear forwards;
}

.confetti-item:nth-child(2n) {
  background: #4ecdc4;
}

.confetti-item:nth-child(3n) {
  background: #ffe66d;
}

.confetti-item:nth-child(4n) {
  background: #ff6b6b;
}

.confetti-item:nth-child(5n) {
  background: #a8e6cf;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .rsvp-card,
  .roulette-card {
    padding: 24px 16px;
  }

  .rsvp-title,
  .roulette-title {
    font-size: 24px;
  }

  .wheel-wrapper {
    max-width: 300px;
  }

  .wheel-section {
    font-size: 12px;
    padding-top: 15px;
  }

  .result-message {
    font-size: 18px;
  }

  .result-message strong {
    font-size: 20px;
  }

  .revolut-links-row .btn.btn-confirmacoes.btn-confirmacoes-inline {
    padding: 0.8rem 1rem;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
  }
}
