/* --- Reset & Globals --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #666;
    line-height: 1.6;
    background-color: #fff;
    font-size: 14px;
}

h1, h2, h3, h4, h5 {
    color: #333;
    font-weight: 700;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 60px 0;
}

/* --- Top Bar --- */
.top-bar {
    background-color: #204379 ; /* Azul escuro */
    color: #fff;
    font-size: 12px;
    padding: 18px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.request{
    font-size: .8rem;
    background-color: #005b96;
    padding: 5px 25px;
    border-radius: 10px;
}

/* --- Navigation --- */
header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #0088cc; /* Azul da logo */
    line-height: 1;
}

.logo span {
    font-size: 14px;
    color: #555;
    font-weight: 300;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #555;
    font-size: 13px;
    font-weight: 500;
}

nav ul li a:hover {
    color: #0088cc;
}

/* --- Hero Section --- */
.hero {
    /* O SEGREDO ESTÁ AQUI: */
    /* 1. O gradiente vem PRIMEIRO (ele fica por cima) */
    /* 2. As cores precisam ter transparência (rgba) para ver a imagem no fundo */
    background-image: 
        linear-gradient(135deg, rgba(0, 91, 150, 0.85) 0%, rgba(0, 136, 204, 0.75) 100%),
        url('../images/banner.svg'); /* A imagem vem em SEGUNDO */

    background-size: cover;
    /* 50% horizontal (centro), 20% vertical (mais perto do topo) */
    background-position: 50% 70%;
    background-repeat: no-repeat;
    
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Simulando o padrão de fundo com CSS radial */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 10%);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-overlay h1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 32px;
    max-width: 800px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

/* --- Info Strip --- */
.info-strip {
    background-color: #204379; /* Azul petróleo/verde escuro da imagem */
    color: #fff;
    padding: 30px 0;
}

.info-grid {
    display: flex;
    justify-content: space-between;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
}

.info-item i {
    font-size: 25px;
    opacity: 0.8;
}

.info-item strong {
    display: block;
    font-size: 25px;
}

.info-item #small {
    display: block;
    opacity: 0.8;
}

.info-item span{
    font-size: 0.9rem;
}

/* --- Services Top --- */
.grid-3-col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.service-box {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    padding: 1.5rem;
    height: 12.5rem;
    border: 1px solid rgb(224, 223, 223);
    border-radius: 30px;
}

.service-box i {
    color: #0088cc;
    font-size: 20px;
    margin-top: 5px;
    background: #eef6fa;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-box h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 13px;
    color: #777;
}

.service-box strong {
    color: #474747;
}

.cta-box {
    text-align: right;
    margin-top: 20px;
    padding: 1rem;
    text-align: justify;
}

.btn-green {
    display: inline-block;
    background: linear-gradient(to bottom, #5cb85c, #4cae4c);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    margin-top: 15px;
}

.whatsapp-float-mock {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.whatsapp-float-mock span {
    background: #eee;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.whatsapp-float-mock i {
    font-size: 35px;
    color: #25D366;
}

/* --- Parallax Banner --- */
.parallax-banner {
    background-image: url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?q=80&w=1200&auto=format&fit=crop');
    height: 350px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.parallax-banner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
}

.parallax-banner h2 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* --- About Section --- */
.section-title {
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.section-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 40px;
    font-size: 13px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0; 
    
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text-box {
    background-color: #e6eef4; /* Fundo azul claro */
    padding: 40px;
    
}

.about-text-box h3 {
    color: #003366;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.features-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.features-list li {
    font-weight: 500;
    color: #555;
    font-size: 1.5rem;
}

.features-list li i {
    color: #f0ad4e; /* Amarelo estrela */
    margin-right: 5px;
    font-size: 1.5rem;
}

/* --- Icons Grid --- */
.icons-grid-section {
    background-color: #fff;
}

.center-text {
    text-align: center;
}

.icon-card {
    padding: 20px;
}

.icon-card i {
    font-size: 5rem;
    color: #204379;
    margin-bottom: 20px;
}

.icon-card h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

/* --- Info Footer Area --- */
.info-footer-area {
    background-color: #dcdcdc; /* Cinza do fundo */
    border-bottom: 5px solid #0d2c44; /* Barra azul na parte inferior */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.footer-text h4 {
    color: #444;
    font-size: 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-text h5 {
    font-size: 13px;
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.small-footer-img {
    margin-top: 20px;
    width: 150px;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* --- Testimonial & FAQ --- */
.faq-section {
    text-align: center;
    background-color: #f9f9f9;
}

.faq-title {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #333;
}
/* --- Testimonial Slider --- */
/* O container geral do slider */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto 50px; /* Margem inferior para afastar do FAQ */
    padding-bottom: 40px !important; /* Espaço para as bolinhas da paginação */
   
}

/* A caixa cinza do depoimento (antiga .testimonial) */
.testimonial-box {
    background: #f0f0f0;
    padding: 30px;
    border-radius: 4px;
    position: relative;
    margin: 0 auto; 
    text-align: center;
    cursor: grab; /* Mostra a mãozinha para arrastar */
    border-radius: 30px;
}

.testimonial-box .fa-quote-left {
    color: #1a5c74;
    font-size: 30px;
    margin-bottom: 15px;
    display: block; /* Garante que fique centralizado acima do texto */
}

.testimonial-box p {
    font-style: italic;
    font-size: 15px;
    color: #555;
}

.client-name {
    margin-top: 15px;
    font-weight: 700;
    font-size: 13px;
    color: #0d2c44; /* Azul escuro */
}

/* Estilizando as bolinhas de paginação do Swiper */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #1a5c74;
    opacity: 1;
}

/* A bolinha ativa fica azul */
.swiper-pagination-bullet-active {
    background: #0088cc !important; /* Azul vibrante do site */
    width: 25px; /* Fica um pouco mais larga para destacar */
    border-radius: 5px;
    transition: all 0.3s ease;
}

.stars {
    color: #f0ad4e;
    margin-top: 10px;
    font-size: 12px;
}

.faq-subtitle {
    margin-bottom: 20px;
    font-weight: 400;
    color: #555;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

details {
    background-color: #eee;
    margin-bottom: 5px;
    padding: 10px 15px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 13px;
    color: #555;
}

details summary {
    font-weight: 500;
    list-style: none; /* Remove seta padrão */
    position: relative;
    padding-right: 20px;
}

/* Criando seta customizada */
details summary::after {
    content: '\f0d7'; /* FontAwesome Chevron Down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    color: #0088cc;
}

details[open] summary::after {
    content: '\f0d8'; /* Chevron Up */
}

details p {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
    color: #777;
}

/* --- Bottom Footer --- */
footer {
    background-color: #1a1a1a;
    color: #666;
    padding: 20px 0;
    text-align: center;
    font-size: 11px;
}

footer strong {
    color: #888;
}

/* --- Fixed Whatsapp --- */
.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
}

.whatsapp-fixed:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.fa-whatsapp{
    font-size: 3rem;
}

/* --- Media Queries (Responsividade Básica) --- */
@media (max-width: 900px) {
    .grid-3-col, .info-grid, .about-grid, .footer-grid {
        grid-template-columns: 1fr;
        display: block;
    }
    
    .info-item {
        margin-bottom: 15px;
    }

    .service-col, .icon-card {
        margin-bottom: 30px;
    }

    .nav-content {
        flex-direction: column;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 15px;
    }
}



/* Responsividade */
@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        gap: 50px;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 30px;
    }
    
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}


/* --- RODAPÉ PROFISSIONAL --- */

.main-footer {
    background-color: #0d1530; /* Azul quase preto, muito elegante */
    color: #b3d9ff; /* Texto azul claro para leitura confortável */
    padding-top: 70px;
    font-size: 14px;
    border-top: 4px solid #0088cc; /* Linha de destaque no topo */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr; /* Colunas com larguras ajustadas */
    gap: 40px;
    padding-bottom: 50px;
}

/* Coluna 1: Marca */
.footer-logo {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}
.footer-logo span {
    font-size: 14px;
    font-weight: 300;
    color: #0088cc;
}
.footer-desc {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #8faecb;
}

/* Ícones Sociais */
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 50%;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}
.social-links a:hover {
    background: #0088cc;
    border-color: #0088cc;
    transform: translateY(-3px);
}

/* Títulos das Colunas */
.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
/* Tracinho embaixo do título */
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #0088cc;
}

/* Listas de Links */
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #b3d9ff;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a i {
    font-size: 10px;
    color: #005b96;
    transition: 0.3s;
}
.footer-links a:hover {
    color: #fff;
    padding-left: 5px; /* Efeito de mover para a direita */
}
.footer-links a:hover i {
    color: #0088cc;
}

/* Informações de Contato */
.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}
.contact-info i {
    color: #0088cc;
    font-size: 18px;
    margin-top: 3px;
}
.contact-info a {
    color: #b3d9ff;
}
.contact-info a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Barra Inferior (Copyright) */
.footer-bottom {
    background-color: #060b1b; /* Ainda mais escuro */
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #6c8bad;
}

.dev-credit strong {
    color: #fff;
}

/* Responsividade */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* 2 colunas no tablet */
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr; /* 1 coluna no celular */
        gap: 30px;
    }
    .bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}