/* ==========================================================================
   ViVa Confeitaria — Landing Page Bem-Casados
   Color Palette: Marsala (#7A2048), Dourado (#D4AF37), Creme (#FFF8F0)
   ========================================================================== */

:root {
    --marsala: #7A2048;
    --marsala-dark: #5C1636;
    --marsala-light: #9B2D5D;
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --cream: #FFF8F0;
    --white: #FFFFFF;
    --text-dark: #2C1A24;
    --text-body: #5A4050;
    --text-muted: #8A7080;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    --shadow-sm: 0 4px 12px rgba(122, 32, 72, 0.05);
    --shadow-md: 0 12px 32px rgba(122, 32, 72, 0.08);
    --shadow-lg: 0 20px 48px rgba(122, 32, 72, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.3;
}

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

.section {
    padding: 5rem 0;
}

.section-label {
    display: block;
    text-align: center;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    color: var(--marsala);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1.1rem 2.2rem;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--marsala);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(122, 32, 72, 0.3);
}

.btn-primary:hover {
    background-color: var(--marsala-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 32, 72, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--marsala);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Shine Effect for Buttons */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine 4s infinite ease-in-out;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 1rem 0;
}

.header.scrolled {
    background-color: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.6rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 190px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    border-radius: 0;
    border: none;
    width: auto;
    height: 170px;
    min-width: 170px;
    flex-shrink: 0;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.header.scrolled .logo-text {
    color: var(--marsala);
}

.header .btn-outline {
    color: var(--white);
    border-color: var(--white);
}

.header .btn-outline:hover {
    background-color: var(--white);
    color: var(--marsala);
}

.header.scrolled .btn-outline {
    color: var(--marsala);
    border-color: var(--marsala);
}

.header.scrolled .btn-outline:hover {
    background-color: var(--marsala);
    color: var(--white);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 100px;
    padding-bottom: 4rem;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 10, 26, 0.9) 0%, rgba(122, 32, 72, 0.65) 100%);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background-color: var(--gold);
    color: var(--text-dark);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    border: 1px dashed var(--gold);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #ff3838;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(255, 56, 56, 0.7);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 56, 56, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 56, 56, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 56, 56, 0);
    }
}

/* LEADS CAPTURE SECTION */
.leads-section {
    position: relative;
    z-index: 20;
    margin-top: -80px;
    padding-top: 0;
}

.lead-box {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    border-top: 5px solid var(--gold);
}

.lead-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.lead-header h2 {
    color: var(--marsala);
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.lead-header p {
    color: var(--text-muted);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 0.9rem 1.2rem;
    border-radius: 10px;
    border: 2px solid #EBE4EB;
    background-color: #FAFAFA;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--marsala);
    background-color: var(--white);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.lead-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* PRODUCT DETAILS */
.product-details {
    background-color: var(--white);
}

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

.product-card {
    background-color: var(--cream);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid rgba(122, 32, 72, 0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.product-card h3 {
    font-size: 1.25rem;
    color: var(--marsala);
    margin-bottom: 0.8rem;
}

.product-card p {
    font-size: 0.9rem;
    color: var(--text-body);
}

/* Product Highlight */
.product-highlight {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    background-color: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(122, 32, 72, 0.05);
}

.highlight-img img {
    width: 100%;
    height: 100%;
    max-height: 450px;
    object-fit: cover;
}

.highlight-content {
    padding: 3rem;
}

.highlight-content h2 {
    font-size: 2rem;
    color: var(--marsala);
    margin-bottom: 1rem;
}

.highlight-content p {
    margin-bottom: 1.5rem;
}

.highlight-list {
    list-style: none;
    margin-bottom: 2rem;
}

.highlight-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.highlight-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* KITS SECTION */
.kits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.kit-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(122, 32, 72, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

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

.kit-badge {
    background-color: var(--cream);
    color: var(--marsala);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.kit-badge-hot {
    background-color: var(--gold);
    color: var(--text-dark);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.kit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.kit-qty {
    font-size: 2.25rem;
    font-family: var(--font-heading);
    color: var(--marsala);
    font-weight: 700;
    margin-bottom: 1rem;
}

.kit-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    height: 60px;
}

.kit-features {
    list-style: none;
    width: 100%;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(122, 32, 72, 0.08);
}

.kit-features li {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    color: var(--text-body);
}

/* Highlight Card Style */
.highlight-card {
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-md);
    transform: scale(1.03);
}

.highlight-card:hover {
    transform: scale(1.03) translateY(-5px);
}

/* SOCIAL PROOF */
.social-proof {
    background-color: var(--white);
}

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

.testimonial-card {
    background-color: var(--cream);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(122, 32, 72, 0.05);
}

.testimonial-rating {
    color: var(--gold);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.testimonial-user strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.testimonial-user span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Gallery preview */
.gallery-preview h3 {
    text-align: center;
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    color: var(--marsala);
}

.gallery-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

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

.gallery-category-title {
    color: var(--marsala);
    font-size: 1.25rem;
    font-family: var(--font-heading);
    margin-bottom: 1.2rem;
    padding-left: 0.8rem;
    border-left: 3px solid var(--gold);
    text-align: left;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(122, 32, 72, 0.08);
    height: 280px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.gallery-item-tall {
    height: 360px;
}

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

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

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44,10,26,0.85) 0%, transparent 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 1.5rem 1rem 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ESCASSEZ REAL */
.scarcity-container {
    background-color: var(--marsala);
    color: var(--white);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    border: 2px solid var(--gold);
}

.scarcity-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.scarcity-content p {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    color: var(--cream);
}

.scarcity-highlights {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 2.5rem;
}

.scarcity-item {
    display: flex;
    flex-direction: column;
}

.scarcity-number {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--gold);
    font-weight: 700;
}

.scarcity-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scarcity-alert {
    color: var(--gold-light) !important;
    font-weight: 600;
    margin-bottom: 2rem !important;
}

/* TIMELINE (COMO FUNCIONA) */
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    margin-top: 3rem;
}

.step-item {
    text-align: center;
    position: relative;
    background-color: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(122, 32, 72, 0.05);
}

.step-number {
    width: 45px;
    height: 45px;
    background-color: var(--gold);
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.step-item h3 {
    font-size: 1.15rem;
    color: var(--marsala);
    margin-bottom: 0.8rem;
}

.step-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* CTA FINAL */
.cta-final {
    background: linear-gradient(135deg, rgba(44, 10, 26, 0.95) 0%, rgba(122, 32, 72, 0.9) 100%), url('img/bemcasado-hero.webp');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
}

.cta-final-container h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-final-container p {
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.15rem;
    color: var(--cream);
}

/* FOOTER */
.footer {
    background-color: #200B15;
    color: var(--cream);
    padding: 4rem 0 2rem 0;
    font-size: 0.9rem;
    border-top: 3px solid var(--gold);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col .footer-logo {
    margin-bottom: 1rem;
    width: auto;
    height: 140px;
    border-radius: 0;
    object-fit: contain;
}

.footer-col h3 {
    color: var(--gold);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: var(--cream);
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 248, 240, 0.08);
    color: var(--cream);
    opacity: 0.7;
    font-size: 0.85rem;
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: var(--whatsapp-dark);
    transform: scale(1.1);
}

/* Animation classes for IntersectionObserver scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .product-highlight {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .highlight-img img {
        max-height: 300px;
    }
    
    .scarcity-highlights {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    /* Header mobile — logo grande mas proporcional à tela */
    .header {
        position: relative;
    }

    .header-container {
        height: auto;
        padding: 0.8rem 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .logo-link {
        justify-content: center;
    }

    .logo-img {
        height: 140px;
        min-width: 140px;
    }

    .logo-text {
        font-size: 1.8rem;
        color: var(--marsala);
    }

    .header-cta {
        width: auto;
        justify-content: center;
    }

    .header-cta .btn-outline {
        display: none;
    }

    .header-cta .btn-whatsapp {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Hero mobile — sem sobreposição pois header é position:relative */
    .hero {
        min-height: 80vh;
        padding-top: 2rem;
    }

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

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

    .hero-urgency {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .leads-section {
        margin-top: -30px;
    }
    
    .lead-box {
        padding: 2rem 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .scarcity-highlights {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

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

    .gallery-item {
        height: 180px;
    }

    .gallery-item-tall {
        height: 220px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .highlight-card {
        transform: scale(1);
    }
    
    .highlight-card:hover {
        transform: translateY(-5px);
    }

    /* Testimonials mobile */
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    /* Kit cards mobile */
    .kits-grid {
        grid-template-columns: 1fr;
    }

    /* Section title mobile */
    .section-title {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   IMAGE CROPPING FIXES
   ========================================================================== */
.img-center-top {
    object-position: center top !important;
}

.img-center-center {
    object-position: center center !important;
}

.img-center-bottom {
    object-position: center bottom !important;
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.gallery-img {
    cursor: zoom-in;
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox-modal.show .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--gold);
    text-decoration: none;
    cursor: pointer;
}
