:root {
    --primary-color: #5a7d5a;
    --secondary-color: #f8f1e9;
    --accent-color: #d4b483;
    --text-color: #333;
    --light-text: #f8f8f8;
    --parallax-offset: 0px;
  }
  
  body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: url('https://images.unsplash.com/photo-1519046904884-53103b34b206?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
  }

  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('https://images.unsplash.com/photo-1519046904884-53103b34b206?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
    background-size: cover;
    z-index: -1;
    will-change: transform;
    transform: translateY(calc(var(--parallax-offset) * -1));
  }
  
  .overlay {
    background-color: rgba(248, 241, 233, 0.9);
    min-height: 100vh;
    padding: 2rem;
  }
  
  header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    position: relative;
  }

  /* Calendar Buttons */
  .calendar-buttons {
    text-align: center;
    margin: 1.5rem 0;
  }

  .calendar-btn {
    background: rgba(255,255,255,0.9);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

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

  .calendar-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 10px 0;
    min-width: 200px;
    z-index: 100;
    margin-top: 10px;
    animation: fadeInScale 0.3s ease-out;
  }

  .calendar-option {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
  }

  .calendar-option:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
  }
  
  .couple-names {
    font-family: 'Great Vibes', cursive;
    font-size: 4.5rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
  }
  
  .date-location {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 400;
    margin-top: 1rem;
    letter-spacing: 1px;
  }
  
  .header-divider {
    width: 150px;
    height: 2px;
    background: var(--accent-color);
    margin: 1.5rem auto;
    opacity: 0.7;
  }
  
  main {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  
  section {
    margin-bottom: 3rem;
  }
  
  h2 {
    color: var(--primary-color);
    font-family: 'Great Vibes', cursive;
    font-size: 2.8rem;
    margin: 1.5rem 0;
    text-align: center;
    letter-spacing: 1px;
  }
  
  h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    margin: 10px 8px;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  }
  
  .button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
  }
  
  .button-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
  }
  
  footer {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem 0;
    color: var(--primary-color);
    position: relative;
  }
  
  .signature {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .footer-text {
    font-size: 0.9rem;
    opacity: 0.8;
  }

  /* Animações ao Scroll */
  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
  }

  .fade-in.visible {
    opacity: 1;
  }

  .slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* Loading Screen */
  .loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #fff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
  }

  .loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
  }

  .loading-content {
    text-align: center;
    animation: fadeInScale 1s ease-out;
  }

  .loading-names {
    font-family: 'Great Vibes', cursive;
    font-size: 5rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: pulse 2s ease-in-out infinite;
  }

  .loading-divider {
    width: 120px;
    height: 2px;
    background: var(--accent-color);
    margin: 1.5rem auto;
    opacity: 0.8;
  }

  .loading-date {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 2rem;
  }

  .loading-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border: 3px solid rgba(90, 125, 90, 0.1);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes pulse {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.8;
    }
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* Countdown Timer */
  .countdown {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    gap: 15px;
  }
  
  .countdown-item {
    text-align: center;
    background: rgba(255,255,255,0.7);
    padding: 10px;
    border-radius: 8px;
    min-width: 70px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .countdown-number {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
  }
  
  .countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
  }
  
  /* Timeline Style - Versão Ajustada */
  .timeline {
    position: relative;
    max-width: 100%;
    margin: 2rem auto;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--accent-color);
    top: 0;
    bottom: 0;
    left: 100px;
    margin-left: -1px;
  }
  
  .timeline-item {
    padding: 10px 0 10px 120px;
    position: relative;
    margin-bottom: 15px;
  }
  
  .timeline-date {
    position: absolute;
    left: 0;
    width: 90px;
    text-align: right;
    padding-right: 15px;
    padding-top: 5px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    white-space: nowrap;
  }
  
  .timeline-content {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    position: relative;
  }
  
  .timeline-content::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    left: -6px;
    top: 15px;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 2px solid var(--accent-color);
  }
  
  .timeline-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
    font-size: 1rem;
  }
  
  .timeline-divider {
    font-weight: bold;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 25px 0 15px 0;
    padding-left: 120px;
    position: relative;
    font-size: 1rem;
  }
  
  .timeline-divider::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 50%;
    width: 15px;
    height: 2px;
    background-color: var(--accent-color);
    transform: translateX(-100%);
  }
  
  /* Carrossel de Trajes */
  .dress-code {
    text-align: center;
    margin: 2rem 0;
  }
  
  .dress-code-images {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 15px 0;
    margin: 1rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--secondary-color);
  }
  
  .dress-code-images::-webkit-scrollbar {
    height: 8px;
  }
  
  .dress-code-images::-webkit-scrollbar-track {
    background: var(--secondary-color);
    border-radius: 10px;
  }
  
  .dress-code-images::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 10px;
    border: 2px solid var(--secondary-color);
  }
  
  .dress-code-image {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 200px;
    height: 300px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    background-repeat: no-repeat;
    background-color: var(--secondary-color);
    transition: background-image 0.3s ease;
  }

  .dress-code-image.lazy-bg {
    position: relative;
  }

  .dress-code-image.lazy-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid rgba(90, 125, 90, 0.2);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  .dress-code-image.lazy-bg.loaded::before {
    display: none;
  }
  
  /* Seção de Presentes */
  .gifts {
    text-align: center;
    background: rgba(255,255,255,0.7);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
  }
  
  .gifts-message {
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  
  .qr-code {
    width: 150px;
    height: 150px;
    margin: 1rem auto;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  }
  
  .qr-code img {
    max-width: 100%;
    max-height: 100%;
  }
  
  .pix-button {
    display: block;
    margin: 15px auto 0;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .pix-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
  }
  
  /* Novos estilos para a seção de Informações Úteis */
  .info-card {
    background: rgba(255,255,255,0.8);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  }
  
  .section-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 20px 0 10px;
    position: relative;
    padding-left: 15px;
  }
  
  .section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    height: 60%;
    width: 4px;
    background: var(--accent-color);
    transform: translateY(-50%);
  }
  
  .styled-list {
    padding-left: 20px;
    list-style-type: none;
  }
  
  .styled-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
  }
  
  .styled-list li::before {
    content: '•';
    color: var(--accent-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -3px;
  }
  
  .small-note {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
    padding-left: 15px;
  }
  
  .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
  }
  
  .tip-card {
    background: var(--secondary-color);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  
  .tip-icon {
    font-size: 1.5rem;
    margin-top: 2px;
  }
  
  .contact-points {
    margin: 20px 0;
    line-height: 1.8;
  }
  
  .contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .contact-name {
    font-weight: 600;
    color: var(--primary-color);
  }
  
  .contact-link {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .contact-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .trajeto-image {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    margin: 15px auto;
    display: block;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .trajeto-image:hover {
    transform: scale(1.02);
  }
  
  .map-container {
    text-align: center;
    margin: 25px 0;
  }

  .interactive-map {
    margin: 20px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
  }

  .interactive-map iframe {
    display: block;
  }

  /* RSVP Section */
  .rsvp-section {
    background: rgba(255,255,255,0.9);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
  }

  .rsvp-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--primary-color);
  }

  .rsvp-form {
    max-width: 600px;
    margin: 0 auto;
  }

  .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
  }

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

  .form-group.full-width {
    grid-column: 1 / -1;
  }

  .form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px;
    border: 2px solid rgba(90, 125, 90, 0.2);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(90, 125, 90, 0.1);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 80px;
  }

  .checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
  }

  .checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
  }

  .form-actions {
    text-align: center;
    margin-top: 30px;
  }

  .submit-button {
    padding: 15px 40px;
    font-size: 1.1rem;
    min-width: 250px;
  }

  .rsvp-success {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(90, 125, 90, 0.1);
    border-radius: 12px;
    animation: fadeInScale 0.5s ease-out;
  }

  .success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
  }

  .rsvp-success h3 {
    color: var(--primary-color);
    margin: 1rem 0;
  }

  .rsvp-success p {
    color: var(--text-color);
    font-size: 1.1rem;
  }

  /* Scroll Spy Navigation */
  .scroll-spy-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .nav-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
  }

  .nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(90, 125, 90, 0.3);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
  }

  .nav-item.active .nav-dot {
    background: var(--primary-color);
    transform: scale(1.3);
  }

  .nav-label {
    position: absolute;
    right: 25px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
  }

  .nav-item:hover .nav-label {
    opacity: 1;
    transform: translateX(0);
  }

  /* Botão Voltar ao Topo */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
  }

  .back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  }

  .back-to-top:active {
    transform: translateY(-1px);
  }

  /* Menu Hambúrguer */
  .hamburger-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 1001;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
  }

  .hamburger-btn span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .hamburger-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hamburger-btn:hover {
    background: var(--accent-color);
  }

  /* Menu Mobile */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a6d4a 100%);
    z-index: 1002;
    padding: 80px 30px 30px;
    transition: left 0.4s ease;
    box-shadow: 2px 0 15px rgba(0,0,0,0.2);
  }

  .mobile-menu.open {
    left: 0;
  }

  .close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .close-menu-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
  }

  .mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-menu-list li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
  }

  .mobile-menu.open .mobile-menu-list li {
    opacity: 1;
    transform: translateX(0);
  }

  .mobile-menu.open .mobile-menu-list li:nth-child(1) { transition-delay: 0.1s; }
  .mobile-menu.open .mobile-menu-list li:nth-child(2) { transition-delay: 0.15s; }
  .mobile-menu.open .mobile-menu-list li:nth-child(3) { transition-delay: 0.2s; }
  .mobile-menu.open .mobile-menu-list li:nth-child(4) { transition-delay: 0.25s; }
  .mobile-menu.open .mobile-menu-list li:nth-child(5) { transition-delay: 0.3s; }
  .mobile-menu.open .mobile-menu-list li:nth-child(6) { transition-delay: 0.35s; }

  .mobile-menu-item {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }

  .mobile-menu-item:hover {
    border-bottom-color: var(--accent-color);
    padding-left: 10px;
  }

  /* Milestone Animation */
  .milestone-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a6d4a 100%);
    padding: 40px 60px;
    border-radius: 20px;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    opacity: 0;
    transition: all 0.5s ease;
  }

  .milestone-message.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .milestone-content h2 {
    color: white;
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    margin: 0 0 15px 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }

  .milestone-content p {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin: 0;
    text-align: center;
  }

  /* Confetti */
  .confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    top: -10px;
    z-index: 9999;
    animation: confetti-fall linear forwards;
  }

  @keyframes confetti-fall {
    to {
      transform: translateY(100vh) rotate(360deg);
      opacity: 0;
    }
  }

  /* FAQ Section */
  .faq-section {
    background: rgba(255,255,255,0.9);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
  }

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

  .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
  }

  .faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  }

  .faq-question {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
  }

  .faq-question:hover {
    background: rgba(90, 125, 90, 0.05);
  }

  .faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 25px;
    text-align: center;
  }

  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    background: rgba(248, 241, 233, 0.3);
  }

  .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
  }

  .faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-color);
  }

  /* Weather Section */
  .weather-section {
    background: rgba(255,255,255,0.9);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
  }

  .weather-intro {
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 2rem;
  }

  .weather-card {
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 0 auto 2rem;
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .weather-icon {
    color: #FFD700;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  }

  .weather-info {
    flex: 1;
    text-align: left;
  }

  .temperature {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }

  .temp-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }

  .temp-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
  }

  .weather-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .weather-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.95rem;
  }

  .detail-icon {
    font-size: 1.2rem;
  }

  .weather-tips {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
  }

  .weather-tips h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
  }

  /* Cost Calculator */
  .cost-calculator {
    background: rgba(255,255,255,0.9);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
  }

  .calculator-intro {
    text-align: center;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 2rem;
  }

  .calculator-form {
    max-width: 500px;
    margin: 0 auto 2rem;
  }

  .cost-results {
    max-width: 500px;
    margin: 2rem auto 0;
    padding: 25px;
    background: rgba(90, 125, 90, 0.05);
    border-radius: 12px;
    border: 2px solid var(--primary-color);
  }

  .cost-results h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
  }

  .cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(90, 125, 90, 0.2);
  }

  .cost-item.total {
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding: 15px 0;
    margin-top: 10px;
    font-weight: 700;
    font-size: 1.2rem;
  }

  .cost-item.per-person {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    border: none;
    font-weight: 600;
  }

  .cost-label {
    font-weight: 500;
    color: var(--text-color);
  }

  .cost-item.total .cost-label,
  .cost-item.total .cost-value {
    color: var(--primary-color);
  }

  .cost-item.per-person .cost-label,
  .cost-item.per-person .cost-value {
    color: white;
  }

  .cost-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
  }

  .cost-note {
    text-align: center;
    margin-top: 20px;
    color: #666;
  }

  /* Modal de Agradecimento PIX */
  .pix-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10001;
    justify-content: center;
    align-items: center;
  }

  .pix-modal.show {
    display: flex;
  }

  .pix-modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.4s ease-out;
  }

  @keyframes modalSlideIn {
    from {
      transform: translateY(-50px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .pix-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pix-modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
  }

  .pix-modal-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 1s ease-in-out infinite;
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  .pix-modal-content h2 {
    color: var(--primary-color);
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    margin: 10px 0 20px;
  }

  .pix-modal-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 15px 0;
  }

  .pix-modal-message {
    font-style: italic;
    background: rgba(90, 125, 90, 0.05);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
  }

  .pix-modal-hearts {
    font-size: 1.8rem;
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .pix-modal-hearts span {
    animation: heartBeat 1.5s ease-in-out infinite;
  }

  .pix-modal-hearts span:nth-child(2) {
    animation-delay: 0.3s;
  }

  .pix-modal-hearts span:nth-child(3) {
    animation-delay: 0.6s;
  }

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

  .pix-modal-signature {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-top: 25px;
  }

  .pix-modal-signature strong {
    font-family: 'Great Vibes', cursive;
    font-size: 1.5rem;
    font-weight: 400;
  }

  /* Modal para imagem ampliada */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
  }
  
  .modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoom 0.3s;
  }
  
  @keyframes zoom {
    from {transform: translate(-50%, -50%) scale(0.9)}
    to {transform: translate(-50%, -50%) scale(1)}
  }
  
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1001;
  }
  
  .close:hover {
    color: var(--accent-color);
  }
  
  /* Ajustes para telas médias */
  @media (max-width: 768px) {
    .scroll-spy-nav {
      display: none;
    }

    .hamburger-btn {
      display: flex;
    }

    .timeline::before {
      left: 80px;
    }
    
    .timeline-item {
      padding-left: 100px;
    }
    
    .timeline-date {
      width: 70px;
    }
    
    .timeline-divider {
      padding-left: 100px;
    }
    
    .timeline-divider::before {
      left: 80px;
    }
  
    .contact-info {
      flex-direction: column;
      gap: 10px;
    }
    
    .tip-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .modal-content {
      width: 95%;
    }
  
    .close {
      font-size: 30px;
      right: 20px;
    }
  }
  
  /* Ajustes para mobile */
  @media (max-width: 480px) {
    .loading-names {
      font-size: 3.5rem;
    }

    .loading-date {
      font-size: 0.9rem;
    }

    .rsvp-section {
      padding: 1.5rem;
    }

    .form-row {
      grid-template-columns: 1fr;
    }

    .submit-button {
      min-width: 100%;
    }

    .weather-card {
      flex-direction: column;
      text-align: center;
    }

    .weather-info {
      text-align: center;
    }

    .weather-details {
      align-items: center;
    }

    .milestone-content h2 {
      font-size: 2.5rem;
    }

    .milestone-content p {
      font-size: 1rem;
    }

    .couple-names {
      font-size: 3rem;
    }
    
    .date-location {
      font-size: 1.1rem;
    }
    
    main {
      padding: 1.5rem;
    }
  
    .button-container {
      flex-direction: column;
      align-items: center;
      margin: 2rem 0;
      padding: 0 15px;
      width: 100%;
      box-sizing: border-box;
    }
  
    .button-container .button {
      width: 100%;
      max-width: 300px;
      margin: 8px 0;
      box-sizing: border-box;
      white-space: nowrap;
    }
    
    .button {
      width: 100%;
      max-width: 300px;
      margin: 8px 0;
    }
    
    .tips-grid {
      grid-template-columns: 1fr;
    }
  
    .tip-card {
      flex-direction: row;
      align-items: center;
      text-align: left;
      padding: 12px;
    }
  
    .tip-icon {
      margin-right: 10px;
      margin-top: 0;
      font-size: 1.8rem;
    }
  
    .map-container .button {
      width: 100%;
      max-width: 300px;
      margin: 15px auto;
      display: block;
    }
  
    .info-card .button-container {
      margin: 20px auto;
      width: 100%;
      max-width: 300px;
      padding: 0;
    }
    
    .info-card .button {
      white-space: normal;
      line-height: 1.4;
      padding: 12px 15px;
    }
  
    .countdown {
      gap: 8px;
    }
    
    .countdown-item {
      min-width: 60px;
    }
    
    .timeline::before {
      left: 60px;
    }
    
    .timeline-item {
      padding-left: 80px;
    }
    
    .timeline-date {
      width: 50px;
      font-size: 0.9rem;
      padding-right: 10px;
    }
    
    .timeline-content {
      padding: 10px 12px;
    }
    
    .timeline-divider {
      padding-left: 80px;
      font-size: 0.9rem;
    }
    
    .timeline-divider::before {
      left: 60px;
    }
    
    .dress-code-image {
      width: 160px;
      height: 240px;
    }
  
    .dress-code-images {
      padding-bottom: 10px;
    }
  
    .dress-code-images::-webkit-scrollbar {
      height: 6px;
    }
  }