/* Reset e Configurações Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comfortaa', cursive;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background-light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation Menu */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Fredoka', cursive;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(248, 200, 212, 0.1);
    border: 2px solid transparent;
}

.nav-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 200, 212, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Ajuste do Hero para compensar o nav fixo */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--background-light);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.main-title {
    font-family: 'Fredoka', cursive;
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
    margin-bottom: 1rem;
    animation: bounceIn 1s ease-out;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.big-number {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    display: inline-block;
    animation: pulse 2s infinite;
}

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

@keyframes bounceIn {
    0% { opacity: 0; transform: translateY(-100px); }
    60% { opacity: 1; transform: translateY(10px); }
    100% { transform: translateY(0); }
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.date-info, .time-info {
    background: rgba(255,255,255,0.9);
    padding: 1rem 2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    font-size: 1.2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255,215,0,0.2);
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--text-dark);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
}

/* Responsivo para Navigation */
@media (max-width: 768px) {
    .main-nav {
        position: relative;
    }
    
    .nav-content {
        position: relative;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        margin-top: 0.5rem;
        z-index: 1001;
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .nav-link {
        margin-bottom: 0.5rem;
        justify-content: center;
    }
    
    .nav-toggle {
        display: flex !important;
        position: relative;
        z-index: 1002;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .hero {
        margin-top: 100px;
    }
}

/* Animações de Fundo */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 3s linear infinite;
    z-index: -1;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.4; }
}

/* Balões Flutuantes */
.balloons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.balloon {
    position: absolute;
    width: 30px;
    height: 40px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: float 6s ease-in-out infinite;
}

.balloon::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 20px;
    background: #666;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.balloon1 {
    background: #f8c8d4;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.balloon2 {
    background: #ffffff;
    border: 2px solid #f8c8d4;
    top: 20%;
    right: 15%;
    animation-delay: -2s;
}

.balloon3 {
    background: #f4a5b5;
    top: 60%;
    left: 5%;
    animation-delay: -4s;
}

.balloon4 {
    background: #fdf2f8;
    border: 2px solid #f8c8d4;
    top: 80%;
    right: 5%;
    animation-delay: -1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--background-light);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.main-title {
    font-family: 'Fredoka', cursive;
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
    margin-bottom: 1rem;
    animation: bounceIn 1s ease-out;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.big-number {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    display: inline-block;
    animation: pulse 2s infinite;
}

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

@keyframes bounceIn {
    0% { opacity: 0; transform: translateY(-100px); }
    60% { opacity: 1; transform: translateY(10px); }
    100% { transform: translateY(0); }
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.date-info, .time-info {
    background: rgba(255,255,255,0.9);
    padding: 1rem 2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    font-size: 1.2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255,215,0,0.2);
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--text-dark);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
}

/* About Helena Section */
.about-helena {
    padding: 6rem 0;
    background: var(--background-light);
    position: relative;
}

/* Removido - usando apenas margaridas reais */

/* Margaridas usando a imagem real */
.daisy-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    background: url('img/margarida.png') no-repeat center center;
    background-size: contain;
    opacity: 0.35;
    animation: gentle-float 6s ease-in-out infinite;
    z-index: 1;
}

/* Tamanhos diferentes para as margaridas */
.daisy-small {
    width: 50px;
    height: 50px;
    opacity: 0.25;
}

.daisy-medium {
    width: 80px;
    height: 80px;
    opacity: 0.35;
}

.daisy-large {
    width: 120px;
    height: 120px;
    opacity: 0.45;
}

.daisy-extra-large {
    width: 150px;
    height: 150px;
    opacity: 0.55;
}

/* Animações suaves para as margaridas */
@keyframes gentle-float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-10px) rotate(2deg); 
    }
    50% { 
        transform: translateY(0px) rotate(0deg); 
    }
    75% { 
        transform: translateY(-5px) rotate(-1deg); 
    }
}

@keyframes gentle-sway {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

/* Variações de animação */
.daisy-decoration:nth-child(odd) {
    animation: gentle-sway 8s ease-in-out infinite;
}

.daisy-decoration:nth-child(even) {
    animation: gentle-float 10s ease-in-out infinite;
}

/* Removido - usando apenas margaridas reais */

.section-title {
    font-family: 'Fredoka', cursive;
    font-size: 3rem;
    text-align: center;
    color: #2d3436;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '🎂';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

.helena-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.helena-text h3 {
    font-family: 'Fredoka', cursive;
    font-size: 2.5rem;
    color: #ff6b9d;
    margin-bottom: 1.5rem;
}

.helena-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.age-highlight {
    background: linear-gradient(45deg, #ff6b9d, #ff4757);
    color: white;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.age-number {
    font-size: 4rem;
    font-weight: 700;
    display: block;
}

.age-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.helena-photo {
    position: relative;
    text-align: center;
}

.main-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.photo-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, var(--primary-color), var(--green-soft));
    border-radius: 50%;
    z-index: 1;
    animation: rotate 10s linear infinite;
}

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

/* Party Details Section */
.party-details {
    padding: 6rem 0;
    background: var(--background-light);
    position: relative;
}

/* Removido - usando apenas margaridas reais */

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.detail-card {
    background: rgba(255,255,255,0.9);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-10px);
}

.detail-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-dark);
    font-size: 2rem;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.detail-card h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.8rem;
    color: #2d3436;
    margin-bottom: 1rem;
}

.detail-card p {
    color: #555;
    margin-bottom: 1rem;
}

.time-highlight {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Fredoka', cursive;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.venue-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #74b9ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.venue-link:hover {
    color: #0984e3;
}

.map-section {
    text-align: center;
    background: rgba(255,255,255,0.8);
    padding: 2rem;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.map-section h3 {
    font-family: 'Fredoka', cursive;
    color: #2d3436;
    margin-bottom: 1rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #74b9ff;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-link:hover {
    background: #0984e3;
    transform: translateY(-2px);
}

/* Mapa embed */
.embedded-map {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--white-pure);
    width: 100%;
}

.embedded-map iframe {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.embedded-map:hover iframe {
    transform: scale(1.02);
}

/* Photo Gallery */
.photo-gallery {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f5f5dc 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Cores principais - Tema Margarida (Rosa clarinho suave) */
:root {
    --primary-color: #f8c8d4;      /* Rosa clarinho suave */
    --secondary-color: #f5f1e8;    /* Bege cremoso do fundo */
    --accent-color: #f4a5b5;       /* Rosa um pouco mais intenso para detalhes */
    --background-light: #f5f1e8;   /* Bege cremoso igual a imagem */
    --text-dark: #2d2d2d;         /* Preto suave para texto */
    --card-bg: rgba(255, 255, 255, 0.95);
    --shadow-light: rgba(0, 0, 0, 0.05);
    --green-soft: #7a9b7e;        /* Verde mais suave */
    --kraft-color: #e8ddd0;       /* Bege mais claro */
    --white-pure: #ffffff;        /* Branco puro das pétalas */
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    display: block;
    margin: 5% auto;
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff6b9d;
}

/* Gift Guide Section */
.gift-guide-section {
    padding: 6rem 0;
    background: var(--background-light);
    position: relative;
    text-align: center;
}

.gift-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 3rem;
    font-style: italic;
}

.gift-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.gift-item {
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: 2px solid rgba(248, 200, 212, 0.3);
}

.gift-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(248, 200, 212, 0.4);
}

.gift-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(248, 200, 212, 0.4);
}

.gift-icon i {
    font-size: 2rem;
    color: white;
}

.gift-item h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.gift-size {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Comfortaa', cursive;
}

/* RSVP Section */
.rsvp-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background-light) 0%, rgba(248, 200, 212, 0.3) 50%, var(--background-light) 100%);
    text-align: center;
    position: relative;
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

/* Removido - usando apenas margaridas reais */

/* Removido - mantendo título da página principal normal */

.rsvp-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 3rem;
}

.rsvp-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.rsvp-btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.rsvp-btn.primary {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(248, 200, 212, 0.4);
    border: 2px solid white;
}

.rsvp-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(248, 200, 212, 0.6);
}

.rsvp-btn.secondary {
    background: rgba(255,255,255,0.95);
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
}

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

/* Menu/Cardápio Styles */
.menu-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.95);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.menu-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--primary-color);
}

.menu-header h2 {
    font-family: 'Fredoka', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(248, 200, 212, 0.3);
}

.menu-header p {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.menu-category {
    background: rgba(248, 200, 212, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid rgba(248, 200, 212, 0.3);
}

.category-title {
    font-family: 'Fredoka', cursive;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
}

.category-title i {
    font-size: 1.1rem;
}

.menu-special {
    font-size: 0.8rem;
    background: var(--primary-color);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    margin-left: 0.5rem;
}

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

.menu-items li {
    padding: 0.5rem 0;
    color: #444;
    font-weight: 500;
    border-bottom: 1px solid rgba(248, 200, 212, 0.2);
}

.menu-items li:last-child {
    border-bottom: none;
}

.for-parents {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-style: italic;
    font-weight: 600;
}

.menu-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-color);
}

.menu-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-color);
}

.menu-footer p {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    font-style: italic;
}

/* Responsivo para cardápio */
@media (max-width: 768px) {
    .menu-container {
        margin: 1rem;
        padding: 2rem;
    }
    
    .menu-header h2 {
        font-size: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Footer */
.footer {
    background: rgba(255,255,255,0.9);
    color: #555;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin-bottom: 0.5rem;
}

/* RSVP Page Styles */
.rsvp-page {
    background: var(--background-light);
}

.rsvp-header {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.back-link {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(248, 200, 212, 0.3);
}

.back-link:hover {
    color: var(--accent-color);
    transform: translateY(-50%) translateX(-3px);
    transition: all 0.3s ease;
}

.rsvp-header h1 {
    font-family: 'Fredoka', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(248, 200, 212, 0.3);
}

.rsvp-form-section {
    padding: 4rem 0;
    min-height: calc(100vh - 200px);
    position: relative;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.95);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.form-header h2 {
    font-family: 'Fredoka', cursive;
    color: #2d3436;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-family: 'Comfortaa', cursive;
    font-size: 1rem;
    transition: border-color 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(255,215,0,0.1);
}

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

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.submit-btn, .cancel-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.submit-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    border: 2px solid white;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.cancel-btn {
    background: var(--secondary-color);
    color: var(--text-dark);
    border: 2px solid var(--kraft-color);
}

.cancel-btn:hover {
    background: var(--kraft-color);
    transform: translateY(-2px);
}

.event-summary {
    max-width: 400px;
    margin: 3rem auto 0;
    background: rgba(255,255,255,0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.event-summary h3 {
    font-family: 'Fredoka', cursive;
    color: #2d3436;
    margin-bottom: 1.5rem;
    text-align: center;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
}

.summary-item i {
    color: var(--primary-color);
    width: 20px;
}

/* Success Modal */
.success-modal .modal-content {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    margin: 10% auto;
}

.success-content {
    display: block !important;
}

.success-icon {
    font-size: 4rem;
    color: var(--green-soft);
    margin-bottom: 1.5rem;
}

.success-content h2 {
    font-family: 'Fredoka', cursive;
    color: #2d3436;
    margin-bottom: 1rem;
}

.success-content p {
    margin-bottom: 1rem;
    color: #555;
}

.success-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--green-soft));
    color: var(--text-dark);
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    
    .big-number {
        font-size: 5rem;
    }
    
    .helena-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rsvp-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title::after {
        display: none;
    }
    
    .modal-content {
        max-width: 95%;
        margin: 10% auto;
    }
    
    .close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .back-link {
        position: static;
        transform: none;
        margin-bottom: 1rem;
    }
    
    .form-container {
        margin: 2rem 1rem;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .big-number {
        font-size: 4rem;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .container {
        padding: 0 15px;
    }
}
