/* ==============================
        RESET / AJUSTES GERAIS
============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: #ffffff;

    background-color: #070b12;

    background-image:
        radial-gradient(circle at 50% 0%, rgba(0, 80, 190, 0.18), transparent 70%),
        radial-gradient(circle at 100% 100%, rgba(0, 120, 255, 0.10), transparent 70%),
        linear-gradient(135deg, rgba(0, 110, 255, 0.04) 1px, transparent 1px),
        linear-gradient(225deg, rgba(0, 110, 255, 0.03) 1px, transparent 1px);

    background-size:
        100% 100%,
        100% 100%,
        180px 180px,
        160px 160px;

    background-blend-mode: normal, normal, overlay, overlay;
}

a {
    text-decoration: none;
    color: inherit;
}

main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 20px 60px 20px;
}


/* ==============================
        CABEÇALHO FUTURISTA
============================== */

header {
    background: radial-gradient(circle at top left, #1a4fff33, #0b0f16 60%);
    border-bottom: 1px solid #1a4fff55;
    padding: 18px 40px;
    backdrop-filter: blur(6px);
    box-shadow:
        inset 0 -6px 20px rgba(26,79,255,0.25),
        0 4px 18px rgba(0,0,0,0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

header::after {
    content: "";
    position: absolute;
    bottom: 6px;
    right: 30px;
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, #1a4fff, transparent);
    box-shadow: 0 0 12px #1a4fff88;
    opacity: 0.75;
}

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

.logo-img {
    height: 70px;
    width: auto;
    filter:
        drop-shadow(0 0 10px rgba(26, 79, 255, 0.38))
        drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}

.logo-text {
    font-size: 1.28rem;
    font-weight: 600;
    color: #e7ecff;
    letter-spacing: 0.5px;
    text-shadow:
        0 0 8px #1a4fffaa,
        0 0 16px #1a4fff55;
}

header nav {
    display: flex;
    align-items: center;
    gap: 14px;
}

header nav a {
    margin: 0 6px;
    font-size: 1.05rem;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
}

header nav a:hover {
    color: #1a4fff;
    text-shadow: 0 0 8px #1a4fff88;
    background: rgba(10, 20, 50, 0.6);
    box-shadow: 0 0 10px rgba(26,79,255,0.35);
}

/* Menu mobile (botão hamburguer) */
.menu-mobile {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-mobile span {
    width: 22px;
    height: 2px;
    background: #e7ecff;
    transition: 0.3s;
}


/* ==============================
        HOME – SEÇÃO BEM-VINDO
============================== */

.welcome-section {
    width: 100%;
    margin: 40px auto 60px auto;
    text-align: center;
}

.welcome-text h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.welcome-text p {
    font-size: 1.2rem;
    color: #d4dcff;
    margin-bottom: 35px;
}


/* ==============================
        HOME – CARROSSEL
============================== */

.welcome-carousel {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid #1a4fff33;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 1.2s ease-in-out;
}

.slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    object-fit: cover;
}


/* ==============================
          HOME – SOBRE
============================== */

.about-strip {
    margin: 55px auto 70px auto;
    width: 100%;
    padding: 40px;

    background: linear-gradient(145deg, #0b132d, #091025);
    border-radius: 28px;
    border: 1px solid #1a4fff33;
    box-shadow:
        0 4px 14px rgba(0,0,0,0.65),
        0 0 18px rgba(26,79,255,0.20);

    text-align: center;
}

.about-strip h2 {
    font-size: 2rem;
    margin-bottom: 18px;
}

.about-strip p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #d4dcff;
}


/* ==============================
        SERVIÇOS – CARDS
============================== */

.services-section {
    margin: 60px auto;
    text-align: center;
    width: 100%;
}

.services-section h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.services-subtitle {
    color: #c9d2ff;
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.services-container {
    display: flex;
    gap: 22px;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 20px;
}

.service-card {
    width: 180px;
    height: 160px;
    background: #0d1330;
    border-radius: 24px;
    padding: 22px 12px;

    border: 1px solid #1a4fff33;
    box-shadow:
        0 3px 12px rgba(0,0,0,0.55),
        0 0 14px rgba(26,79,255,0.18);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transition: 0.25s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #1a4fff88;
    box-shadow:
        0 12px 22px rgba(0,0,0,0.85),
        0 0 22px rgba(26,79,255,0.28);
}

.service-icon {
    font-size: 2.4rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 8px rgba(26,79,255,0.35));
}

.service-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e5e5e5;
}


/* ==============================
     SERVIÇOS – SEÇÕES DETALHADAS
============================== */

/* Seções detalhadas começam escondidas */
.info-section {
    display: none;           /* Começa invisível */
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;

    width: 100%;
    margin: 60px auto;
    padding: 40px;

    background: linear-gradient(145deg, #0b132d, #091025);
    border-radius: 28px;
    border: 1px solid #1a4fff33;
    box-shadow:
        0 4px 14px rgba(0,0,0,0.6),
        0 0 18px rgba(26,79,255,0.20);

    flex-direction: row;
    gap: 40px;
    align-items: center;
}

/* Quando ativado */
.info-section.active {
    display: flex !important;
    opacity: 1;
    transform: translateY(0px);
}

.info-img img {
    width: 360px;
    border-radius: 20px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.6);
}

.info-text {
    max-width: 600px;
}

.info-text h2 {
    font-size: 2.1rem;
    margin-bottom: 15px;
}

.info-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #d4dcff;
}


/* ==============================
   HOME – DETALHE SERVIÇO
============================== */

.detalhe-servico {
    display: none;           /* invisível no início */
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;

    margin: 10px auto 10px auto; /* QUASE ENCOSTADO NO RODAPÉ */
    width: 100%;
    padding: 20px;

    background: linear-gradient(145deg, #0b132d, #091025);
    border-radius: 28px;
    border: 1px solid #1a4fff33;
    box-shadow:
        0 4px 14px rgba(0,0,0,0.65),
        0 0 18px rgba(91, 91, 94, 0.2);

    flex-direction: row;
    gap: 30px;
    align-items: center;
}

.detalhe-servico.active {
    display: flex !important;
    opacity: 1;
    transform: translateY(0);
}


/* ==============================
        RODAPÉ
============================== */

footer {
    border-top: 1px solid #1a4fff33;
    margin-top: 40px;
    background: #050810;
    padding: 18px 30px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.7);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: #c9d2ff;
}

.footer-company {
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #e7ecff;
}

.footer-cnpj strong {
    font-weight: 600;
}

.footer-phone a {
    color: #1a9fff;
}

.footer-phone a:hover {
    text-decoration: underline;
}


/* ==============================
      WHATSAPP FLOAT
============================== */

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 64px;      /* tamanho ideal */
    height: 64px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.06);
}

.whatsapp-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}


/* ==============================
        RESPONSIVO
============================== */

@media (max-width: 900px) {
    .info-section,
    .detalhe-servico {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .info-img img,
    .detalhe-servico .info-img img {
        width: 90%;
    }
}

@media (max-width: 768px) {

    header {
        flex-direction: row;
        gap: 15px;
    }

    header nav {
        position: absolute;
        top: 72px;
        right: 20px;
        background: #050815;
        padding: 10px 16px;
        border-radius: 20px;
        flex-direction: column;
        align-items: flex-start;
        border: 1px solid #1a4fff55;
        box-shadow: 0 8px 18px rgba(0,0,0,0.85);
        display: none;
    }

    header nav.active {
        display: flex;
    }

    .menu-mobile {
        display: flex;
    }

    .welcome-carousel {
        height: 180px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
}
