:root {
    --color-dark-brown: #2C1A12;
    --color-light-brown: #8B5A2B;
    --color-gold: #D4AF37;
    --color-black: #0F0A06;
    --color-white: #FDFBF7;
    --color-glass: rgba(253, 251, 247, 0.05);
    --color-glass-border: rgba(253, 251, 247, 0.1);
    
    --font-main: 'Outfit', sans-serif;
    --font-elegant: 'Playfair Display', serif;
    
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: #f3d8a7; /* Light honey background */
    color: var(--color-dark-brown); /* Dark brown text for contrast */
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-elegant);
    font-weight: 700;
}

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

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

.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }

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

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-light-brown), var(--color-dark-brown));
    color: var(--color-white);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(139, 90, 43, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 90, 43, 0.5);
    border-color: var(--color-gold);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
}

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

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-share {
    background-color: var(--color-dark-brown);
    color: var(--color-white);
    border: 1px solid var(--color-gold);
    box-shadow: 0 4px 15px rgba(44, 26, 18, 0.3);
}

.btn-share:hover {
    background-color: var(--color-black);
    color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 26, 18, 0.5);
}

.btn-spotify {
    background-color: #1DB954;
    color: white;
}
.btn-spotify:hover { background-color: #1ed760; transform: scale(1.05); }

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}
.btn-instagram:hover { transform: scale(1.05); }

.hidden { display: none !important; }

/* Floating PWA Button */
.floating-btn {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(44, 26, 18, 0.95);
    padding: 4px 6px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(212, 175, 55, 0.4);
    animation: slideUp 0.5s ease forwards;
}

#btn-install-float {
    background: transparent;
    border: none;
    color: var(--color-gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

#btn-install-float svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-gold);
}

@keyframes slideUp {
    from { bottom: -100px; }
    to { bottom: 15px; }
}

.btn-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: rgba(253, 251, 247, 0.8);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
}

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

.btn-close svg {
    width: 10px;
    height: 10px;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--color-glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax */
    z-index: -2;
    transform: scale(1.05); /* Avoid edges on scroll */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 10, 6, 0.3), rgba(15, 10, 6, 0.95));
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-family: var(--font-main);
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-text {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--color-white); /* Keep white text for hero section image overlay */
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    animation: fadeInUp 1s ease 0.8s both;
}

@media(min-width: 600px) {
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Sections */
.section {
    padding: 2.5rem 0; /* Espaçamento ligeiramente menor */
    position: relative;
    z-index: 1; /* Para evitar que grudem muito sem efeitos */
}

/* Card Sections (Instagram, Agenda) */
.card-section {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    color: var(--color-dark-brown);
    margin: 1rem 1.5rem; /* Margem lateral e vertical para destacar do fundo */
}

.card-section .section-title {
    color: var(--color-dark-brown);
}
.card-section .section-title::after {
    background: var(--color-dark-brown);
}
.card-section p, .card-section h3 {
    color: var(--color-dark-brown);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-dark-brown);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--color-dark-brown);
    margin: 10px auto 0;
}

/* About */
.about-card p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

/* Instagram Grid */
.grid-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.ig-post, .gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
    cursor: pointer;
}

.ig-post img, .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

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

/* Carousel */
.carousel-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    scrollbar-width: none; /* Firefox */
}
.carousel-container::-webkit-scrollbar { display: none; }

.carousel {
    display: flex;
    gap: 1rem;
}

.carousel-item {
    min-width: 280px;
    scroll-snap-align: center;
    text-align: center;
}

/* Videos Grid & Vertical Cards */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-top: 1rem;
}

.video-card {
    cursor: pointer;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: var(--transition);
}

.video-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.play-overlay svg {
    width: 45px;
    height: 45px;
    color: var(--color-white);
    background: rgba(44, 26, 18, 0.8);
    padding: 10px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    transition: var(--transition);
}

.video-card:hover .play-overlay svg {
    transform: scale(1.15);
    background: var(--color-gold);
    color: var(--color-black);
}

.video-card h3 {
    font-size: 1rem;
    text-align: center;
    color: var(--color-dark-brown); /* Dark brown text for contrast */
    font-family: var(--font-main);
    font-weight: 600;
}

/* Agenda */
.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.agenda-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--color-glass);
    border: 1px solid rgba(0,0,0,0.05); /* Mais suave pois o fundo será branco */
    border-radius: 12px;
    padding: 1rem;
}

.agenda-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-dark-brown);
    border: none;
    border-radius: 8px;
    min-width: 70px;
    height: 70px;
    color: var(--color-gold);
}

.agenda-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.agenda-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agenda-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.agenda-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Counters - removed */

/* Form / Contato */
.contact-card {
    background-color: var(--color-dark-brown) !important;
    border: 1px solid var(--color-dark-brown) !important;
    color: var(--color-white) !important;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-card .section-title {
    color: var(--color-white) !important;
}

.contact-card .section-title::after {
    background: var(--color-white) !important;
}

.contact-card p {
    color: var(--color-white) !important;
    opacity: 0.9;
}

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

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px; /* quadros redondos */
    border: 1.5px solid var(--color-dark-brown); /* borda em marrom escuro */
    background: #FFFFFF; /* resto em branco */
    color: var(--color-dark-brown); /* letras em preto */
    font-family: var(--font-main);
    outline: none;
    transition: var(--transition);
}

.form-group input::placeholder {
    color: rgba(44, 26, 18, 0.6);
}

.form-group input:focus {
    border-color: var(--color-light-brown);
    background: #FFFFFF;
    box-shadow: 0 0 0 2px rgba(139, 90, 43, 0.2);
}

.btn-wpp {
    background: #25D366;
    color: #FFFFFF;
    border: 1px solid #128C7E;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-wpp:hover {
    background: #20BA5A;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-wpp svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Social */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(44, 26, 18, 0.05);
    border: 1px solid rgba(44, 26, 18, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--color-dark-brown);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    background: var(--color-dark-brown);
    color: var(--color-gold);
    border-color: var(--color-dark-brown);
    transform: translateY(-5px);
}

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

/* Footer CardGo */
.footer-cardgo {
    background-color: #000000;
    padding: 3rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-cardgo p {
    color: #FFFFFF;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-cardgo .highlight {
    color: #1E90FF;
    font-weight: 700;
    margin: 1rem 0;
    font-size: 1.1rem;
    opacity: 1;
}

.btn-footer {
    background: transparent;
    border: 1px solid #1E90FF;
    color: #1E90FF;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    transition: var(--transition);
}

.btn-footer:hover {
    background: #1E90FF;
    color: #000000;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    display: flex;
    opacity: 1;
}

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

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

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.show {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    width: 90%;
    max-width: 450px;
    max-height: 85vh;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    border: 1px solid var(--color-gold);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

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

#modal-video-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.close-video-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2600;
}

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

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

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

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

/* Preloader Loading Screen */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a120b;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000000;
    transform: scale(1.08); /* slightly zooms video to hide the bottom frame edge */
    z-index: 1;
}

.preloader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(26, 18, 11, 0.4) 0%, rgba(26, 18, 11, 0.85) 100%);
    z-index: 2;
}

.preloader-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 80%;
    justify-content: flex-end;
}

.preloader-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.preloader-text {
    font-family: var(--font-main);
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Equalizer / Music Loader Animation */
.music-loader {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    height: 35px;
}

.music-loader .bar {
    width: 3px;
    height: 100%;
    background-color: var(--color-gold);
    border-radius: 2px;
    animation: bounceBar 1.2s ease-in-out infinite alternate;
    transform-origin: bottom;
}

/* Alternate animation delays for natural equalizer feel */
.music-loader .bar:nth-child(1) { animation-delay: 0.1s; height: 30%; }
.music-loader .bar:nth-child(2) { animation-delay: 0.4s; height: 60%; }
.music-loader .bar:nth-child(3) { animation-delay: 0.2s; height: 90%; }
.music-loader .bar:nth-child(4) { animation-delay: 0.6s; height: 40%; }
.music-loader .bar:nth-child(5) { animation-delay: 0.3s; height: 75%; }
.music-loader .bar:nth-child(6) { animation-delay: 0.5s; height: 50%; }
.music-loader .bar:nth-child(7) { animation-delay: 0.2s; height: 85%; }

@keyframes bounceBar {
    0% {
        transform: scaleY(0.2);
    }
    100% {
        transform: scaleY(1);
    }
}
/* Desktop Warning Modal */
.desktop-warning {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 18, 11, 0.95);
    z-index: 9998; /* Just below preloader, above everything else */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.desktop-warning.show {
    opacity: 1;
    visibility: visible;
}

.warning-card {
    background-color: var(--color-dark-brown);
    border: 1px solid var(--color-gold);
    max-width: 420px;
    width: 90%;
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.warning-card h2 {
    color: var(--color-gold);
    font-size: 1.8rem;
    font-family: var(--font-elegant);
}

.warning-card p {
    color: var(--color-white);
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: fadeInWarning 0.5s ease forwards;
}

.qr-container img {
    width: 160px;
    height: 160px;
}

.qr-container span {
    color: var(--color-dark-brown);
    font-size: 0.85rem;
    font-weight: 600;
}

.warning-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    margin-top: 0.5rem;
}

.warning-buttons .btn {
    width: 100%;
}

@keyframes fadeInWarning {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Scroll Hint Indicator */
.scroll-hint {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-white);
    opacity: 0.7;
    font-size: 0.9rem;
    animation: fadeInUp 1s ease 1.2s both;
    pointer-events: none;
    z-index: 5;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.scroll-hint span {
    font-family: var(--font-main);
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
}

.scroll-hint svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    animation: bounceDown 1.5s infinite;
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}
