@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&family=Pinyon+Script&display=swap');

:root {
  --cream: #FAF6F0;
  --white: #FFFFFF;
  --ivory: #F5EFE6;
  --gold: #B5705A;
  --gold-light: #CD8B72;
  --gold-dark: #944D3A;
  --blush: #D4A5A0;
  --blush-light: #EDD5D2;
  --olive: #7A8C6E;
  --charcoal: #2C2C2C;
  --text: #4A4A4A;
  --text-light: #8A8A8A;
  --text-faint: #B5B5B5;
  --success: #7A8C6E;
  --error: #C0392B;
  --warning: #D4A017;
  --shadow: 0 4px 20px rgba(44, 44, 44, 0.06);
  --shadow-hover: 0 8px 32px rgba(44, 44, 44, 0.12);
  --radius-card: 12px;
  --radius-btn: 100px;
  --radius-modal: 20px;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --font-script: 'Pinyon Script', cursive;
  --nav-height: 72px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 118%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--charcoal);
}

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

.address-link {
  color: var(--gold) !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.address-link:hover {
  text-decoration: underline !important;
  text-underline-offset: 4px;
  color: var(--gold-dark) !important;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  outline: none;
}

input,
textarea,
select {
  font-family: var(--font-body);
  outline: none;
}

/* ==================== NAV ==================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  border-bottom: 1px solid rgba(181, 112, 90, 0.1);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(44, 44, 44, 0.08);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(250, 246, 240, 0.98);
  backdrop-filter: blur(12px);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
  border-bottom: 1px solid rgba(181, 112, 90, 0.1);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-size: 1rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 0;
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 24px 10px;
  background: linear-gradient(to bottom, var(--cream) 0%, var(--ivory) 100%);
  /* background-image: linear-gradient(to bottom, var(--cream) 0%, var(--ivory) 100%); */
  /* background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%); */
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(181, 112, 90, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-brasao {
  width: 50vw;
  max-width: 95vw;
  height: auto;
  border-radius: 12px;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease;
}

.hero-names {
  font-family: var(--font-script);
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 16px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-info {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 40px;
  animation: fadeInUp 1.4s ease;
  letter-spacing: 1px;
}

.address-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s ease, opacity 0.3s ease;
}

.address-link:hover {
  border-bottom: 1px solid var(--gold);
  opacity: 0.8;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 8px;
  font-style: italic;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-info {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 32px;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 1s ease 0.6s both;
}

.btn {
  padding: 14px 36px;
  border-radius: var(--radius-btn);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 112, 90, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.countdown {
  display: flex;
  gap: 24px;
  animation: fadeInUp 1s ease 0.8s both;
}

.countdown-item {
  text-align: center;
}

.countdown-value {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-faint);
  margin-top: 4px;
}

/* ==================== SECTIONS ==================== */
.section {
  /* padding: 80px 24px; */
  padding: 24px 10% 60px;
  /* max-width: 1200px; */
  margin: 0 auto;
  background: linear-gradient(to bottom, var(--cream) 0%, var(--ivory) 100%);
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.section-divider {
  width: 200px;
  height: 2px;
  background: var(--gold);
  margin: -10px auto 20px;
  border-radius: 2px;
}

/* ==================== TIMELINE ==================== */
.timeline {
  position: relative;
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 24px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blush-light), var(--gold-light), var(--blush-light));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--gold);
  border: 3px solid var(--cream);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(181, 112, 90, 0.15);
}

.timeline-content {
  width: calc(50% - 24px);
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  border: 1px solid var(--ivory);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 8px;
  font-weight: bolder;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ==================== GIFTS ==================== */
.gifts-bg {
  background: var(--ivory);
}

.gifts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.gift-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--ivory);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gift-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.gift-card.sold {
  opacity: 0.35;
  filter: grayscale(70%);
  pointer-events: none;
}

.gift-card.sold::after {
  content: 'Presenteado';
  position: absolute;
  top: 30px;
  right: -50px;
  background: var(--olive);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 40px;
  transform: rotate(45deg);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gift-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--ivory);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.gift-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  margin: -28px -24px 16px;
  width: calc(100% + 48px);
  overflow: hidden;
  border-top-left-radius: var(--radius-card);
  border-top-right-radius: var(--radius-card);
  background: var(--ivory);
}

.gift-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.gift-card:hover .gift-image {
  transform: scale(1.05);
}

.gift-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.gift-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.gift-quota-bar {
  height: 6px;
  background: var(--ivory);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.gift-quota-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 3px;
  transition: width 0.5s ease;
}

.gift-quota-text {
  font-size: 0.8rem;
  color: var(--text-faint);
}

.gift-available {
  font-size: 0.8rem;
  color: var(--olive);
  font-weight: 500;
}

/* ==================== RSVP ==================== */
.rsvp-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
  padding: 14px 18px;
  border: 1px solid var(--gold);
  border-radius: 24px;
  font-size: 0.95rem;
  color: var(--text);
  background: transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(181, 112, 90, 0.1);
  outline: none;
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background-color: var(--cream);
  color: var(--charcoal);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  border-radius: 16px;
}

.form-radio-group {
  display: flex;
  gap: 16px;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 12px 20px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-btn);
  background: transparent;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
}

.form-radio:hover {
  border-color: var(--gold-light);
}

.form-radio.selected {
  border-color: var(--gold);
  background: rgba(181, 112, 90, 0.05);
}

.form-radio input[type="radio"] {
  display: none;
}

.form-message {
  padding: 12px 16px;
  border-radius: var(--radius-card);
  font-size: 0.9rem;
  text-align: center;
}

.form-message.success {
  background: rgba(122, 140, 110, 0.1);
  color: var(--success);
}

.form-message.error {
  background: rgba(192, 57, 43, 0.1);
  color: var(--error);
}

/* ==================== MESSAGES / MURAL ==================== */
.messages-bg {
  background: var(--ivory);
}

.messages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.message-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  border: 1px solid rgba(181, 112, 90, 0.08);
}

.message-content {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.message-author {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
}

.message-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ==================== INFO ==================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  width: 75%;
  margin: 0 auto;
}

.info-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  border: 1px solid var(--ivory);
  text-align: center;
}

.info-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--gold);
}

.info-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.info-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ==================== FOOTER ==================== */
.footer {
  text-align: center;
  padding: 48px 24px;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.6);
}

.footer-names {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.footer-date {
  font-size: 0.9rem;
  margin-bottom: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-brand {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
}

/* ==================== MODALS ==================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 44, 44, 0.5);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-modal);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px;
  position: relative;
  animation: slideUp 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  font-size: 1.5rem;
  color: var(--text-faint);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.3s ease, background 0.3s ease;
}

.modal-close:hover {
  color: var(--text);
  background: var(--ivory);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border: 1.5px solid var(--ivory);
  border-radius: var(--radius-btn);
  overflow: hidden;
}

.tab {
  flex: 1;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  color: var(--text-light);
  background: transparent;
  transition: all 0.3s ease;
}

.tab.active {
  background: var(--gold);
  color: var(--white);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ==================== PAYMENT MODAL ==================== */
.payment-gift-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.payment-subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-bottom: 24px;
}

.quota-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}

.quota-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--ivory);
  border-radius: 50%;
  background: var(--white);
  font-size: 1.2rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.quota-btn:hover {
  border-color: var(--gold);
  background: rgba(181, 112, 90, 0.05);
}

.quota-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  min-width: 40px;
  text-align: center;
}

.quota-info {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.payment-total {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
}

.payment-methods {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.payment-method {
  flex: 1;
  padding: 12px;
  border: 1.5px solid var(--ivory);
  border-radius: var(--radius-card);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--white);
  transition: all 0.3s ease;
  cursor: pointer;
}

.payment-method.selected {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(181, 112, 90, 0.05);
}

.pix-section,
.card-section {
  display: none;
}

.pix-section.active,
.card-section.active {
  display: block;
}

.pix-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.pix-qr-image {
  width: 200px;
  height: 200px;
  background: var(--ivory);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 0.85rem;
}

.pix-code {
  display: flex;
  gap: 8px;
  width: 100%;
}

.pix-code input {
  flex: 1;
  padding: 12px;
  border: 1.5px solid var(--ivory);
  border-radius: var(--radius-card);
  font-size: 0.8rem;
  color: var(--text-light);
  background: var(--ivory);
}

.pix-code button {
  padding: 12px 20px;
  border-radius: var(--radius-card);
  background: var(--gold);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.security-badge {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--ivory);
}

/* ==================== LOADING ==================== */
.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--ivory);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 0 auto;
}

.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 48px 24px;
  color: var(--text-light);
}

.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-faint);
  font-size: 0.95rem;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-names {
    font-size: 2.5rem;
  }

  .hero-brasao {
    width: 100%;
  }

  .countdown {
    gap: 16px;
  }

  .countdown-value {
    font-size: 2rem;
  }

  .section {
    padding: 60px 16px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: row;
    text-align: left;
    padding-left: 48px;
  }

  .timeline-dot {
    left: -4px;
  }

  .timeline-content {
    width: 100%;
  }

  .gifts-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .modal {
    padding: 28px 20px;
    max-height: 95vh;
    border-radius: 16px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .messages-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-names {
    font-size: 2rem;
  }

  .hero-brasao {
    /* width: 200px; */
    width: 100%;
  }

  .countdown-value {
    font-size: 1.6rem;
  }

  .countdown-label {
    font-size: 0.65rem;
  }
}
