/* --- CONFIGURAÇÕES GLOBAIS E VARIÁVEIS --- */
:root {
    --primary: #ffffff;
    --accent: #d4af37; 
    --bg-black: #050505;
    --bg-card: #0a0a0a;
    --whatsapp: #25d366;
    --transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --font-elegant: 'Montserrat', sans-serif;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: var(--font-elegant); 
}

body { 
    background: var(--bg-black); 
    color: var(--primary); 
    font-weight: 300; 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
}

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

/* --- COMPONENTES REUTILIZÁVEIS --- */
.badge { 
    background: #1a1a1a; 
    padding: 5px 15px; 
    border-radius: 50px; 
    font-size: 0.7rem; 
    color: var(--accent); 
    margin-bottom: 20px; 
    display: inline-block; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

/* Botão WhatsApp Flutuante */
.whatsapp-btn {
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    background: var(--whatsapp);
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    font-size: 30px; 
    color: white;
    z-index: 9999; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); 
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-btn:hover { 
    transform: scale(1.1); 
    background: #128c7e; 
}

/* --- HERO SECTION --- */
.hero { 
    height: 100vh; 
    position: relative; 
    background: #000; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    overflow: hidden; 
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover; 
}

.overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 100%); 
    z-index: 1; 
    pointer-events: none; 
}

.hero-content { 
    z-index: 2; 
    padding: 20px; 
    position: relative; 
}

.logo { 
    font-size: 3.5rem; 
    font-weight: 900; 
    letter-spacing: 5px; 
    margin-bottom: 10px; 
    text-shadow: 0 4px 15px rgba(0,0,0,0.5); 
}

.logo span { color: #444; }

.tagline { 
    font-size: 1.1rem; 
    color: #ccc; 
    margin-bottom: 25px; 
    font-weight: 300; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.device-tag { 
    display: inline-block; 
    background: rgba(26, 26, 26, 0.8); 
    padding: 6px 18px; 
    border-radius: 50px; 
    font-size: 0.8rem; 
    color: var(--accent); 
    backdrop-filter: blur(4px); 
}

.cta-group { margin-top: 35px; }

.btn-main, .btn-sec {
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    display: inline-block;
}

.btn-main { background: white; color: black; font-weight: bold; margin-right: 15px; }
.btn-sec { 
    border: 1px solid white; 
    color: white; 
    backdrop-filter: blur(4px);
}

.btn-main:hover { background: var(--accent); color: white; transform: translateY(-3px); }
.btn-sec:hover { background: white; color: black; transform: translateY(-3px); }

/* --- SEÇÃO SOBRE MIM --- */
.section-about { 
    padding: 100px 0; 
    border-bottom: 1px solid #111; 
    position: relative;
    z-index: 10;
    background: var(--bg-black);
}

.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: center; }

.photo-frame {
    width: 300px; 
    height: 300px; 
    border-radius: 50%; 
    overflow: hidden;
    border: 6px solid #1a1a1a; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.about-photo { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: 0.5s; }
.photo-frame:hover .about-photo { filter: grayscale(0%); transform: scale(1.05); }

.about-text h2 { font-size: 2.8rem; margin-bottom: 20px; font-weight: 400; text-transform: uppercase; }
.intro-text { font-size: 1.1rem; color: #eee; margin-bottom: 20px; line-height: 1.6; font-weight: 300; }
.about-text p { color: #999; font-size: 0.95rem; margin-bottom: 15px; line-height: 1.8; }

.about-contact-info { 
    margin: 25px 0; 
    padding: 20px; 
    background: #080808; 
    border-radius: 8px; 
    border: 1px solid #1a1a1a; 
}

.about-contact-info p { 
    margin-bottom: 10px; 
    font-size: 0.85rem; 
    color: #bbb; 
    display: flex; 
    align-items: center; 
}

.about-contact-info p i { 
    color: var(--accent); 
    margin-right: 12px; 
    width: 20px; 
    text-align: center; 
}

.services-icons-block { display: flex; gap: 15px; margin-top: 25px; }

.icon-item { 
    background: #080808; 
    padding: 20px 15px; 
    border-radius: 6px; 
    text-align: center; 
    border: 1px solid #1a1a1a; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    transition: var(--transition);
}

.icon-item:hover { border-color: var(--accent); transform: translateY(-5px); }
.icon-item i { font-size: 24px; color: var(--accent); margin-bottom: 10px; }
.icon-item span { font-size: 0.75rem; color: white; text-transform: uppercase; letter-spacing: 0.5px; }

/* --- MURAL INSTAGRAM --- */
.instagram-section { 
    padding: 100px 0; 
    text-align: center; 
    background: #000; 
    position: relative;
    z-index: 10;
}

.instagram-section h2 { font-size: 2.5rem; margin-bottom: 15px; font-weight: 400; }
.sub-mural { color: #666; font-size: 0.95rem; margin-bottom: 50px; }

.instagram-mural-wrapper {
    padding: 20px;
    background: #080808;
    border-radius: 15px;
    border: 2px solid #1a1a1a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.instagram-mural-wrapper:hover { border-color: var(--accent); }
.instagram-frame { min-height: 500px; }

/* --- SEÇÃO DE PLANOS --- */
.section-plans { 
    padding: 100px 0; 
    background: var(--bg-black); 
    text-align: center; 
    border-top: 1px solid #111; 
}

.plans-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    margin-top: 50px; 
}

.plan-card { 
    background: #0a0a0a; 
    border: 1px solid #1a1a1a; 
    padding: 40px 25px; 
    border-radius: 12px;
    transition: var(--transition); 
    display: flex; 
    flex-direction: column; 
    align-items: center;
}

.plan-card:hover { 
    border-color: var(--accent); 
    transform: translateY(-10px); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.plan-card.featured { 
    border-color: #333; 
    background: #0d0d0d; 
    transform: scale(1.05); 
}

.plan-card.featured:hover { border-color: var(--accent); }

.plan-header i { font-size: 2.5rem; color: var(--accent); margin-bottom: 15px; }
.plan-header h3 { font-size: 1.4rem; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }

.plan-list { 
    list-style: none; 
    margin-bottom: 35px; 
    width: 100%; 
    text-align: center; 
}

.plan-list li { 
    color: #ffffff; 
    font-size: 0.95rem; 
    margin-bottom: 12px; 
    line-height: 1.4;
}

.plan-list strong {
    color: #ffffff;
}

.btn-plan { 
    background: transparent; 
    border: 1px solid var(--accent); 
    color: var(--accent);
    padding: 12px 25px; 
    text-decoration: none; 
    font-weight: bold; 
    border-radius: 4px;
    font-size: 0.8rem; 
    text-transform: uppercase; 
    transition: var(--transition); 
    width: 100%;
}

.btn-plan:hover { 
    background: var(--accent); 
    color: #000; 
}

/* --- FOOTER (CENTRALIZADO) --- */
footer { 
    padding: 40px; 
    text-align: center; 
    border-top: 1px solid #111; 
    font-size: 0.8rem; 
    color: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-footer { padding: 40px 0; text-align: center; width: 100%; }

/* --- ANIMAÇÕES --- */
.fade-in { animation: fadeIn 1s ease-in forwards; }
.fade-in-delayed { animation: fadeIn 1.5s ease-in forwards; opacity: 0; }

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

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .plans-grid { grid-template-columns: 1fr; max-width: 450px; margin: 50px auto 0; }
    .plan-card.featured { transform: scale(1); }
}

@media (max-width: 768px) {
    .hero { 
        height: 100vh; /* Mantido 100vh para ocupar a tela toda */
        min-height: 450px; 
    }
    .hero-video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; /* ALTERADO: Preenche a tela sem faixas pretas */
    }

    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-photo-wrapper { order: -1; display: flex; justify-content: center; margin-bottom: 30px; }
    .photo-frame { width: 220px; height: 220px; }
    .logo { font-size: 2.2rem; }
    .cta-group { display: flex; flex-direction: column; gap: 15px; align-items: center; }
    .btn-main { margin-right: 0; width: 100%; max-width: 300px; }
    .btn-sec { width: 100%; max-width: 300px; }
    .services-icons-block { flex-wrap: wrap; }
    .icon-item { flex: unset; width: 48%; margin-bottom: 10px; }
}