  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Montserrat', sans-serif;
    background: #f6f5f2;
    color: #222;
  }

  .navbar {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.85);
    border-bottom: solid 1px #6a7c63;
    backdrop-filter: blur(8px);
    padding: 14px 0;
  }

  .navbar .menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
  }

  .navbar a {
    text-decoration: none;
    color: #333;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
  }
  .navbar li:last-child a {
    color: #6a7c63;
    font-weight: 700;
  }

  .menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    position: absolute;
    right: 0px;
    height: 48px;
    width: 48px;
    padding: 0;
    border-radius: 0;
    color: #222;
    background-color: transparent;
  }
  .menu-toggle span {
    font-size: 30px;
  }
  .menu.active + .menu-toggle span.menu-icon {
    display: none;
  }
  .menu:not(.active) + .menu-toggle span.close-icon {
    display: none;
  }
  
  .menu a {
    letter-spacing: 4px;
    text-decoration: none;
    color: #222;
  }

  main {
    height: 100dvh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
  }

  main::-webkit-scrollbar {
    display: none;
  }

  .page {
    height: 100%;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 16px;
  }

  .hero {
    background:
      url("/img/watercolor-top-left.png") left top / 40% no-repeat,
      url("/img/watercolor-bottom-right.png") right bottom / 40% no-repeat,
      #ffffff;
  }

  .hero-wrapper {
    text-align: center;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 60px;
  }

  .initials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  .initial {
    position: relative;
    text-align: center;
    display: inline-block;
  }

  .letter {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    line-height: 1;
  }

  .name {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 1rem;
    letter-spacing: 2px;
    z-index: 2;
    white-space: nowrap;
  }

  .divider {
    width: 1px;
    height: 90px;
    background: #000;
  }

  .hero-date {
    margin-top: 60px;
    font-size: 0.85rem;
    letter-spacing: 3px;
  }

  .second-section {
    background: #FFFDFB;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .second-section .second-section-wrapper {
    display: grid;
    height: 100%;
    grid-template-columns: 1fr 472px;
    grid-template-rows: auto;
    column-gap: 80px;
    align-items: center;
  }

  .text-block {
    font-size: 1rem;
    line-height: 1.6;
    color: #222;
    text-align: justify;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 616px;
  }

  .photos {
    position: relative;
    width: 472px;
    height: 463px;
  }

  .photos img {
    position: absolute;
    width: 245px;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  .photos img:nth-child(1) { top: 0; left: 40px; transform: rotate(-10deg); z-index: 3; }
  .photos img:nth-child(2) { top: 40px; left: 200px; transform: rotate(12deg); z-index: 2; }
  .photos img:nth-child(3) { top: 175px; left: 0; transform: rotate(-4deg); z-index: 1; }

  .photos img:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 10;
  }

  .calendar-section {
    /* Substitui pela imagem de aguarela que enviaste ou uma semelhante */
    background-image: url("/img/watercolor-main.png");
    background-color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1091px 844px;
  }

  .calendar-wrapper {
    text-align: center;
    width: 100%;
  }

  .calendar-eyebrow {
    font-size: 1.1rem;
    letter-spacing: 5px;
    margin-bottom: 40px;
    text-transform: uppercase;
  }

  .calendar-card {
    background: white;
    padding: 30px 40px;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  }

  .calendar-month {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-weight: 400;
  }

  .calendar-table {
    border-collapse: collapse;
  }

  .calendar-table th, .calendar-table td {
    padding: 12px 18px;
    text-align: center;
    font-size: 0.9rem;
  }

  .calendar-table td.marked {
    position: relative;
    font-weight: 600;
  }

  .calendar-table td.marked {
    position: relative !important; /* Garante que o contexto de posicionamento existe */
    font-weight: 600;
    z-index: 1;
  }

  .calendar-table td.marked::after {
    content: "" !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    /* AJUSTA AQUI: aumenta o tamanho se a mancha for pequena */
    width: 75px; 
    height: 75px;
    
    /* CAMINHO: Verifica se a imagem está mesmo nesta pasta */
    background-image: url("/img/18.png") !important; 
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    
    /* Traz para trás do número */
    z-index: -1 !important;
    opacity: 1; /* Começa com 1 para veres se aparece, depois baixas se quiseres */
    display: block !important;
  }

  .ceremony-section {
    background: #FFFDFB;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* necessário para posicionar o ::before */
  }

  .ceremony-section--mobile {
    display: none;
  }

  .ceremony-section::before {
    content: "";
    position: absolute;
    top: 0px;        /* ajusta verticalmente */
    left: 50%;        /* centraliza horizontalmente */
    transform: translateX(-50%);
    width: 500px;     /* largura da imagem */
    height: 200px;    /* altura da imagem */
    background: url("/img/folhagem-topo.png") no-repeat center / cover;
    opacity: 0.25;    /* transparência leve */
    pointer-events: none; /* não interfere em cliques */
    z-index: 0;       /* fica atrás de todo o conteúdo */
  }

  .ceremony-wrapper {
    max-width: 1100px;
    width: 100%;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: center;
    padding: 140px 20px 60px; /* espaço superior para a imagem */
    position: relative;
    z-index: 1; /* conteúdo acima da imagem */
  }

  .ceremony-block {
    flex: 1;
    text-align: center;
  }

  .ceremony-title {
   /*  font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 10px; */

    font-size: 1.5rem;
    letter-spacing: 12px;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
  }

  .ceremony-subtitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 24px;
    color: #444;
  }

  .map {
    width: 100%;
    height: 320px;
    margin-bottom: 16px;
  }

  .map iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  .ceremony-address {
        font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: #333;
  }

  .ceremony-divider {
    width: 1px;
    height: 420px;
    background: #999;
    align-self: center;
  }

  .program-section {
    background: 
      url("/img/watercolor-top-left2.png") no-repeat left top,
      url("/img/watercolor-bottom-right2.png") no-repeat right bottom,
      #FFFDFB;
    background-size: 40% auto, 30% auto;
    background-position: left top, right bottom;
    background-repeat: no-repeat, no-repeat;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 0;
    background-attachment: fixed;
  }

  .program-wrapper {
    height: 100%;
    width: 100%;
    max-width: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  .program-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 1.1rem;
    letter-spacing: 6px;
    font-weight: 600;
    color: #222;
    user-select: none;
    flex-shrink: 0;
    transform: rotate(180deg);
  }

  .program {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 400px;
    gap: 30px;
    justify-content: space-between;
  }

  .program .line {
    height: 100%;
    width: 2px;
    left: 29px;
    background-color: #000;
    position: absolute;
    z-index: -1;
  }

  .program .item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .program .item .time {
    background-color: #000;
    color: white;
    font-size: 0.75rem;
    line-height: 1rem;
    padding: 6px 12px;
    border-radius: 12px;
    width: 60px;
    flex-shrink: 0;
    text-align: center;
  }

  .program .item .description {
    display: flex;
    flex-direction: column;
    padding: 6px 0 0 0;
    font-size: 1rem;
    line-height: 1rem;
    color: #222;
    gap: 6px;
  }
  .program .item .description p {
    padding-left: 8px;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
  }
  .program .item .description p:first-child {
    font-size: 1rem;
    padding-left: 0;
  }
  .content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 640px;
    width: 100%;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }

  .page#rsvp {
    background-color: #d8d2c4;
  }

  .page#rsvp h2 {
    font-size: 1.5rem;
    letter-spacing: 12px;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
  }

  form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  form .radio-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
  }
  form .radio-group .radio-label {
    text-align: left;
    width: 50%;
  }
  form .radio-group .radio-options {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    width: 50%;
  }
  form .radio-group .radio-options .radio-option {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 12px;
  }

  textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    resize: none;
  }

  input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
  }
  input:disabled {
    opacity: 0.5;
  }

  button {
    padding: 12px;
    background: #6a7c63;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }

  .lodging-section {
  background: #d8d2c4;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
    background-color: #d8d2c4;
}

.lodging-wrapper {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.lodging-title {
    font-size: 1.5rem;
    letter-spacing: 12px;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.lodging-subtitle {
  font-size: 1rem;
    line-height: 1.6;
  margin-bottom: 60px;
  color: #333;
}

.lodging-slider {
  position: relative;
  display: flex;
  align-items: center;
}

.lodging-track {
  display: flex;
  gap: 30px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.recomendations-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.lodging-section .pagination {
  display: none;
}

.hotel-card {
  width: 30%;
  display: flex;
  flex-direction: column;
  background: #f4f1ea;
  padding: 20px;
  text-align: left;
  text-decoration: none;
  color: #222;
}

.hotel-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
}

.stars {
  color: #d4a017;
}

.address {
      font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.hotel-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.hotel-info .price {
  margin-bottom: 0;
  margin-top: auto;
      font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}
.shuttle-section {
  position: relative;
}
  .shuttle-section::before {
    content: "";
    position: absolute;
    top: 0px;        /* ajusta verticalmente */
    left: 50%;        /* centraliza horizontalmente */
    transform: translateX(-50%);
    width: 500px;     /* largura da imagem */
    height: 200px;    /* altura da imagem */
    max-width: 100%;
    max-height: auto;
    background: url("/img/folhagem-topo.png") no-repeat center / cover;
    opacity: 0.25;    /* transparência leve */
    pointer-events: none; /* não interfere em cliques */
    z-index: 0;       /* fica atrás de todo o conteúdo */
  }
.shuttle-section .shuttle-inner .shuttle-title {
    font-size: 1.5rem;
    letter-spacing: 12px;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}
.shuttle-section .shuttle-inner .shuttle-subtitle {
  text-align: justify;
  margin-bottom: 30px;
  max-width: 640px;
}
.shuttle-section .shuttle-inner .shuttle-program {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 0 30px;
  max-width: fit-content;
  justify-self: center;
}

.shuttle-section .shuttle-inner .shuttle-program p:first-child {
  font-size: 0.9rem;
  letter-spacing: 4px;
}
.morning, .evening {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: max-content;
}
  
.itinerary-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.itinerary-item p {
font-size: 0.85rem;
    letter-spacing: 3px;
    color: #444;
    text-transform: uppercase;
}
  
  @media (max-width: 900px) {
    .navbar {
      display: contents;
    }
    .navbar .menu {
      display: none;
      position: fixed;
      inset: 0;
      background: #f6f5f2;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 40px;
      transform: translateY(-100%);
      transition: transform 0.4s ease;
      z-index: 200;
      width: 100%;
      height: 100dvh;
    }
    .navbar .menu.active {
      display: flex;
      transform: translateY(0);
    }

    .menu-toggle {
      display: block;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      z-index: 999999999;
      margin-right: 10px;
      margin-top: 10px;
    }
    .second-section {
      padding-top: 50px;
      padding-bottom: 50px;
    }
    .program-section {
      padding-top: 50px;
      padding-bottom: 50px;
    }
    .ceremony-section:not(.ceremony-section--mobile) {
      height: 0;
      overflow: hidden;
    }
    
    .ceremony-section--mobile {
      padding-top: 50px;
      padding-bottom: 50px;
      display: flex;
      background-image: url("/img/folhagem-topo.png");
      background-color: rgba(255, 255, 255, 0.75);
      background-blend-mode: lighten;
      background-repeat: no-repeat;
      background-position-x: center;
      background-position-y: 20px;
      background-size: 500px 200px;
      background-attachment: fixed;
    }

    .ceremony-section--mobile .ceremony-block {
      height: calc(100% - 100px);
      display: grid;
      grid-template-columns: 100%;
      grid-template-rows: auto auto 1fr;
      margin-bottom: 60px;
      margin-top: auto;
    }

    .ceremony-section--mobile .ceremony-block .map {
      height: auto;
    }

    .ceremony-section::before {
      display: none;
    }

    .second-section .second-section-wrapper {
      display: grid;
      grid-template-rows: max-content 1fr;
      grid-template-columns: 100%;
    }
    .second-section .second-section-wrapper .text-block {
      padding: 25px 0;
      max-width: 100%;
    }
    .photos {
      width: 100%;
      height: 100%;
    }

    .photos img {
      position: absolute;
      width: 33%;
      height: auto;
      object-fit: cover;
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .photos img:nth-child(1) {
      top: -1%;
      left: 30%;
      transform: rotate(-10deg);
      z-index: 3;
    }
    .photos img:nth-child(2) {
      top: 21%;
      left: 57%;
      transform: rotate(12deg);
      z-index: 2;
    }
    .photos img:nth-child(3) {
      top: 34%;
      left: 5%;
      transform: rotate(-4deg);
      z-index: 1;
    }

    .photos img:hover {
      transform: scale(1.05) rotate(0deg);
      z-index: 10;
    }
    .calendar-table th, .calendar-table td {
      padding: 8px 12px;
    }
    .calendar-card {
      padding: 30px 20px;
    }
    .calendar-table td.marked::after {
      /* AJUSTA AQUI: aumenta o tamanho se a mancha for pequena */
      width: 50px;
      height: 50px;
    }
    .page#rsvp {
      padding-top: 66px;
      padding-bottom: 16px;
    }
    .page#rsvp .content {
      padding: 16px;
    }
    form .radio-group {
      flex-direction: column;
    }
    form .radio-group .radio-label {
      width: 100%;
    }
    form .radio-group .radio-options {
      display: flex;
      align-items: center;
      width: 100%;
    }
  }

  @media (max-width: 767px) {
    .lodging-section .lodging-wrapper {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .lodging-section .lodging-wrapper .recomendations-wrapper {
      overflow-x: scroll;
      justify-content: flex-start;
      scroll-snap-type: x mandatory;
    }
    .lodging-section .lodging-wrapper .recomendations-wrapper .hotel-card {
      width: 100%;
      flex-shrink: 0;
      scroll-snap-align: center;
    }
    .lodging-section .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }
    .lodging-section .lodging-wrapper .recomendations-wrapper::-webkit-scrollbar {
      display: none;
    }
    .lodging-section .pagination .pagination-item {
      margin-top: 20px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: transparent;
      border: solid 1px #6a7c63;
    }
    .lodging-section .pagination .pagination-item.active {
      background-color: #6a7c63;
    }
    .lodging-subtitle {
      margin-bottom: 30px;
    }
    .hotel-card img {
      aspect-ratio: 1 / 0.5;
      height: auto;
    }
  }

  /* GOOGLE MATERIAL ICONS */

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}