:root {
    --azul-escuro: #0A192F;
    /* Azul metálico escuro (fundo e textos principais) */
    --azul-claro: #00BFFF;
    /* Ciano brilhante para destaques e hovers */
    --branco: #FFFFFF;
    --cinza: #CCCCCC;
    /* Mais suave que o anterior, mais moderno */
    --verde: #00FF99;
    /* Verde neon moderno, substituindo o 'lime' antigo */
    --azul-footer: #05101e;
    /* Azul profundo e elegante para rodapé */
    --amarelo-destaque: #FFD700;
    /* Dourado */
}


body {
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--branco);
    color: var(--azul-escuro);
    scroll-behavior: smooth;
}

/* Header */
header {
    background-color: var(--branco);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    height: 60px;
}

.nav-link {
    color: var(--azul-escuro);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--azul-claro);
}

.btn-contato {
    background-color: var(--amarelo-destaque);
    color: var(--azul-escuro);
    font-weight: bold;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    transition: background-color 0.3s ease;
}

.btn-contato:hover {
    background-color: #e6c200;
    color: var(--azul-claro)
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--azul-escuro), var(--azul-claro));
    color: var(--branco);
    padding: 6rem 2rem 5rem;
}

.hero .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Texto à esquerda */
.hero-text {
    flex: 1 1 50%;
    max-width: 500px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--branco);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--branco);
    margin-bottom: 1.5rem;
}

.btn-hero {
    background-color: var(--verde);
    color: var(--branco);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-hero:hover {
    background-color: #28a428;
}

/* Imagem do DC-X à direita */
.hero-img {
    flex: 1 1 45%;
    position: relative;
    text-align: center;
}

.dcx-flying {
    width: 300px;
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.dcx-shadow {
    width: 120px;
    height: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    filter: blur(4px);
    margin: -20px auto 0;
    z-index: 1;
}

/* Animação de "flutuação" */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text,
    .hero-img {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .dcx-flying {
        width: 220px;
    }
}

/* Seção de sobre nós */
.sobre-nos-section {
    background-color: #f4f7fa;
}

.sobre-nos-section img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Seção de Serviços */
.servico-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.servico-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


/* Seção de Contato */
.contato {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.contato h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--azul-escuro);
}

.contato p {
    font-size: 1.1rem;
    color: var(--cinza);
}

.contato i {
    font-size: 2rem;
    color: var(--azul-escuro);
    margin: 1rem;
    transition: color 0.3s ease;
}

.contato i:hover {
    color: var(--amarelo-destaque);
}

.depoimento-card {
    max-width: 500px;
    background-color: #fff;
    border-radius: 20px;
}

.depoimento-foto {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--azul-escuro);
}


/* Rodapé */
.footer {
    background-color: var(--azul-footer);
    color: #ccc;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
}

.footer small {
    color: #aaa;
}

/* AOS Custom Duration */
[data-aos] {
    transition-duration: 1000ms !important;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .nav-link,
    .btn-contato {
        font-size: 0.9rem;
    }

    .btn-hero {
        padding: 0.6rem 1.2rem;
    }

    .hero-img {
        max-width: 100%;
    }
}
body, html {
    max-width: 100%;
    overflow-x: hidden;
}