/* ==========================================
   CONFIGURAÇÕES GLOBAIS E VARIÁVEIS
   ========================================== */
:root {
    --cor-fundo: #FFF8F6;
    --cor-fundo-alt: #FFF5F2;
    --cor-primaria: #F5D4D8;
    --cor-secundaria: #E0BBE4;
    --cor-texto: #5D5555;
    --cor-texto-light: #8B7E7E;
    --cor-highlight: #FFB6C1;
    --cor-destaque: #D4A5A5;
    --cor-erro: #D9534F;
    --cor-sucesso: #5CB85C;
    --cor-white: #FFFFFF;
    
    --fonte-principal: 'Poppins', 'Montserrat', sans-serif;
    --fonte-titulo: 'Dancing Script', cursive;
    --fonte-convite: 'Playfair Display', serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--fonte-principal);
    background: linear-gradient(135deg, var(--cor-fundo) 0%, var(--cor-fundo-alt) 100%);
    color: var(--cor-texto);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* ==========================================
   NAVBAR MODERNA
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fonte-titulo);
    font-size: 1.8rem;
    color: var(--cor-secundaria);
    font-weight: 700;
}

.nav-logo i {
    color: var(--cor-highlight);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: var(--cor-texto);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 25px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link i {
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--cor-secundaria);
    background: rgba(224, 187, 228, 0.1);
    transform: translateY(-2px);
}

.nav-link:hover i {
    transform: scale(1.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cor-secundaria);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* ==========================================
   CANVAS DE PARTÍCULAS
   ========================================== */
#waterCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    opacity: 0.4;
}

/* ==========================================
   ELEMENTOS FLUTUANTES
   ========================================== */
.floating-elements .dot {
    position: fixed;
    bottom: -50px;
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, var(--cor-highlight), var(--cor-secundaria));
    border-radius: 50%;
    box-shadow: 0 0 15px 3px rgba(255, 182, 193, 0.5);
    animation: floatAnimation 15s infinite linear;
    z-index: 1;
}

.floating-elements .dot:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.floating-elements .dot:nth-child(2) { left: 30%; animation-delay: 3s; animation-duration: 15s; width: 10px; height: 10px; }
.floating-elements .dot:nth-child(3) { left: 50%; animation-delay: 5s; animation-duration: 10s; width: 20px; height: 20px; }
.floating-elements .dot:nth-child(4) { left: 70%; animation-delay: 8s; animation-duration: 14s; width: 12px; height: 12px; }
.floating-elements .dot:nth-child(5) { left: 90%; animation-delay: 10s; animation-duration: 11s; }
.floating-elements .dot:nth-child(6) { left: 5%; animation-delay: 12s; animation-duration: 16s; width: 18px; height: 18px; }

@keyframes floatAnimation {
    0% { transform: translateY(0) translateX(0) scale(0.5); opacity: 0; }
    10% { transform: translateY(-15vh) scale(1); opacity: 1; }
    50% { transform: translateY(-75vh) translateX(5vw); opacity: 1; }
    90% { transform: translateY(-140vh) translateX(-5vw); opacity: 1; }
    100% { transform: translateY(-150vh) translateX(0); opacity: 0; }
}

/* ==========================================
   MODAL MODERNO
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 40, 50, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
    animation: fadeIn 0.5s ease-out;
    backdrop-filter: blur(8px);
}

.modal-content {
    background: linear-gradient(145deg, #fff8f6 0%, #ffe8f0 100%);
    padding: 0;
    border-radius: 30px;
    text-align: center;
    max-width: 650px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: zoomInRise 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    border: 3px solid rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

.modal-header {
    padding: 50px 40px 30px;
    background: linear-gradient(135deg, rgba(224, 187, 228, 0.2), rgba(255, 182, 193, 0.2));
}

.modal-body {
    padding: 30px 40px 50px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    color: #aaa;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    line-height: 1;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close:hover {
    background: var(--cor-white);
    color: var(--cor-destaque);
    transform: rotate(90deg);
}

.

.titulo-principal-modal {
    font-family: var(--fonte-titulo);
    color: var(--cor-secundaria);
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitulo-principal-modal {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--cor-texto);
}

.texto-convite-modal {
    font-family: var(--fonte-convite);
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--cor-texto);
    margin-bottom: 30px;
}

.modal-info {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    font-weight: 600;
    color: var(--cor-texto);
}

.info-item i {
    color: var(--cor-highlight);
    font-size: 1.3rem;
}

.modal-overlay.modal-hidden {
    animation: fadeOut 0.5s ease-in forwards;
}

.modal-overlay.modal-hidden .modal-content {
    animation: zoomOut 0.4s ease-in forwards;
}

/* ==========================================
   HERO SECTION MODERNA
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px 50px;
    position: relative;
    overflow: hidden;
top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: 1;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeSlider 18s infinite;
}

.hero-slider .slide-1 { background-image: url('1.png'); }
.hero-slider .slide-2 { background-image: url('2.png'); animation-delay: 6s; }
.hero-slider .slide-3 { background-image: url('3.png'); animation-delay: 12s; }

@keyframes fadeSlider {
    0% { opacity: 0; transform: scale(1); }
    11.11% { opacity: 1; transform: scale(1.05); }
    33.33% { opacity: 1; transform: scale(1.05); }
    44.44% { opacity: 0; transform: scale(1); }
    100% { opacity: 0; transform: scale(1); }
}

.hero-content {
    max-width: 700px;
    z-index: 2;
    position: relative;
   
}



.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--cor-secundaria);
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

.hero-badge i {
    color: var(--cor-highlight);
}

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



.titulo-principal {
    font-size: 5rem;
    color: var(--cor-white);
    margin-bottom: 10px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInRise 1s ease-out;
visibility: hidden;
}

.subtitulo-principal {
    font-size: 1.8rem;
    font-family: var(--fonte-principal);
    font-weight: 300;
    color: var(--cor-white);
    margin-bottom: 40px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
    width: 30px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    width: 6px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==========================================
   BOTÕES MODERNOS
   ========================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--fonte-principal);
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--cor-highlight), #FF69B4);
    color: var(--cor-white);
    box-shadow: 0 4px 20px rgba(255, 182, 193, 0.4);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, var(--cor-secundaria), #D4A5D4);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(224, 187, 228, 0.5);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--cor-secundaria);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary:hover {
    background: var(--cor-white);
    border-color: var(--cor-secundaria);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   SEÇÕES PRINCIPAIS
   ========================================== */
main {
    max-width: 1100px;
    margin: 80px auto;
    padding: 20px;
    z-index: 2;
    position: relative;
}

.card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 251, 248, 0.95) 100%);
    backdrop-filter: blur(10px);
    margin-bottom: 60px;
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

h2 {
    font-family: var(--fonte-titulo);
    color: var(--cor-secundaria);
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

h3 {
    font-family: var(--fonte-titulo);
    color: var(--cor-secundaria);
    font-size: 2.5rem;
}

h4 {
    font-family: var(--fonte-principal);
    color: var(--cor-destaque);
    font-size: 1.3rem;
    font-weight: 600;
}

.subtitulo-secao {
    font-size: 1.15rem;
    color: var(--cor-texto-light);
    font-weight: 400;
}

/* ==========================================
   SEÇÃO DE MENSAGENS
   ========================================== */
.card-mensagens {
    background: linear-gradient(145deg, #fff8f6 0%, #ffe8f0 50%, #fff0f5 100%);
    border: 2px solid rgba(245, 212, 216, 0.5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--cor-destaque);
    font-size: 1rem;
}

.form-group label i {
    color: var(--cor-highlight);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(245, 212, 216, 0.5);
    border-radius: 15px;
    font-family: var(--fonte-principal);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--cor-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cor-secundaria);
    box-shadow: 0 0 0 4px rgba(224, 187, 228, 0.1);
    background: var(--cor-white);
}

.form-group input.invalid,
.form-group textarea.invalid {
    border-color: var(--cor-erro);
    background: #fff5f5;
}

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

.error-message {
    color: var(--cor-erro);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
    font-weight: 600;
}

#mensagem-feedback {
    text-align: center;
    margin-top: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px;
    border-radius: 10px;
}

.divisor-mensagens {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cor-primaria), transparent);
    margin: 50px 0 40px 0;
}

.titulo-lista-mensagens {
    text-align: center;
    margin-bottom: 30px;
    color: var(--cor-secundaria);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.lista-mensagens {
    max-height: 600px;
    overflow-y: auto;
    padding: 20px 10px;
}

.lista-mensagens::-webkit-scrollbar {
    width: 10px;
}

.lista-mensagens::-webkit-scrollbar-track {
    background: rgba(245, 212, 216, 0.2);
    border-radius: 10px;
}

.lista-mensagens::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-highlight));
    border-radius: 10px;
}

.lista-mensagens::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--cor-highlight), var(--cor-secundaria));
}

.mensagem-item {
    background: linear-gradient(135deg, var(--cor-white) 0%, rgba(255, 251, 248, 0.8) 100%);
    padding: 25px 30px 25px 45px;
    margin-bottom: 20px;
    border-radius: 20px;
    border-left: 5px solid var(--cor-highlight);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
}

.mensagem-item::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 3.5rem;
    color: var(--cor-primaria);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.mensagem-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-left-width: 7px;
}

.mensagem-autor {
    font-weight: 700;
    color: var(--cor-secundaria);
    font-size: 1.15rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mensagem-texto {
    color: var(--cor-texto);
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
}

.mensagem-data {
    color: var(--cor-texto-light);
    font-size: 0.85rem;
    margin-top: 12px;
    text-align: right;
    font-weight: 500;
}

/* ==========================================
   SEÇÃO DE TIMER
   ========================================== */
.card-timer {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe8f0 100%);
    text-align: center;
}

#timer {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.timer-box {
    background: linear-gradient(145deg, var(--cor-white), #fff5f7);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    min-width: 120px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.timer-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 182, 193, 0.1), transparent);
    transform: rotate(45deg);
    transition: var(--transition-smooth);
}

.timer-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.timer-box:hover::before {
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.timer-box span {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--cor-secundaria);
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.timer-box p {
    font-size: 1rem;
    color: var(--cor-texto);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* ==========================================
   SEÇÃO DE PRESENTES
   ========================================== */
.card-presentes {
    background: linear-gradient(145deg, #fffbf8 0%, #fff8f0 100%);
}

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

.presente-item {
    background: var(--cor-white);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    border: 2px solid transparent;
}

.presente-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--cor-primaria);
}

.presente-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-highlight));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--cor-white);
    box-shadow: 0 8px 20px rgba(255, 182, 193, 0.3);
    transition: var(--transition-smooth);
}

.presente-item:hover .presente-icon {
    transform: scale(1.1) rotate(10deg);
}

.presente-item h4 {
    margin-bottom: 12px;
    color: var(--cor-secundaria);
}

.presente-item p {
    color: var(--cor-texto-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.presente-nota {
    background: linear-gradient(135deg, rgba(224, 187, 228, 0.1), rgba(255, 182, 193, 0.1));
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid var(--cor-highlight);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.presente-nota i {
    font-size: 2rem;
    color: var(--cor-highlight);
}

.presente-nota p {
    margin: 0;
    color: var(--cor-texto);
    font-size: 1.05rem;
    font-weight: 500;
}

/* ==========================================
   SEÇÃO DE LOCAL
   ========================================== */
.card-local {
    background: linear-gradient(145deg, #fff5f2 0%, #ffe8e8 100%);
}

.local-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.info-card {
    background: var(--cor-white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.info-card.full-width {
    grid-column: 1 / -1;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--cor-secundaria), var(--cor-highlight));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--cor-white);
    box-shadow: 0 8px 20px rgba(224, 187, 228, 0.3);
}

.info-card h4 {
    margin-bottom: 10px;
    color: var(--cor-secundaria);
}

.info-card p {
    color: var(--cor-texto);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.6;
}

.mapa-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.mapa-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================
   SEÇÃO DE CONFIRMAÇÃO
   ========================================== */
.card-rsvp {
    background: linear-gradient(145deg, #fff8f6 0%, #ffebf0 100%);
}

#formRsvp .form-row {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

#form-mensagem {
    text-align: center;
    margin-top: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px;
    border-radius: 10px;
}

/* ==========================================
   LISTA DE CONFIRMADOS
   ========================================== */
.card-confirmados {
    background: linear-gradient(145deg, #fffaf8 0%, #fff0f0 100%);
}

.total-confirmados {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(224, 187, 228, 0.1), rgba(255, 182, 193, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(245, 212, 216, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.total-confirmados i {
    color: var(--cor-highlight);
    font-size: 1.5rem;
}

.lista-confirmados {
    max-height: 450px;
    overflow-y: auto;
    padding: 10px;
}

.lista-confirmados::-webkit-scrollbar {
    width: 8px;
}

.lista-confirmados::-webkit-scrollbar-track {
    background: rgba(245, 212, 216, 0.2);
    border-radius: 10px;
}

.lista-confirmados::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-highlight));
    border-radius: 10px;
}

.confirmado-item {
    background: var(--cor-white);
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 15px;
    border-left: 4px solid var(--cor-highlight);
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.confirmado-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-left-width: 6px;
}

.confirmado-nome {
    font-weight: 700;
    color: var(--cor-secundaria);
    font-size: 1.1rem;
}

.confirmado-whatsapp {
    color: var(--cor-texto-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.carregando {
    text-align: center;
    color: var(--cor-texto-light);
    font-style: italic;
    padding: 40px;
}

.carregando i {
    margin-right: 10px;
}

/* ==========================================
   RODAPÉ MODERNO
   ========================================== */
.footer {
    background: linear-gradient(135deg, #E0BBE4 0%, #FFB6C1 100%);
    color: var(--cor-white);
    padding: 60px 20px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(-2deg);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-image {
    /* Container - sem estilos de imagem */
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.foto-rodape {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: contain;
    border: 5px solid var(--cor-white);
    background-color: var(--cor-white);
    box-shadow: 0 10px 40px rgba(224, 187, 228, 0.4);
    display: block;
    margin: 0 auto;
}

.footer-info h3 {
    font-family: var(--fonte-titulo);
    font-size: 2.5rem;
    color: var(--cor-white);
    margin-bottom: 10px;
}

.footer-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-white);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.social-link:hover {
    background: var(--cor-white);
    color: var(--cor-secundaria);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 30px;
    margin-top: 30px;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 0.95rem;
}

.footer-bottom i {
    color: #FF6B9D;
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

.footer-year {
    opacity: 0.8;
    font-size: 0.9rem !important;
}

/* ==========================================
   BOTÃO VOLTAR AO TOPO
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--cor-highlight), var(--cor-secundaria));
    color: var(--cor-white);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ==========================================
   ANIMAÇÕES GERAIS
   ========================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; pointer-events: none; }
}

@keyframes zoomInRise {
    from { opacity: 0; transform: scale(0.8) translateY(30px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes zoomOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.8); }
}

@keyframes fadeInRise {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-load {
    animation: fadeInRise 1.2s ease-out 0.5s forwards;
    opacity: 0;
}

/* ==========================================
   RESPONSIVIDADE
   ========================================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 15px;
        border-radius: 0;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

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

    .hero {
        padding: 120px 20px 50px;
        min-height: auto;
	margin-top: 90;
    }

    .titulo-principal {
        font-size: 3.5rem;
    }

    .subtitulo-principal {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    h2 {
        font-size: 2.8rem;
    }

    h3 {
        font-size: 2rem;
    }

    .card {
        padding: 40px 25px;
        margin-bottom: 40px;
    }

    .section-badge {
        font-size: 2.5rem;
    }

    #timer {
        gap: 15px;
    }

    .timer-box {
        min-width: 80px;
        padding: 20px 15px;
    }

    .timer-box span {
        font-size: 2.5rem;
    }

    .timer-box p {
        font-size: 0.8rem;
    }

    .presentes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

    .modal-content {
        padding: 0;
    }

    .modal-header {
        padding: 40px 25px 25px;
    }

    .modal-body {
        padding: 25px 25px 40px;
    }

  

    .titulo-principal-modal {
        font-size: 2.8rem;
    }

    .subtitulo-principal-modal {
        font-size: 1.1rem;
    }

    .texto-convite-modal {
        font-size: 1rem;
    }

    .modal-info {
        flex-direction: column;
        gap: 12px;
    }

    .confirmado-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
        gap: 8px;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .footer-content {
        gap: 20px;
    }



    .footer-info h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .titulo-principal {
        font-size: 2.8rem;
    }

  
    h2 {
        font-size: 2.2rem;
    }

    .card {
        padding: 30px 20px;
    }

    .section-header {
        margin-bottom: 30px;
    }
}