body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #ffeef7, #f8e8e8);
    color: #333;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #d46a6a, #e2a0a0);
    color: white;
    padding: 2em 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 40px auto;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

section {
    margin-bottom: 50px;
    padding: 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #d46a6a;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2em;
    font-weight: 300;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d46a6a, #e2a0a0);
    margin: 15px auto;
    border-radius: 2px;
}

.data-item, .gostos-item {
    background: linear-gradient(135deg, #fff, #fafafa);
    border: 2px solid #f0f0f0;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.data-item::before, .gostos-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 106, 106, 0.1), transparent);
    transition: left 0.5s ease;
}

.data-item:hover::before, .gostos-item:hover::before {
    left: 100%;
}

.data-item:hover, .gostos-item:hover {
    transform: translateY(-3px);
    border-color: #d46a6a;
    box-shadow: 0 10px 25px rgba(212, 106, 106, 0.2);
}

.data-item h3, .gostos-item h3 {
    color: #d46a6a;
    margin-bottom: 10px;
    font-size: 1.4em;
    font-weight: 400;
}

.data-item p, .gostos-item p {
    font-size: 1.1em;
    color: #666;
    margin: 0;
}

.fotos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.fotos-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.fotos-grid img[data-align="top"] {
    object-position: top center;
}

.fotos-grid img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

#datas-especiais {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #fff5f5, #ffe8e8);
}

#datas-especiais h2 {
    flex-basis: 100%;
    width: 100%;
}

#datas-especiais .data-item {
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 300px;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    #datas-especiais {
        flex-direction: column;
        align-items: stretch;
    }
    #datas-especiais .data-item {
        max-width: 100%;
        min-width: 0;
        margin-bottom: 20px;
    }
}

#galeria-fotos {
    background: linear-gradient(135deg, #f5f8ff, #e8f0ff);
}

#nossos-gostos {
    background: linear-gradient(135deg, #f8fff5, #e8ffe8);
}

footer {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #d46a6a, #e2a0a0);
    color: white;
    margin-top: 50px;
    font-size: 1.1em;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    
    main {
        margin: 20px;
        padding: 20px;
    }
    
    section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    h2 {
        font-size: 1.8em;
    }
    
    .fotos-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .fotos-grid img {
        height: 200px;
    }
}

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

section {
    animation: fadeInUp 0.6s ease-out;
}

.data-item:nth-child(1)::after {
    content: '💬';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5em;
}

.data-item:nth-child(2)::after {
    content: '💋';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5em;
}

.data-item:nth-child(3)::after {
    content: '💕';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5em;
}

.data-item:nth-child(4)::after {
    content: '💍';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5em;
}

.gostos-item:nth-child(1)::after {
    content: '💃';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5em;
}

.gostos-item:nth-child(2)::after {
    content: '🏃‍♀️';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5em;
}

.gostos-item:nth-child(3)::after {
    content: '☕';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5em;
}

.gostos-item:nth-child(4)::after {
    content: '🐱';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5em;
}

#modal-foto {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 30, 30, 0.92);
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s;
    cursor: zoom-out;
}
#modal-foto[style*="display: flex"] {
    display: flex !important;
}
#modal-foto img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.7);
    background: #fff;
    padding: 10px;
    cursor: auto;
    display: block;
    margin: auto;
}
#fechar-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3em;
    color: white;
    cursor: pointer;
    z-index: 1010;
    text-shadow: 0 2px 10px #000;
    transition: color 0.2s;
}
#fechar-modal:hover {
    color: #d46a6a;
}


