/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f4f6f8;
    color: #222;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.main-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.logo img {
    height: 48px;
}
.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}
.nav-links a {
    color: #222;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.08rem;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border 0.2s, color 0.2s;
    letter-spacing: 0.5px;
}
.nav-links a:hover, .nav-links a.active {
    color: #009acc;
    border-bottom: 2px solid #009acc;
}

/* Hero/Banner */
.hero-banner {
    background: linear-gradient(120deg, #009acc 40%, #e67a00 100%);
    color: #fff;
    padding: 5rem 0 4rem 0;
    text-align: center;
}
.hero-content h1 {
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}
.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.2rem;
}
.btn-primary {
    background: #e67a00;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.9rem 2.2rem;
    font-size: 1.08rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
}
.btn-primary:hover {
    background: #009acc;
    color: #fff;
}

/* Sobre */
.sobre {
    background: #fff;
    padding: 4rem 0 3rem 0;
}
.sobre-flex {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.sobre-texto {
    flex: 2;
}
.sobre-texto h2 {
    color: #009acc;
    font-size: 2rem;
    margin-bottom: 1.2rem;
}
.sobre-texto p {
    margin-bottom: 1.2rem;
    color: #444;
}
.sobre-lista {
    list-style: none;
    margin-top: 1rem;
}
.sobre-lista li {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #e67a00;
    font-size: 1.08rem;
}
.sobre-img {
    flex: 1;
    min-width: 260px;
    text-align: right;
}
.sobre-img img {
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Serviços */
.servicos {
    background: #f4f6f8;
    padding: 4rem 0 3rem 0;
}
.servicos h2 {
    color: #009acc;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}
.servicos-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.servico-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    flex: 1 1 240px;
    min-width: 240px;
    max-width: 300px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.servico-card:hover {
    box-shadow: 0 6px 24px rgba(0,156,204,0.10);
    transform: translateY(-6px) scale(1.03);
}
.servico-icone {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.servico-card h3 {
    color: #e67a00;
    margin-bottom: 0.7rem;
    font-size: 1.15rem;
    font-weight: 700;
}
.servico-card p {
    color: #444;
    font-size: 1rem;
}

/* Diferenciais */
.diferenciais {
    background: #fff;
    padding: 4rem 0 3rem 0;
}
.diferenciais h2 {
    color: #009acc;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}
.diferenciais-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.diferencial-card {
    background: #f4f6f8;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    flex: 1 1 240px;
    min-width: 240px;
    max-width: 320px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.diferencial-card:hover {
    box-shadow: 0 6px 24px rgba(201,124,3,0.10);
    transform: translateY(-6px) scale(1.03);
}
.diferencial-card h3 {
    color: #e67a00;
    margin-bottom: 0.7rem;
    font-size: 1.15rem;
    font-weight: 700;
}
.diferencial-card p {
    color: #444;
    font-size: 1rem;
}

/* Depoimentos */
.depoimentos {
    background: #f4f6f8;
    padding: 4rem 0 3rem 0;
}
.depoimentos h2 {
    color: #009acc;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}
.depoimentos-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.depoimento-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    flex: 1 1 240px;
    min-width: 240px;
    max-width: 320px;
    text-align: center;
    font-style: italic;
    transition: box-shadow 0.2s, transform 0.2s;
}
.depoimento-card:hover {
    box-shadow: 0 6px 24px rgba(0,156,204,0.10);
    transform: translateY(-6px) scale(1.03);
}
.depoimento-card span {
    display: block;
    margin-top: 1rem;
    color: #e67a00;
    font-style: normal;
    font-weight: 600;
}

/* Clientes */
.clientes {
    background: #fff;
    padding: 4rem 0 3rem 0;
}
.clientes h2 {
    color: #009acc;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}
.clientes-logos {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.clientes-logos img {
    background: #f4f6f8;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 0.7rem 1.5rem;
    height: 60px;
    width: 120px;
    object-fit: contain;
}

/* Contato */
.contato {
    background: #f4f6f8;
    padding: 4rem 0 3rem 0;
}
.contato-flex {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}
.contato-info {
    flex: 1;
    min-width: 260px;
}
.contato-info h2 {
    color: #009acc;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.contato-info ul {
    list-style: none;
    margin-top: 1rem;
    color: #444;
}
.contato-info ul li {
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
}
.contato-form {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    max-width: 400px;
}
.contato-form input, .contato-form textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
}
.contato-form button {
    margin-top: 0.5rem;
}

/* Newsletter */
.newsletter {
    background: #fff;
    padding: 3rem 0 2rem 0;
    border-top: 1px solid #e5e5e5;
}
.newsletter-flex {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}
.newsletter-text {
    flex: 2;
}
.newsletter-text h2 {
    color: #009acc;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.newsletter-form {
    flex: 1;
    min-width: 220px;
    display: flex;
    gap: 0.7rem;
}
.newsletter-form input {
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
}
.newsletter-form button {
    border-radius: 30px;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    padding: 2.5rem 0 0.5rem 0;
    border-radius: 0 0 8px 8px;
    margin-top: 2rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0 1rem 0;
}
.footer-section {
    flex: 1 1 200px;
    min-width: 200px;
}
.footer-section h3 {
    color: #e67a00;
    margin-bottom: 0.7rem;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin-bottom: 0.5rem;
}
.footer-section ul li a {
    color: #009acc;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-section ul li a:hover {
    color: #e67a00;
}
.footer-bottom {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 1rem 0 0.5rem 0;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 0 0 8px 8px;
    margin-top: 1rem;
}

/* Soluções/Áreas de Atuação */
.solucoes {
    background: #fff;
    padding: 4rem 0 3rem 0;
}
.solucoes h2 {
    color: #009acc;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}
.solucoes-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.solucao-card {
    background: #f4f6f8;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.solucao-card:hover {
    box-shadow: 0 6px 24px rgba(0,156,204,0.10);
    transform: translateY(-6px) scale(1.04);
}
.solucao-icone {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
}
.solucao-card h3 {
    color: #ffffff;
    margin-bottom: 0.7rem;
    font-size: 1.13rem;
    font-weight: 700;
}
.solucao-card p {
    color: #444;
    font-size: 1rem;
}

/* Cases de Sucesso (Carrossel) */
.cases {
    background: #f4f6f8;
    padding: 4rem 0 3rem 0;
}
.cases h2 {
    color: #009acc;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}
.cases-slide {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    min-height: 260px;
}
.case-slide-item {
    display: none;
    align-items: center;
    gap: 2rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 1.5rem;
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    opacity: 0;
    transition: opacity 0.4s, transform 0.4s;
}
.case-slide-item.active {
    display: flex;
    opacity: 1;
    position: relative;
    z-index: 2;
    animation: fadein 0.7s;
}
@keyframes fadein {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.case-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.case-info {
    flex: 1;
}
.case-info h3 {
    color: #e67a00;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}
.case-info p {
    color: #444;
    font-size: 1rem;
}
.cases-controls {
    position: absolute;
    bottom: 1.2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    z-index: 3;
    pointer-events: none;
}
.cases-controls button {
    background: #fff;
    color: #009acc;
    font-size: 2.2rem;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    cursor: pointer;
    pointer-events: all;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cases-controls button:hover {
    background: #009acc;
    color: #fff;
}

/* Equipe */
.equipe {
    background: #fff;
    padding: 4rem 0 3rem 0;
}
.equipe h2 {
    color: #009acc;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}
.equipe-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.equipe-card {
    background: #f4f6f8;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    flex: 1 1 180px;
    min-width: 180px;
    max-width: 220px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.equipe-card:hover {
    box-shadow: 0 6px 24px rgba(201,124,3,0.10);
    transform: translateY(-6px) scale(1.04);
}
.equipe-avatar {
    font-size: 2.7rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
}
.equipe-card h3 {
    color: #e67a00;
    margin-bottom: 0.3rem;
    font-size: 1.08rem;
    font-weight: 700;
}
.equipe-card span {
    color: #009acc;
    font-size: 0.98rem;
    font-weight: 500;
}

/* Footer Super Completo */
.footer-super {
    background: #222;
    color: #fff;
    padding: 3rem 0 0.5rem 0;
    border-radius: 0 0 12px 12px;
    margin-top: 2rem;
}
.footer-super-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1.5rem;
}
.footer-col {
    flex: 1 1 180px;
    min-width: 180px;
    max-width: 260px;
    margin-bottom: 1.5rem;
}
.footer-col h4 {
    color: #e67a00;
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
    font-weight: 700;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 0.5rem;
}
.footer-col ul li a {
    color: #009acc;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: #e67a00;
}
.footer-col.newsletter form {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.5rem;
}
.footer-col.newsletter input {
    padding: 0.7rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
}
.footer-col.newsletter button {
    border-radius: 30px;
}
.footer-col.mapa iframe {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    border: 1px solid #ccc;
}
.footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 0.7rem;
}
.footer-social a {
    color: #fff;
    font-size: 1.3rem;
    background: #009acc;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.footer-social a:hover {
    background: #e67a00;
    color: #fff;
}
.footer-bottom {
    background: #181818;
    color: #fff;
    text-align: center;
    padding: 1rem 0 0.5rem 0;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 0 0 12px 12px;
    margin-top: 1rem;
}

/* Responsividade */
@media (max-width: 1000px) {
    .sobre-flex, .servicos-cards, .diferenciais-cards, .depoimentos-cards, .clientes-logos, .newsletter-flex, .footer-content, .contato-flex, .solucoes-cards, .equipe-cards, .footer-super-flex {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    .header-flex {
        flex-direction: column;
        height: auto;
        gap: 1rem;
    }
    .cases-slide {
        min-height: 320px;
    }
}
@media (max-width: 600px) {
    .container {
        padding: 0 0.5rem;
    }
    .nav-links {
        gap: 1rem;
        font-size: 1rem;
    }
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .footer-content {
        padding: 1rem 0 0.5rem 0;
    }
    .solucao-card, .equipe-card {
        padding: 1.2rem 0.7rem;
    }
    .case-img {
        width: 80px;
        height: 80px;
    }
    .cases-slide {
        min-height: 200px;
    }
    .footer-super-flex {
        padding-bottom: 0.5rem;
    }
} 

/* Imagem dos cards de serviços */
.servico-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px #0001;
}

/* Imagem dos cards da equipe */
.equipe-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  display: block;
  box-shadow: 0 2px 8px #0002;
  border: 3px solid #e67a00;
}

/* Imagem de destaque do contato */
.contato-banner-img {
  width: 100%;
  max-width: 320px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0001;
}

/* Ajuste para o layout dos cards se necessário */
.servico-card, .equipe-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0001;
  padding: 1.2rem 1rem 1.5rem 1rem;
  margin-bottom: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.servico-card:hover, .equipe-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px #0002;
} 

/* Cards de Missão, Visão e Valores */
.mvv-cards {
  display: flex;
  gap: 2rem;
  margin: 2.5rem 0 2rem 0;
  flex-wrap: wrap;
  justify-content: center;
}
.mvv-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px #0001;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 340px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 5px solid #e67a00;
}
.mvv-card h3 {
  color: #009acc;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
}
.mvv-card ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
}
.mvv-card li {
  margin-bottom: 0.4rem;
  color: #444;
}
.mvv-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px #0002;
  border-top: 5px solid #009acc;
} 

/* Ícones dos cards de Missão, Visão, Valores e História */
.mvv-icon {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
  color: #009acc;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
} 

/* Cards de informações de contato */
.contato-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  justify-content: center;
}
.contato-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px #009acc22;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  flex: 1 1 200px;
  min-width: 180px;
  max-width: 260px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 5px solid #e67a00;
  margin-bottom: 1.5rem;
}
.contato-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px #009acc33;
  border-top: 5px solid #009acc;
}
.contato-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #009acc;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
}
.contato-card h3 {
  color: #e67a00;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
}
.contato-card p {
  color: #444;
  font-size: 1.05rem;
}
@media (max-width: 700px) {
  .contato-cards {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
}

/* Menu Hambúrguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
}
.menu-toggle .bar {
    width: 28px;
    height: 4px;
    background: #009acc;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
    display: block;
}
.menu-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        position: absolute;
        top: 80px;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 220px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.10);
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        align-items: flex-start;
        transform: translateX(100%);
        transition: transform 0.3s;
        z-index: 150;
        border-radius: 0 0 0 16px;
        min-height: 100vh;
        height: auto;
    }
    .nav-links.open {
        transform: translateX(0);
    }
    .header-flex {
        position: relative;
    }
} 