/* ---------- GERAL ---------- */
body {
    background-color: #000;
    color: #fff;
    font-family: "Segoe UI", Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1,
h2 {
    color: #00bfff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    color: #00ffcc;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px #00ffcc;
}

/* ---------- CABEÇALHO ---------- */
header {
    text-align: center;
    padding: 40px 20px 20px;
    border-bottom: 2px solid #00bfff;
    background: radial-gradient(circle at top, #00121f, #000);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.logo {
    width: 90px;
    height: auto;
    filter: drop-shadow(0 0 10px #00bfff);
}

header h1 {
    font-size: 2.2em;
    text-shadow: 0 0 15px #00bfff;
    margin: 10px 0 0;
}

.slogan {
    font-size: 1em;
    color: #90d72d;
    margin-top: 5px;
    text-shadow: 0 0 5px #90d72d;
}

/* ---------- SEÇÕES PRINCIPAIS ---------- */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

section {
    margin-bottom: 50px;
}

.banner {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 30px #00bfff;
    animation: fadeZoom 6s ease-in-out infinite alternate;
}

@keyframes fadeZoom {
    from {
        transform: scale(1);
        opacity: 0.9;
    }

    to {
        transform: scale(1.03);
        opacity: 1;
    }
}

.highlight {
    text-align: center;
    color: #90d72d;
    font-size: 1.3em;
    margin-top: 20px;
}

/* ---------- SERVIÇOS ---------- */
.services ul {
    list-style: none;
    padding: 0;
}

.services li {
    margin: 10px 0;
    padding-left: 15px;
    border-left: 3px solid #00bfff;
}

/* ---------- MISSÃO ---------- */
.mission p {
    margin: 8px 0;
}

/* ---------- CONTADOR ---------- */
.trust {
    text-align: center;
}

.counter-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.counter {
    background: rgba(0, 255, 204, 0.05);
    border: 1px solid #00bfff;
    border-radius: 10px;
    padding: 20px;
    width: 180px;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
}

.counter span {
    font-size: 2.3em;
    color: #00ffcc;
    display: block;
}

.counter p {
    color: #90d72d;
    margin-top: 5px;
}

/* ---------- CITAÇÕES ---------- */
.quote {
    text-align: center;
    font-style: italic;
    margin-top: 40px;
}

.quote blockquote {
    font-size: 1.2em;
    color: #fffafa;
    margin: 20px 0;
}

/* ---------- CONTATO ---------- */
.contact {
    text-align: center;
}

.contact .icon {
    margin-top: 10px;
    width: 60px;
}

.socials {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00ffcc;
    font-size: 1em;
    background: rgba(0, 255, 204, 0.05);
    padding: 8px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00ffcc;
    color: #000;
}

/* ---------- BOTÃO ACESSO ---------- */
.access {
    text-align: center;
    margin-top: 40px;
}

.button {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #00ffcc;
    border-radius: 25px;
    font-weight: bold;
    background: transparent;
    color: #00ffcc;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75px;
    width: 50px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.button:hover::after {
    left: 125%;
}

.button:hover {
    background-color: #00ffcc;
    color: #000;
    box-shadow: 0 0 20px #00ffcc;
}

/* ---------- RODAPÉ ---------- */
footer {
    text-align: center;
    padding: 40px 10px;
    border-top: 2px solid #00bfff;
    font-size: 0.9em;
    color: #ccc;
    background: #010a10;
}

/* ---------- RESPONSIVIDADE ---------- */
@media (max-width: 900px) {
    header h1 {
        font-size: 1.9em;
    }

    .logo {
        width: 70px;
    }

    .banner {
        max-height: 320px;
    }

    .counter {
        width: 150px;
        padding: 15px;
    }
}

@media (max-width: 600px) {
    header {
        padding: 30px 10px 15px;
    }

    header h1 {
        font-size: 1.5em;
    }

    .logo-container {
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        width: 60px;
    }

    .slogan {
        font-size: 0.9em;
        text-align: center;
        padding: 0 15px;
    }

    main {
        padding: 25px 15px;
    }

    .highlight {
        font-size: 1.1em;
    }

    .services li {
        font-size: 0.95em;
    }

    .counter-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .button {
        padding: 12px 25px;
        font-size: 0.95em;
    }

    .social-link {
        font-size: 0.9em;
    }
}