/* ==============================
   RESET E BASE
   ============================== */
@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

/* ==============================
   BARREIRAS DE SEGURANÇA (CSS)
   ============================== */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Permitir seleção em campos de formulário */
input, textarea, select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Proteção de imagens */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}

/* Links dentro de imagens ainda funcionam */
a img {
    pointer-events: auto;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

section,
footer {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
}

h3 {
    font-size: 42px;
    color: #1868b7;
}

p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Subtítulo de seção */
.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 17px;
}

/* ==============================
   BOTÃO
   ============================== */
.btn {
    background: linear-gradient(135deg, #1868b7, #3580db);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(24, 104, 183, 0.3);
}

.btn.animate-btn {
    animation: animate-outline 1.5s ease-out infinite;
}

.btn:hover {
    background: linear-gradient(135deg, #3580db, #1868b7);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 104, 183, 0.4);
}

@keyframes animate-outline {
    from {
        outline: 0px solid #4f9bf98a;
    }
    to {
        outline: 15px solid #4f9bf900;
    }
}

/* ==============================
   HEADER E NAVEGAÇÃO
   ============================== */
header {
    background-color: #184b88;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 40, 80, 0.85) 0%, rgba(24, 75, 136, 0.7) 100%);
    z-index: 0;
}

header > .container {
    position: relative;
    z-index: 1;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
}

nav img {
    max-width: 140px;
    filter: brightness(1.1);
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul a {
    color: #ffffff;
    margin: 0 20px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    display: block;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav ul a:not(.btn)::after {
    content: "";
    background: linear-gradient(90deg, #1df7cb, #4af5d6);
    height: 3px;
    width: 0%;
    display: block;
    margin: 5px auto 0;
    transition: 0.3s;
    border-radius: 2px;
}

nav ul a:hover {
    color: #1df7cb;
}

nav ul a:hover::after {
    width: 100%;
}

nav .menu-icon {
    cursor: pointer;
    font-size: 25px;
    color: #ffffff;
    display: none;
}

nav .close-icon {
    display: none;
    font-size: 30px;
    color: #ffffff;
}

/* ==============================
   BANNER
   ============================== */
.banner {
    display: flex;
    justify-content: center;
}

.banner .banner-text {
    margin: 120px 0 100px;
    text-align: center;
    padding: 0 60px;
    max-width: 900px;
}

.banner .banner-text h3 {
    color: #1df7cb;
    margin-bottom: 15px;
    font-size: 48px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.banner .banner-text h1 {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.banner .banner-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin: 20px 0 35px;
    line-height: 1.7;
}

/* ==============================
   SEÇÃO FAÇA MAIS / DESTAQUE
   ============================== */
.faca-mais {
    background-color: #f8fbff;
}

.faca-mais .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.faca-mais .faca-mais-text {
    width: 55%;
}

.faca-mais .faca-mais-text h1 {
    font-size: 34px;
    color: #184b88;
    margin-bottom: 12px;
    font-weight: 700;
}

.faca-mais .faca-mais-text h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #3580db;
    font-weight: 600;
}

.faca-mais .faca-mais-text p {
    margin: 10px 0 25px 0;
    color: #555;
    font-size: 16px;
}

.faca-mais .faca-mais-img {
    width: 45%;
}

.faca-mais .faca-mais-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(24, 104, 183, 0.15);
    transition: transform 0.4s;
}

.faca-mais .faca-mais-img img:hover {
    transform: scale(1.02);
}

/* ==============================
   DEPOIMENTOS / CARDS GENÉRICOS
   ============================== */
.depoimento {
    background-color: #ffffff;
}

.depoimento h3 {
    text-align: center;
    margin-bottom: 10px;
}

.depoimento > .container > p {
    margin-bottom: 40px;
    text-align: center;
    font-size: 17px;
}

.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.depoimento .card-item,
.servicos .card-item {
    background: #ffffff;
    border: 1px solid #e8f0fe;
    margin: 0;
    border-radius: 16px;
    text-align: center;
    width: 280px;
    padding: 30px 20px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.depoimento .card-item:hover,
.servicos .card-item:hover {
    background: linear-gradient(135deg, #184b88, #3580db);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(24, 104, 183, 0.25);
}

.depoimento .card-item img,
.servicos .card-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 15px;
    border: 3px solid #e8f0fe;
    transition: 0.3s;
}

.depoimento .card-item:hover img,
.servicos .card-item:hover img {
    border-color: rgba(255,255,255,0.3);
}

.depoimento .card-item .name-user,
.servicos .card-item .name-user {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    color: #184b88;
    transition: 0.3s;
}

.depoimento .card-item .depoimento-user,
.servicos .card-item .depoimento-user {
    font-size: 14px;
    padding: 0 10px;
    transition: 0.3s;
    color: #666;
    line-height: 1.6;
}

.depoimento .card-item .estrelas,
.servicos .card-item .estrelas {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e8f0fe;
}

.depoimento .card-item .estrelas i,
.servicos .card-item .estrelas i {
    color: #ffc107;
    font-size: 18px;
    transition: 0.3s;
    margin: 0 2px;
}

.depoimento .card-item:hover .name-user,
.depoimento .card-item:hover .depoimento-user,
.servicos .card-item:hover .name-user,
.servicos .card-item:hover .depoimento-user {
    color: #ffffff;
}

.depoimento .card-item:hover .estrelas,
.servicos .card-item:hover .estrelas {
    border-top-color: rgba(255,255,255,0.2);
}

.depoimento .card-item:hover .estrelas i,
.servicos .card-item:hover .estrelas i {
    color: #ffc107;
}

/* ==============================
   CLIENTES
   ============================== */
.clientes {
    background-color: #f5f9ff;
}

.clientes h1 {
    text-align: center;
    color: #184b88;
    font-size: 26px;
    margin-bottom: 40px;
    font-weight: 600;
}

.clientes h1 img {
    max-width: 180px;
    vertical-align: middle;
}

.clientes .container > div {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.clientes .container > div img {
    max-width: 130px;
    margin: 20px;
    filter: grayscale(30%);
    opacity: 0.8;
    transition: all 0.3s;
}

.clientes .container > div img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ==============================
   PÁGINA SOBRE / A EMPRESA
   ============================== */
.sobre {
    background-color: #ffffff;
}

.sobre .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.sobre .sobre-text {
    width: 55%;
}

.sobre .sobre-text h3 {
    font-size: 30px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.sobre .sobre-text p {
    margin: 15px 0;
    color: #555;
}

.sobre .sobre-img {
    width: 45%;
}

.sobre .sobre-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* ==============================
   SERVIÇOS
   ============================== */
.servicos {
    padding: 80px 0;
}

.servicos:nth-child(even) {
    background-color: #f8fbff;
}

.servicos h3 {
    text-align: center;
    margin-bottom: 12px;
}

.servicos h2 {
    text-align: center;
    font-size: 17px;
    color: #666;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 10px;
    line-height: 1.7;
}

.servicos .container > p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
}

.servicos .container > .btn {
    display: block;
    text-align: center;
    max-width: 250px;
    margin: 0 auto 30px;
}

.servicos .rows-cards {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 25px;
}

.servicos .row-card-item {
    background: #ffffff;
    width: 340px;
    padding: 35px 25px;
    border-radius: 16px;
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid #e8f0fe;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.servicos .row-card-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1868b7, #1df7cb);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.servicos .row-card-item:hover::before {
    transform: scaleX(1);
}

.servicos .row-card-item:hover {
    background: linear-gradient(135deg, #184b88, #1868b7);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(24, 104, 183, 0.25);
    border-color: transparent;
}

.servicos .row-card-item:hover p {
    color: #ffffff;
}

.servicos .row-card-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    padding: 0;
    margin: 0 auto 20px;
    display: block;
    background-color: #f0f6ff;
    border: 3px solid #e8f0fe;
    transition: 0.4s;
}

.servicos .row-card-item:hover img {
    border-color: rgba(255,255,255,0.3);
    background-color: rgba(255,255,255,0.15);
}

.servicos .row-card-item p.nome-servico {
    font-weight: 700;
    font-size: 18px;
    color: #184b88;
    margin: 10px 0;
    transition: 0.3s;
}

.servicos .row-card-item p.descricao-servico {
    font-size: 14px;
    color: #666;
    transition: 0.3s;
    line-height: 1.7;
}

/* ==============================
   NOSSOS PRODUTOS (SEÇÃO ESPECIAL)
   ============================== */
.servicos .cards {
    gap: 25px;
}

.servicos .cards .card-item {
    width: 260px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}

.servicos .cards .card-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1868b7, #1df7cb);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.servicos .cards .card-item:hover::before {
    transform: scaleX(1);
}

/* ==============================
   DADOS / NÚMEROS
   ============================== */
.dados {
    background: linear-gradient(135deg, #f5f9ff, #e8f0fe);
    padding: 80px 0;
}

.dados .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.dados .dados-item {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    min-width: 200px;
}

.dados .dados-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(24, 104, 183, 0.15);
}

.dados .dados-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #e8f0fe;
}

.dados .dados-item p {
    font-size: 16px;
    color: #184b88;
}

.dados .dados-item p strong {
    font-size: 20px;
    display: block;
    margin-bottom: 5px;
    color: #184b88;
}

/* ==============================
   CONTATO
   ============================== */
.contato {
    padding: 80px 0;
}

.contato .comtatos {
    text-align: center;
}

.contato .comtatos .btn {
    margin: 10px;
}

.contato .comtatos h1 {
    color: #184b88;
    margin: 20px 0;
}

.contato .comtatos p a {
    color: #3580db;
    text-decoration: underline;
    transition: 0.3s;
}

.contato .comtatos p a:hover {
    color: #184b88;
}

.mapa {
    margin: 40px 0;
}

.mapa h1 {
    color: #184b88;
    margin-bottom: 25px;
    text-align: center;
    font-size: 32px;
}

.contato-info {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 40px;
}

.contato-info .left-side {
    width: 45%;
    padding: 35px;
    background: linear-gradient(135deg, #0e77f8, #184b88);
    border-radius: 16px;
    height: fit-content;
    box-shadow: 0 15px 40px rgba(14, 119, 248, 0.2);
}

.contato-info .left-side div {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contato-info .left-side div i {
    font-size: 22px;
    margin-right: 18px;
    color: #1df7cb;
    min-width: 30px;
    text-align: center;
}

.contato-info .left-side p {
    font-size: 15px;
    color: #ffffff;
}

.contato-info .right-side {
    width: 50%;
}

.contato-info .right-side input {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    height: 50px;
    padding: 15px 20px;
    border-radius: 10px;
    transition: 0.3s;
    border: 2px solid #eef2f7;
    color: #212121;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background-color: #fafbfd;
}

.contato-info .right-side input:focus,
.contato-info .right-side textarea:focus {
    border-color: #3580db;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(53, 128, 219, 0.1);
}

.contato-info .right-side textarea {
    border: 2px solid #eef2f7;
    color: #212121;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 15px 20px;
    width: 100%;
    transition: 0.3s;
    resize: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background-color: #fafbfd;
}

.contato-info .right-side button {
    border: none;
    width: 100%;
    font-size: 16px;
    padding: 16px;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
    background: linear-gradient(135deg, #1df7cb, #0ec9a0);
    text-align: center;
    padding: 50px 0;
}

.footer .link {
    margin-bottom: 15px;
}

.footer .link a {
    display: inline-block;
    margin: 0 8px;
}

.footer i {
    color: #184b88;
    font-size: 18px;
    background-color: #ffffff;
    padding: 12px;
    border-radius: 50%;
    transition: all 0.3s;
    width: 44px;
    height: 44px;
    line-height: 20px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.footer i:hover {
    background-color: #184b88;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.footer p {
    margin-top: 20px;
    color: #184b88;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* ==============================
   RESPONSIVO (TABLET)
   ============================== */
@media (max-width: 830px) {
    /* Menu mobile */
    .ul {
        position: fixed;
        top: 0;
        left: 0;
        background: linear-gradient(180deg, #0a2850, #184b88);
        width: 100%;
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        clip-path: circle(0% at 100% 0);
        transition: 0.7s;
        z-index: 999;
    }

    .ul.open {
        clip-path: circle(141.4% at 100% 0);
    }

    .ul a {
        margin: 12px 0;
        font-size: 16px;
    }

    nav .menu-icon {
        display: block;
    }

    nav .close-icon {
        display: block;
        position: absolute;
        top: 46px;
        right: 28px;
    }

    /* Banner */
    .banner .banner-text {
        padding: 0 20px;
        margin: 80px 0 60px;
    }

    .banner .banner-text h1 {
        font-size: 22px;
    }

    .banner .banner-text h3 {
        font-size: 34px;
    }

    /* Faça mais */
    .faca-mais .container {
        flex-direction: column;
        gap: 30px;
    }

    .faca-mais .faca-mais-text,
    .faca-mais .faca-mais-img {
        width: 100%;
    }

    /* Sobre */
    .sobre .container {
        flex-direction: column;
        gap: 30px;
    }

    .sobre .sobre-text,
    .sobre .sobre-img {
        width: 100%;
        padding: 0;
    }

    /* Cards */
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .depoimento .card-item,
    .servicos .card-item {
        width: 100%;
        max-width: 400px;
    }

    /* Serviços */
    .servicos .rows-cards {
        flex-direction: column;
        align-items: center;
    }

    .servicos .row-card-item {
        width: 100%;
        max-width: 400px;
    }

    /* Contato */
    .contato-info {
        flex-direction: column;
    }

    .contato-info .left-side,
    .contato-info .right-side {
        width: 100%;
    }

    /* Clientes */
    .clientes .container > div img {
        max-width: 90px;
    }

    h3 {
        font-size: 30px;
    }

    section, footer {
        padding: 60px 0;
    }
}

/* ==============================
   RESPONSIVO (MOBILE)
   ============================== */
@media (max-width: 480px) {
    .banner .banner-text h1 {
        font-size: 18px;
    }

    .banner .banner-text h3 {
        font-size: 28px;
    }

    .banner .banner-text {
        margin: 60px 0 50px;
    }

    .faca-mais .faca-mais-text h1 {
        font-size: 24px;
    }

    .faca-mais .faca-mais-text h3 {
        font-size: 18px;
    }

    h3 {
        font-size: 24px;
    }

    .servicos .row-card-item,
    .depoimento .card-item,
    .servicos .card-item {
        width: 100%;
    }

    .contato .comtatos .btn {
        display: block;
        margin: 10px auto;
        max-width: 300px;
    }

    section, footer {
        padding: 50px 0;
    }

    .servicos .container > .btn {
        max-width: 100%;
    }
}
