/* ===== RESET E CONFIGURAÇÕES BÁSICAS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ===== VARIÁVEIS DE CORES - PALETA LILÁS ===== */
:root {
    --primary-color: #9370DB;
    /* Medium Slate Blue */
    --secondary-color: #DDA0DD;
    /* Plum */
    --accent-color: #E6E6FA;
    /* Lavender */
    --dark-purple: #663399;
    /* Rebecca Purple */
    --light-purple: #F8F4FF;
    /* Muito claro para backgrounds */
    --text-dark: #4A4A4A;
    --text-light: #FFFFFF;
    --text-muted: #666666;
    --gradient-bg: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-hover: linear-gradient(135deg, var(--dark-purple), var(--primary-color));
    --shadow: 0 10px 30px rgba(147, 112, 219, 0.2);
    --shadow-hover: 0 15px 40px rgba(147, 112, 219, 0.3);
}

/* ===== TIPOGRAFIA ===== */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-purple);
}

.font-script {
    font-family: 'Dancing Script', cursive;
}

/* ===== HEADER E NAVEGAÇÃO ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo h2 {
    background: var(--gradient-bg);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-bg);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-special {
    background: var(--gradient-bg);
    color: var(--text-light) !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-special:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Menu Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== SEÇÕES PRINCIPAIS ===== */
.section {
    padding: 5rem 0;
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    background: var(--gradient-bg);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
}

.section-title-h2 {
    font-size: 2.5rem;
    background: var(--gradient-bg);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #FFFFFF !important;
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-content .date {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ===== SEÇÃO SOBRE ===== */
.sobre {
    background: var(--text-light);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
}

.sobre-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.sobre-image {
    text-align: center;
}

.sobre-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* ===== SEÇÃO DETALHES ===== */
.detalhes {
    background: var(--accent-color);
}

.detalhes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.detalhe-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.detalhe-card:hover {
    transform: translateY(-5px);
}

.detalhe-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.detalhe-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
}

/* ===== SEÇÃO GALERIA ===== */
.galeria {
    background: var(--text-light);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
    height: 280px;
    /* Altura fixa para todas as imagens */
    background: var(--accent-color);
    box-shadow: 0 8px 25px rgba(147, 112, 219, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(147, 112, 219, 0.25);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Mantém proporção, corta se necessário */
    object-position: center;
    /* Centraliza a imagem */
    transition: transform 0.3s ease;
    display: block;
}

.galeria-item:hover img {
    transform: scale(1.05);
    /* Zoom mais suave */
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(147, 112, 219, 0.9);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay i {
    color: var(--text-light);
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.galeria-item:hover .galeria-overlay i {
    transform: scale(1);
}

/* ===== SEÇÃO CONVITE ===== */
.convite {
    background: var(--gradient-bg);
    color: var(--text-light);
    text-align: center;
}

.convite .section-title h2,
.convite .section-title p {
    color: var(--text-light);
}

.convite-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

/* ===== PÁGINA LISTA DE PRESENTES ===== */
.lista-presentes {
    padding: 7rem 0 5rem;
    background: var(--light-purple);
    min-height: 100vh;
}

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

.presente-card {
    background: var(--text-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.presente-image {
    width: 100%;
    height: 200px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.presente-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.presente-image:hover img {
    transform: scale(1.05);
}

.presente-image i {
    font-size: 3rem;
    color: var(--primary-color);
}

.presente-info {
    padding: 1.5rem;
}

.presente-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.presente-info p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.presente-preco {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 1rem;
}

.btn-presentear {
    width: 100%;
    background: var(--gradient-bg);
    color: var(--text-light);
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-presentear:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
}

/* ===== SELETOR DE CATEGORIAS ===== */
.categoria-selector {
    margin: 2rem 0 3rem;
    text-align: center;
}

.categoria-tabs {
    display: inline-flex;
    background: var(--text-light);
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: var(--shadow);
    gap: 0.5rem;
    overflow-x: auto;
    max-width: 100%;
}

.categoria-tab {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: fit-content;
}

.categoria-tab:hover {
    color: var(--primary-color);
    background: var(--accent-color);
}

.categoria-tab.active {
    background: var(--gradient-bg);
    color: var(--text-light);
    transform: scale(1.05);
}

/* Responsivo para categorias */
@media (max-width: 768px) {
    .categoria-tabs {
        justify-content: flex-start;
        width: 100%;
        border-radius: 25px;
    }

    .categoria-tab {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
        min-width: auto;
        flex-shrink: 0;
    }

    .categoria-selector {
        margin: 1.5rem 0 2rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-purple);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

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

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

.footer-section h3,
.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
}

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

.footer-section i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(221, 160, 221, 0.3);
    opacity: 0.8;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

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

    .nav-item {
        margin: 1rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .subtitle {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .detalhes-grid {
        grid-template-columns: 1fr;
    }

    .galeria-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .galeria-item {
        height: 250px;
        /* Altura reduzida para mobile */
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    /* Galeria responsiva para telas pequenas */
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .galeria-item {
        height: 150px;
        /* Altura ainda menor para celulares */
    }

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

/* ===== ANIMAÇÕES EXTRAS ===== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* ===== ESTADOS DE LOADING ===== */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

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

/* ===== MODAL DA GALERIA ===== */
#galeria-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* ===== TOOLTIP PERSONALIZADO ===== */
.custom-tooltip {
    position: absolute;
    background: var(--dark-purple);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.9;
    box-shadow: var(--shadow);
}

.custom-tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--dark-purple) transparent transparent transparent;
}

/* ===== CORAÇÕES FLUTUANTES ===== */
.coracao-flutuante {
    animation: flutuar 5s linear forwards;
}

@keyframes flutuar {
    0% {
        bottom: -50px;
        opacity: 1;
    }

    100% {
        bottom: 100vh;
        opacity: 0;
    }
}

/* ===== CONTADOR REGRESSIVO ===== */
.contador-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.contador-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.contador-item .numero {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Dancing Script', cursive;
}

.contador-item .label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== VALIDAÇÃO DE FORMULÁRIO ===== */
.error {
    border: 2px solid #ff6b6b !important;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.3) !important;
}

.error::placeholder {
    color: #ff6b6b !important;
}

/* ===== SCROLL REVEAL ===== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HEADER SCROLL EFFECT ===== */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(147, 112, 219, 0.3);
}

.header.scrolled .nav-logo h2 {
    font-size: 1.5rem;
}

/* ===== LAZY LOADING ===== */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.lazy.loaded {
    opacity: 1;
}

/* ===== ANIMAÇÕES DE HOVER EXTRAS ===== */
.btn-hover-effect {
    position: relative;
    overflow: hidden;
}

.btn-hover-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-hover-effect:hover::before {
    left: 100%;
}

/* ===== ELEMENTOS INTERATIVOS ===== */
.clickable-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.clickable-card:active {
    transform: translateY(-2px) scale(0.98);
}

/* ===== EFEITOS DE PARTICLES/BACKGROUND ===== */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particles 20s linear infinite;
    z-index: 1;
}

@keyframes particles {
    0% {
        background-position: 0 0, 0 0;
    }

    100% {
        background-position: 50px 50px, -50px -50px;
    }
}

/* ===== EXTRAS DE ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {

    .header,
    .footer,
    .nav-menu,
    .hamburger {
        display: none !important;
    }

    .hero {
        height: auto !important;
        background: white !important;
        color: black !important;
    }

    .section {
        padding: 2rem 0 !important;
    }

    .container {
        padding: 0 !important;
    }
}

/* ===== CONTROLE DE MÚSICA DE FUNDO ===== */
.audio-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: slideInBottom 0.8s ease-out;
}

.music-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-bg);
    color: var(--text-light);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.music-toggle:hover {
    background: var(--gradient-hover);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.music-toggle.playing {
    background: var(--gradient-hover);
    animation: pulse 2s infinite;
}

.music-toggle.paused {
    background: rgba(147, 112, 219, 0.7);
}

.music-toggle i {
    font-size: 1.2rem;
}

.music-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Animação de pulse para quando está tocando */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(147, 112, 219, 0.4);
    }

    50% {
        box-shadow: 0 0 30px rgba(147, 112, 219, 0.7);
    }
}

@keyframes slideInBottom {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Estilos específicos para notificação mobile de música */
.mobile-music-notification {
    position: fixed;
    top: 70px;
    left: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: slideInTop 0.6s ease;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-content .fas {
    font-size: 1.5rem;
    color: #FFD700;
    animation: pulse 1.5s infinite;
}

.notification-text {
    flex: 1;
    line-height: 1.3;
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes slideInTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsividade do controle de música */
@media (max-width: 768px) {
    .audio-control {
        bottom: 20px;
        right: 20px;
        z-index: 1000;
    }

    .music-toggle {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        /* Tornar mais chamativo em mobile */
        border: 3px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 25px rgba(147, 112, 219, 0.4);
    }

    /* Em mobile, manter o texto visível para clareza */
    .music-text {
        font-size: 0.8rem;
        font-weight: 700;
    }

    /* Animação mais intensa para chamar atenção */
    .music-toggle:not(.playing):not(.paused) {
        animation: mobilePulse 2s infinite;
        background: linear-gradient(45deg, #FFD700, #FF8C00, #FFD700);
        background-size: 200% 200%;
    }
}

@media (max-width: 480px) {
    .audio-control {
        bottom: 15px;
        right: 15px;
    }

    .music-toggle {
        padding: 0.8rem 1rem;
        border-radius: 25px;
        min-width: auto;
        min-height: auto;
        font-size: 0.85rem;
    }

    .music-toggle i {
        font-size: 1.1rem;
    }

    .music-text {
        font-size: 0.75rem;
    }
}

/* Animação específica para mobile */
@keyframes mobilePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    }

    25% {
        background-position: 100% 0%;
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(255, 140, 0, 0.7);
    }

    75% {
        background-position: 0% 100%;
    }
}

/* ===== SAVE THE DATE PAGE ===== */
.save-the-date-hero {
    min-height: 100vh;
    background: url('../images/save-the-date.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;
    /* Remover margin negativa para evitar problemas de scroll/corte */
    padding-top: 80px;
    /* Compensação visual do header fixo */
}

.save-the-date-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.save-the-date-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 90%;
    /* Remover margin-top que empurrava o conteúdo para baixo */
}

.save-the-date-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.date-display {
    margin: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
}

.date-item span {
    display: block;
    line-height: 1.2;
}

.date-item .day {
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark-purple);
}

.date-item .month {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.date-item .year {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.time-display {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.save-the-date-content .names {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-purple);
}

.save-the-date-content .actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.save-the-date-content .btn {
    background: var(--gradient-bg);
    color: white;
    border: none;
}

.save-the-date-content .btn:hover {
    background: var(--gradient-hover);
    transform: translateY(-3px);
}

.save-the-date-content .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.save-the-date-content .btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .save-the-date-content h1 {
        font-size: 3rem;
    }

    .save-the-date-content {
        padding: 2rem 1rem;
    }
}