/* DANILO CEZAR - SITE OFICIAL 
    ESTILO: DARK & PREMIUM GOLD
    VERSÃO: 3.0 - COM SPLASH SCREEN & SOM
*/

:root {
    --primary-gold: #c5a059;   
    --primary-gold-dark: #8e6d3a;
    --bg-deep: #050505;        
    --bg-card: #111111;        
    --text-main: #e0e0e0;
    --text-muted: #888888;
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Reset e Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Textura sutil de fundo */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding { padding: 100px 0; }
.bg-card { background-color: var(--bg-card); }
.bg-dark { background-color: #000; }

/* --- Splash Screen (Tela de Entrada) --- */
.overlay-start {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity 0.8s ease;
}

.overlay-content h1 {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
    letter-spacing: 8px;
}

.overlay-content p {
    letter-spacing: 5px;
    margin-bottom: 30px;
    color: #888;
    text-transform: uppercase;
}

.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* --- Tipografia --- */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
}

span { color: var(--primary-gold); }

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

/* --- Header & Navbar --- */
header {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.4rem;
    color: #fff;
    border-left: 3px solid var(--primary-gold);
    padding-left: 15px;
}

#main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

#main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
}

#main-nav a:hover { color: var(--primary-gold); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    height: 95vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('danilocezar-capa.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h2 { font-size: 4.5rem; margin-bottom: 10px; color: #fff; }
.hero-content p {
    font-size: 1.1rem;
    letter-spacing: 6px;
    color: var(--primary-gold);
    text-transform: uppercase;
    margin-bottom: 35px;
}

/* --- Botões --- */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    background: transparent;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: var(--primary-gold);
    color: #000;
}

.btn-outline {
    border-color: #fff;
    color: #fff;
    margin-left: 10px;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* --- Seção Sobre --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    gap: 60px;
    align-items: center;
}

.about-img {
    width: 100%;
    filter: grayscale(100%);
    border: 1px solid #222;
    transition: var(--transition);
}

.about-img:hover {
    filter: grayscale(0%);
    border-color: var(--primary-gold);
}

.about-text p { margin-bottom: 20px; color: var(--text-main); text-align: justify; }

.social-quick-links a {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 20px;
    transition: var(--transition);
}

.social-quick-links a:hover { color: var(--primary-gold); }

/* --- Grid de Projetos & Formatos --- */
.discography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.album-card {
    background: #0c0c0c;
    padding: 20px;
    border: 1px solid #1a1a1a;
    transition: var(--transition);
    text-align: center;
}

.album-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
}

.album-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.album-img img { width: 100%; transition: transform 0.5s; }

.album-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(197, 160, 89, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.album-overlay span {
    color: #000;
    font-weight: 800;
    font-size: 1rem;
}

.album-card:hover .album-overlay { opacity: 1; }
.album-card:hover .album-img img { transform: scale(1.1); }

.album-card h3 { font-size: 1rem; color: #fff; margin-bottom: 10px; }
.album-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

/* --- Mídia --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* --- Agenda & Instagram --- */
.instagram-cta { text-align: center; }
.insta-box {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin: 20px 0;
}
.whatsapp-link {
    display: block;
    margin-top: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
}

/* --- Formulário de Contato --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: #111;
    border: 1px solid #222;
    color: #fff;
    font-family: inherit;
}

input:focus, textarea:focus { border-color: var(--primary-gold); outline: none; }

#formStatus {
    font-size: 0.9rem;
    padding: 10px;
    border-radius: 5px;
}

/* --- Botão Flutuante WhatsApp --- */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: 0.3s;
    text-decoration: none;
    animation: pulse-wpp 2s infinite;
}

.whatsapp-fixed:hover { transform: scale(1.1); background-color: #128c7e; }

.tooltip-wpp {
    position: absolute;
    right: 75px;
    background: #fff;
    color: #333;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.whatsapp-fixed:hover .tooltip-wpp { opacity: 1; visibility: visible; }

@keyframes pulse-wpp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Responsividade --- */
@media (max-width: 768px) {
    .menu-toggle { display: block; z-index: 1001; }
    
    #main-nav { 
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        padding: 40px 20px;
        text-align: center;
        border-bottom: 1px solid var(--primary-gold);
    }

    #main-nav.active {
        display: block;
    }

    #main-nav ul {
        flex-direction: column;
        gap: 20px;
    }

    #main-nav a {
        font-size: 1.2rem;
    }
    
    .hero-content h2 { font-size: 2.5rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .btn { width: 100%; margin: 10px 0; }
    .btn-outline { margin-left: 0; }
    
    .whatsapp-fixed { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 25px; }
}

footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #1a1a1a;
    color: var(--text-muted);
    font-size: 0.8rem;
}
