/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    /* Azul grego profundo */
    --secondary-color: #f8fafc;
    /* Branco mármore */
    --accent-color: #d4a574;
    /* Dourado antigo */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --greek-blue: #0369a1;
    --marble-white: #f9fafb;
    --gold: #b45309;
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-gold: linear-gradient(135deg, #d4a574 0%, #f59e0b 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(212, 165, 116, 0.6) 100%);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --border-radius: 20px;
}

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

/* Navegação */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.nav-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.nav-logo::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-logo:hover::before {
    opacity: 0.1;
}

.greek-ornament {
    color: var(--accent-color);
    font-size: 1.2rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
    z-index: -1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background: var(--accent-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-menu a:hover::before {
    opacity: 0.1;
}

.nav-menu a:hover::after {
    width: 80%;
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Timer na navbar (oculto no desktop) */
.nav-timer {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(30, 58, 138, 0.4), rgba(212, 165, 116, 0.3)),
        url('img/T&Dwedding-208.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.2), rgba(212, 165, 116, 0.1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: heroFadeIn 1.5s ease-out;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.greek-columns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.column {
    width: 4px;
    height: 60px;
    background: var(--white);
    position: relative;
}

.column::before,
.column::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 8px;
    background: var(--white);
    left: -4px;
}

.column::before {
    top: -8px;
}

.column::after {
    bottom: -8px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gradient-gold);
}

.hero-title .name {
    display: inline-block;
    margin: 0 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: nameGlow 3s ease-in-out infinite alternate;
}

@keyframes nameGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(212, 165, 116, 0.5);
    }
}

.ampersand {
    font-size: 3rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 1rem;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

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

.hero-date {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.date-ornament {
    margin: 0 1rem;
    font-size: 1.5rem;
}

/* Contador de tempo desde o casamento */
.countdown-timer {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    margin: 1rem auto 2rem auto;
    flex-wrap: wrap;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;
    position: relative;
    overflow: visible;
    transition: none;
}

.countdown-timer::before {
    display: none;
}

.countdown-timer:hover::before {
    display: none;
}

.countdown-timer:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

/* Seção de dias */
.countdown-days {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.countdown-number-large {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 255, 255, 0.3);
    line-height: 1;
    letter-spacing: 2px;
}

/* Seção de tempo (horas:minutos:segundos) */
.countdown-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.countdown-time-numbers {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.countdown-number {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 255, 255, 0.3);
    line-height: 1;
    letter-spacing: 1px;
    min-width: 65px;
    text-align: center;
}

.countdown-separator {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
    line-height: 1;
    opacity: 0.6;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 0.2;
    }
}

/* Labels */
.countdown-time-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 0.5rem;
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--white);
    text-transform: lowercase;
    letter-spacing: 1.5px;
    opacity: 0.85;
    font-family: 'Crimson Text', serif;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-label-small {
    font-size: 0.7rem;
    color: var(--white);
    text-transform: lowercase;
    letter-spacing: 1.5px;
    opacity: 0.85;
    font-family: 'Crimson Text', serif;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    flex: 1;
    text-align: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    padding: 1rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--white);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Seções gerais */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.greek-border {
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto;
    position: relative;
    border-radius: 2px;
}

.greek-border::before,
.greek-border::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gradient-gold);
    top: -4px;
    transform: rotate(45deg);
    border-radius: 2px;
}

.greek-border::before {
    left: -5px;
}

.greek-border::after {
    right: -5px;
}

/* Nossa História */
.story-section {
    padding: 6rem 0;
    background: var(--marble-white);
}

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

.story-quote {
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    position: relative;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

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

.story-quote i {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.story-quote p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.story-quote cite {
    color: var(--text-light);
    font-size: 0.9rem;
}

.story-details h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.story-details p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 8px solid var(--white);
    z-index: 1;
    pointer-events: none;
    border-radius: var(--border-radius);
}

.image-frame::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    z-index: -1;
    border-radius: var(--border-radius);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-frame:hover::after {
    opacity: 1;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: calc(var(--border-radius) - 8px);
}

.image-frame:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

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

/* Detalhes */
.details-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.detail-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--marble-white) 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.detail-card:hover::before {
    transform: scaleX(1);
}

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

.detail-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.detail-icon i {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.detail-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.detail-card:hover .detail-icon::before {
    opacity: 1;
}

.detail-card:hover .detail-icon {
    transform: scale(1.1) rotate(5deg);
}

.detail-card:hover .detail-icon i {
    color: var(--white);
}

.detail-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.detail-time {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.detail-location {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.detail-address {
    color: var(--text-light);
}

/* Galeria */
.gallery-section {
    padding: 6rem 0;
    background: var(--marble-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    aspect-ratio: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 0.2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(212, 165, 116, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

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

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

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

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

.gallery-load-more {
    display: block;
    margin: 0 auto;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.gallery-load-more::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.5s;
}

.gallery-load-more:hover::before {
    left: 100%;
}

.gallery-load-more:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

/* Memórias */
.memories-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.memories-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.memories-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.memory-highlight {
    background: var(--marble-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.memory-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.memory-highlight i {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.memory-highlight h4 {
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.memory-highlight ul {
    list-style: none;
    padding: 0;
}

.memory-highlight li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-dark);
}

.memory-highlight li::before {
    content: '❦';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.memories-stats {
    display: grid;
    gap: 1.5rem;
}

.stat-card {
    background: var(--marble-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

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

.stat-card h4 {
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-text {
    font-style: italic;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-ornament {
    font-size: 2rem;
    color: var(--accent-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    margin-top: 5%;
}

.modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.modal-prev,
.modal-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Responsividade */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    /* Mostrar timer na navbar mobile */
    .nav-timer {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        font-family: 'Cinzel', serif;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--primary-color);
    }

    .nav-timer-days {
        font-size: 1rem;
    }

    .nav-timer-separator {
        font-size: 0.9rem;
        opacity: 0.6;
    }

    .nav-timer-time {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

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

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title .name {
        display: block;
        margin: 0.5rem 0;
    }

    .ampersand {
        display: block;
        margin: 1rem 0;
    }

    /* Ocultar o contador da hero section no mobile */
    .countdown-timer {
        display: none;
    }

    .countdown-number-large {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .countdown-number {
        font-size: 2.2rem;
        letter-spacing: 1px;
        min-width: 52px;
    }

    .countdown-separator {
        font-size: 1.6rem;
        margin: 0 0.2rem;
    }

    .countdown-label {
        font-size: 0.6rem;
        letter-spacing: 1.2px;
    }

    .countdown-label-small {
        font-size: 0.58rem;
        letter-spacing: 1.2px;
    }

    .story-content,
    .memories-content {
        grid-template-columns: 1fr;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

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

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .nav-container {
        padding: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

/* Animações suaves e modernas */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Efeito de glassmorphism para cards */
.story-quote,
.detail-card,
.memory-highlight,
.stat-card {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Scrollbar personalizada moderna */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(135deg, var(--marble-white) 0%, #e2e8f0 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 6px;
    border: 2px solid var(--marble-white);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-primary);
}

/* Efeitos de hover mais sofisticados */
.nav-menu a,
.gallery-load-more,
.detail-card,
.gallery-item {
    will-change: transform;
}

/* Micro-interações */
.hero-date {
    transition: all 0.3s ease;
}

.hero-date:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.5);
}

/* Efeitos de loading */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 2s infinite;
}