/* Estilos Base */
body {
    margin: 0;
    font-family: Calibri, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Expletus Sans', cursive;
    color: #ff6a40;
}

h1 {
    font-size: 30px;
    font-weight: 400;
    margin: 0 0 20px;
}

h2 {
    font-size: 22px;
    margin: 0 0 15px;
}

h3 {
    font-size: 18px;
    margin: 0 0 10px;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Cabeçalho */
#topo {
    width: 100%;
    border-top: 3px solid #ff6a40;
    background-image: linear-gradient(to right, #04180a, #ff6a40);
    position: relative;
    z-index: 1000;
}

#topo .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    min-height: 70px;
}

#logo {
    position: absolute;
    top: 13px;
    left: 0;
    z-index: 1;
}

#logo img {
    max-height: 50px;
    width: auto;
}

/* Menu */
#menu {
    display: flex;
}

#menu a {
    font-family: 'Expletus Sans', cursive;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
    color: white;
    display: inline-block;
    padding: 25px 15px;
    transition: 0.4s background-color;
}

#menu a:hover {
    background-color: #065fc4;
}

/* Banner */
#banner img {
    width: 100%;
    height: auto;
    display: block;
}

.bx-wrapper {
    border: none !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.bx-pager {
    display: none;
}

.bx-wrapper .bx-prev,
.bx-wrapper .bx-next {
    background-image: url(img/controls.png);
}

/* Depoimento */
#depoimento {
    width: 100%;
    min-height: 150px;
    text-align: center;
    background-image: url(img/fundo-destaque.jpg);
    color: white;
    padding: 25px;
    box-sizing: border-box;
    background-size: cover;
    margin: 50px 0;
    background-position: center;
}

#depoimento p {
    margin: 0;
    font-size: 30px;
    font-style: italic;
    font-family: 'Expletus Sans', cursive;
    padding-top: 30px;
    color: white;
    line-height: 1.4;
}

#depoimento span {
    display: inline-block;
    margin-top: 15px;
    font-weight: bold;
}

/* Conteúdo Principal */
#conteudo-principal {
    padding: 30px 0;
}

.subtitulo {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.img-left {
    float: left;
    margin: 0 30px 20px 0;
    max-width: 40%;
    border-radius: 8px;
}

.img-adv {
    margin: 30px 0;
    text-align: center;
}

.img-adv img {
    max-width: 100%;
    border-radius: 8px;
}

.img-adv figcaption {
    font-style: italic;
    margin-top: 10px;
    color: #666;
}

/* Botões */
.botao {
    display: inline-block;
    background-color: #ff6a40;
    text-decoration: none;
    padding: 10px 40px;
    color: white;
    border: 1px solid #ff6a40;
    border-radius: 3px;
    transition: all 0.3s ease;
    margin: 20px 0;
    text-align: center;
}

.botao:hover {
    background-color: #e05a30;
    color: white;
}

.botao i {
    margin-right: 8px;
    color: white;
    font-size: 16px;
}

/* Seções Específicas */
.diferenciais {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.diferenciais h2 {
    margin-bottom: 40px;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.diferencial {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.diferencial i {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Números */
.numeros-impressionantes {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.numeros-impressionantes h2 {
    color: white;
    margin-bottom: 40px;
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.numero-item {
    padding: 20px;
}

.numero {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    color: #ff6a40;
}

/* Áreas de Atuação */
.areas-atuacao {
    padding: 60px 0;
    text-align: center;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.area {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
}

.area ul {
    padding-left: 20px;
}

.area li {
    margin-bottom: 8px;
}

/* FAQ */
.faq {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.faq-item h3 {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2c3e50;
    padding: 10px 0;
}

.faq-item h3 i {
    font-size: 16px;
    transition: transform 0.3s;
}

.faq-item h3:hover {
    color: #ff6a40;
}

.faq-resposta {
    padding: 15px 0;
    display: none;
    color: #666;
}

.faq-resposta.active {
    display: block;
}

/* Rodapé */
#rodape {
    background-image: linear-gradient(to right, #0785b8, #ff6a40);
    padding: 30px 0;
    color: white;
    text-align: center;
}

#rodape .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#endereco {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    text-align: left;
}

#midias {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

#midias a {
    display: inline-block;
    margin: 0 10px;
}

i {
    font-size: 30px;
    color: white;
    opacity: 0.8;
    transition: 0.3s;
}

i:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.creditos {
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
}

/* Responsivo */
@media screen and (max-width: 1024px) {
    #menu {
        display: none;
        position: absolute;
        top: 70px;
        width: 60%;
        z-index: 10000;
        right: 0;
        background-image: linear-gradient(to bottom, #0785b8, #ff6a40);
        flex-direction: column;
    }
    
    #menu.active {
        display: flex;
    }
    
    #topo {
        min-height: 70px;
    }
    
    .barra {
        width: 30px;
        height: 3px;
        background-color: white;
        margin-bottom: 5px;
        border-radius: 5px;
        transition: 0.5s;
    }
    
    #btn-menu {
        position: absolute;
        top: 25px;
        right: 15px;
        cursor: pointer;
        z-index: 10001;
    }
    
    #menu a {
        display: block;
        border-top: 1px solid rgba(255,255,255,0.2);
        padding: 15px;
        text-align: center;
    }
    
    .x .barra:first-child {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .x .barra:nth-child(2) {
        opacity: 0;
    }
    
    .x .barra:last-child {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    #depoimento p {
        font-size: 20px;
        padding-top: 20px;
    }
    
    .img-left {
        float: none;
        max-width: 100%;
        margin: 0 0 20px 0;
    }
    
    .diferenciais-grid,
    .numeros-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 600px) {
    #logo img {
        max-width: 150px;
    }
    
    #depoimento p {
        font-size: 18px;
        padding-top: 10px;
    }
    
    #depoimento {
        min-height: auto;
        padding: 20px 15px;
    }
    
    .botao {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    #rodape .container {
        flex-direction: column;
        text-align: center;
    }
    
    #endereco {
        text-align: center;
    }
    
    .numero {
        font-size: 2.5rem;
    }


    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        background-color: #25d366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        z-index: 9999;
        transition: all 0.3s;
    }
    
    .whatsapp-float:hover {
        transform: scale(1.1);
        background-color: #128C7E;
    }
    
    .whatsapp-float img {
        width: 32px;
        height: 32px;
    }

/* Animação de pulsar */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 30px;
        right: 30px;
        font-size: 25px;
    }
}

}