/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Segoe UI', sans-serif;
}

:root {
    /* Paleta Dark Premium */
    --bg-main: #07090E; /* Fundo hiper escuro */
    --bg-surface: #11151F; /* Fundo dos cards */
    --bg-surface-light: #1A2130;
    
    /* Acentos Neon / Luxo */
    --accent-neon: #00E5FF; /* Ciano vibrante */
    --accent-hover: #00B2CC;
    --neon-glow: 0 0 20px rgba(0, 229, 255, 0.3);
    
    /* Textos */
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-dark: #07090E;
    
    /* Utilitários */
    --border-glass: rgba(255, 255, 255, 0.05);
    --border-neon: rgba(0, 229, 255, 0.2);
    --sombra-card: 0 10px 30px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
}

body {
    background-color: var(--bg-main);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

h1, h2, h3, h4 {
    color: var(--text-primary);
    font-weight: 700;
}

h2 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

strong {
    color: var(--text-primary);
}

.highlight {
    color: var(--accent-neon);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

/* Botões Premium */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-neon) 0%, #0088FF 100%);
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: 4px; /* Bordas mais retas para ar moderno */
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: var(--neon-glow);
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
    color: var(--text-dark);
}

.btn-outline {
    background: transparent;
    color: var(--accent-neon);
    border: 1px solid var(--accent-neon);
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: var(--neon-glow);
    color: var(--accent-neon);
}

/* Header e Navegação (Glassmorphism) */
header {
    background-color: rgba(7, 9, 14, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
}

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    background: linear-gradient(to right, #FFFFFF, var(--accent-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--accent-neon);
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.3);
}

nav ul li a.btn {
    color: var(--text-dark);
}

nav ul li a.btn:hover {
    color: var(--text-dark);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--accent-neon);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, rgba(7, 9, 14, 0.7), rgba(7, 9, 14, 1)), 
                url('https://images.unsplash.com/photo-1581579431536-9c56c1545e38?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 200px 0 120px;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-main), transparent);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-secondary);
}

/* Serviços */
.servicos {
    background-color: var(--bg-main);
    position: relative;
}

.servicos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.servicos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.servico-card {
    background-color: var(--bg-surface);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: var(--sombra-card);
    transition: all 0.4s ease;
}

.servico-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-neon);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 229, 255, 0.1);
}

.servico-imagem {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.servico-imagem::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-surface), transparent);
}

.servico-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.servico-card:hover .servico-imagem img {
    transform: scale(1.08);
}

.servico-conteudo {
    padding: 35px;
    position: relative;
    z-index: 2;
}

.servico-conteudo h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.servico-conteudo h3 i {
    color: var(--accent-neon);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.servico-lista {
    list-style: none;
    margin-top: 20px;
}

.servico-lista li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
}

.servico-lista li:before {
    content: '\f058'; /* Check-circle FontAwesome */
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    left: 0;
    color: var(--accent-neon);
    font-weight: 900;
}

/* Sobre nós */
.sobre-nos {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-texto h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.sobre-destaque {
    background-color: rgba(0, 229, 255, 0.03);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid var(--accent-neon);
    border-right: 1px solid var(--border-glass);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.sobre-destaque h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.sobre-lista {
    list-style: none;
    margin-top: 25px;
}

.sobre-lista li {
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.sobre-lista li i {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 1.2rem;
    color: var(--accent-neon);
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.sobre-imagem {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.sobre-imagem::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--border-glass);
    border-radius: 8px;
    z-index: 10;
    pointer-events: none;
}

.sobre-imagem img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.8) contrast(1.1);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.sobre-imagem:hover img {
    transform: scale(1.03);
    filter: brightness(1) contrast(1.1);
}

/* Por que escolher a Bora */
.porque-escolher {
    text-align: center;
    background-color: var(--bg-main);
}

.porque-escolher h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.vantagens {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vantagem {
    background-color: var(--bg-surface);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    box-shadow: var(--sombra-card);
    transition: all 0.4s ease;
}

.vantagem:hover {
    transform: translateY(-10px);
    background-color: var(--bg-surface-light);
    border-color: var(--border-neon);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4), 0 0 15px rgba(0, 229, 255, 0.05);
}

.vantagem i {
    font-size: 2.8rem;
    color: var(--accent-neon);
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.vantagem h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Chamada para ação */
.cta {
    text-align: center;
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-main) 100%);
    border-top: 1px solid var(--border-neon);
    border-bottom: 1px solid var(--border-neon);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: var(--accent-neon);
    box-shadow: 0 0 20px 2px var(--accent-neon);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--text-secondary);
}

/* Footer */
footer {
    background-color: #040508;
    color: var(--text-secondary);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-glass);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--text-primary);
    margin-bottom: 30px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-neon);
}

.footer-col p, .footer-col a {
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-neon);
}

.footer-col p i {
    color: var(--accent-neon);
    width: 20px;
    margin-right: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-neon);
    color: var(--text-dark);
    border-color: var(--accent-neon);
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-glass);
    font-size: 0.95rem;
}

.copyright a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--accent-neon);
}

/* Responsividade */
@media (max-width: 992px) {
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sobre-imagem {
        order: -1;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        background-color: rgba(11, 14, 20, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        border-bottom: 1px solid var(--border-neon);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 999;
    }

    nav ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav ul li {
        margin: 15px 0;
    }

    .hero {
        padding: 160px 0 80px;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .servicos-container {
        grid-template-columns: 1fr;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .logo-img {
        height: 35px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 80px 0;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        width: 100%;
    }
}

/* Animações */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}