/* Configurações Globais e Fontes */
:root {
    --primary-color: #ff6600; /* Laranja VIP */
    --secondary-color: #003366; /* Azul Escuro */
    --light-color: #f4f4f4;
    --dark-color: #333;
    --text-color: #555;
    --font-main: 'Roboto', sans-serif;
    --font-title: 'Bebas Neue', cursive;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    background: #fff;
    color: var(--text-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-title);
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 40px; }
h3 { font-size: 1.8rem; }

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header e Navegação */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    width: 150px;
    height: auto;
}

.nav ul {
    display: flex;
}

.nav ul li {
    margin-left: 20px;
}

.nav ul li a {
    color: var(--dark-color);
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.nav ul li a:hover {
    border-bottom: 2px solid var(--primary-color);
}

/* ============================
   SEÇÃO HERO (ATUALIZADA)
   ============================ */

.hero {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background: url('assets/hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* Mantém o texto legível */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.hero-content h1 {
    color: #fff;
    font-size: 3.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #e55500;
}

/* Imagem em primeiro plano */
.hero-image img {
    width: 450px;
    max-width: 100%;
    z-index: 2;
    position: relative;
}

/* Seção Quem Somos */
.about-image {
    max-width: 500px;
    margin: 40px auto 0;
    display: block;
    border-radius: 10px;
}

/* Seção Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    color: var(--secondary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

/* Seção Ajuda (FAQ) */
.faq-item {
    background: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: var(--primary-color);
}

/* Seção Contato */
.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.contact-item h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.contact-item a {
    color: #fff;
    font-weight: bold;
}

.cnpj-info {
    text-align: center;
    font-size: 0.9rem;
    color: #ccc;
    border-top: 1px solid #555;
    padding-top: 20px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-nav a {
    color: #fff;
    margin-left: 20px;
    font-size: 0.9rem;
}

/* Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark-color);
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-left: 10px;
    transition: background 0.3s;
}

.cookie-buttons button#reject-cookies {
    background: #888;
}

.cookie-buttons button:hover {
    background: #e55500;
}

.cookie-buttons button#reject-cookies:hover {
    background: #777;
}

/* Responsividade para Tablets e Celulares */
@media(max-width: 768px) {
    .header .container {
        flex-direction: column;
    }

    .nav ul {
        margin-top: 15px;
    }

    .nav ul li {
        margin: 0 10px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .hero {
        height: auto;
        padding: 100px 0;
        text-align: center;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        display: none;
    }

    .services-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer .container {
        flex-direction: column;
        gap: 15px;
    }

    .footer-nav a {
        margin: 0 10px;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 15px;
    }
}
