/* --- GERAL & FONTES --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    --primary-color: #007bff; /* Azul vibrante */
    --secondary-color: #333;
    --background-color: #ffffff;
    --text-color: #555;
    --light-gray: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

h1, h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
}

p.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
}

/* --- HEADER & NAVEGAÇÃO --- */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* --- SEÇÃO HERO --- */
#hero {
    background: url('https://picsum.photos/1920/1080?random=hero') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: 70px; /* Espaço para o header fixo */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #0056b3;
}

/* --- PORTFÓLIO & GALERIA --- */
#portfolio {
    background: var(--light-gray);
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 5px;
}
.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 123, 255, 0.7);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover .overlay {
    opacity: 1;
}

/* --- SERVIÇOS --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}
.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* --- SEÇÃO EVENTO DESTAQUE E PIX --- */
#evento-destaque {
    background-color: #fff;
    text-align: center;
}
.evento-info {
    margin-bottom: 40px;
}
.evento-info p {
    font-size: 1.2rem;
    line-height: 1.8;
}
.pix-calculator {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: var(--light-gray);
}
.pix-calculator h3 { color: var(--secondary-color); }
.pix-calculator label { display: block; margin-bottom: 10px; font-weight: 600; }
.pix-calculator input[type="number"] { width: 100%; padding: 12px; margin-bottom: 20px; border-radius: 5px; border: 1px solid #ccc; font-size: 1.2rem; text-align: center; }
.pix-calculator button { width: 100%; padding: 15px; background-color: #28a745; color: white; border: none; border-radius: 5px; font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: background-color 0.3s ease; }
.pix-calculator button:hover { background-color: #218838; }
#resultadoPix { margin-top: 20px; font-size: 1.1rem; line-height: 1.5; }
#qrcode-container { margin-top: 20px; }
#qrcode { display: flex; justify-content: center; align-items: center; background-color: white; padding: 15px; border-radius: 5px; max-width: 230px; margin: 0 auto; border: 1px solid #ddd; }
#pixCopiaColaInstrucao { font-weight: bold; margin-top: 15px; }
#pixCopiaCola { width: 100%; padding: 10px; background-color: #e9ecef; color: #495057; border: 1px solid #ced4da; border-radius: 5px; word-break: break-all; resize: none; margin-top: 5px; }

/* --- CONTATO --- */
#contact {
    text-align: center;
    background: var(--light-gray);
}
.whatsapp-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.2s ease;
}
.whatsapp-button:hover {
    background: #1EBE57;
    transform: scale(1.05);
}
.whatsapp-button i {
    margin-right: 10px;
}

/* --- FOOTER --- */
footer {
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    padding: 20px 0;
}