body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #0a0a0a;
    color: #f7f8fa;
}
header {
    background: #22223b;
    color: #fff;
    padding: 28px 0 16px 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(34,34,59,0.07);
}
header h1 {
    font-size: 2.2em;
    letter-spacing: 2px;
    margin: 0 0 8px 0;
    font-weight: 700;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 32px;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08em;
    letter-spacing: 1px;
    padding: 4px 0;
    transition: color 0.2s;
}
nav .nav-link.active,
nav .nav-link:hover {
    color: #4ea8de;
}
nav .nav-link.active::after {
    content: '';
    display: block;
    height: 2px;
    background: #4ea8de;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 2px;
}
.hero-img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(34,34,59,0.08);
}
.btn-saiba-mais {
    display: inline-block;
    margin-top: 18px;
    background: #4ea8de;
    color: #181820;
    padding: 12px 32px;
    border: none;
    border-radius: 24px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(78,168,222,0.10);
    cursor: pointer;
}
.btn-saiba-mais:hover {
    background: #232336;
    color: #4ea8de;
}
main {
    max-width: 950px;
    margin: 36px auto 90px auto;
    background: #232336;
    padding: 38px 32px;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(34,34,59,0.07);
    color: #f7f8fa;
}
section {
    margin-bottom: 48px;
    background: transparent;
}
.servicos-lista {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    justify-items: center;
    align-items: stretch;
    margin: 0 auto;
    max-width: 900px;
}
.servico {
    background: #0a0a0a;
    border-radius: 10px;
    box-shadow: 0 1px 4px #232336;
    padding: 24px 18px;
    text-align: center;
    width: 240px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    color: #f7f8fa;
}
.servico:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 4px 18px rgba(34,34,59,0.13);
}
.servico img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 2px solid #232336;
}
.servico h3 {
    color: #4ea8de;
    margin-bottom: 8px;
}
.quem-somos-conteudo {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.equipe-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(34,34,59,0.10);
    border: 3px solid #232336;
}
.quem-somos-conteudo ul {
    margin-top: 12px;
    padding-left: 18px;
}
.quem-somos-conteudo ul li {
    color: #f7f8fa;
}
form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
input, textarea {
    padding: 12px;
    border: 1px solid #4ea8de;
    border-radius: 6px;
    font-size: 1em;
    background: #232336;
    color: #f7f8fa;
}
button {
    background: #4ea8de;
    color: #181820;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: background 0.2s;
}
button:hover {
    background: #232336;
    color: #4ea8de;
}
.contato-container {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 900px;
}
.contato-esquerda {
    flex: 1;
    min-width: 280px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
}
.contato-titulo {
    font-size: 2.2em;
    font-weight: 700;
    color: #4ea8de;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.contato-subtitulo {
    font-size: 1.2em;
    color: #f7f8fa;
    margin-bottom: 40px;
    opacity: 0.9;
}
.contato-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contato-nav a {
    color: #f7f8fa;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s;
    display: block;
}
.contato-nav a:hover {
    background: #4ea8de;
    color: #0a0a0a;
    transform: translateX(8px);
}
.contato-direita {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 24px 0;
}
.contato-info {
    background: #0a0a0a;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px #232336;
}
.contato-info p {
    margin: 12px 0;
    line-height: 1.6;
    font-size: 1em;
}
.contato-redes {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}
.contato-redes a {
    display: inline-block;
    background: #4ea8de;
    color: #0a0a0a;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    font-size: 1.3em;
    transition: all 0.2s;
    text-decoration: none;
}
.contato-redes a:hover {
    background: #f7f8fa;
    color: #4ea8de;
    transform: scale(1.1);
}
footer {
    background: #0a0a0a;
    color: #f7f8fa;
    box-shadow: 0 -1px 0 #232336;
    position: static;
    padding: 0;
}
.footer-content {
    max-width: 950px;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
}
.footer-content.footer-light {
    max-width: 950px;
    margin: 0 auto;
    padding: 20px 0 10px 0;
    text-align: center;
    background: transparent;
}
.footer-social a, .footer-links a {
    color: #4ea8de;
    text-decoration: underline;
    margin: 0 4px;
    font-size: 1em;
}
.footer-social {
    margin-bottom: 8px;
}
.footer-links {
    margin-bottom: 8px;
}
@media (max-width: 1100px) {
    .servicos-lista {
        max-width: 700px;
        gap: 24px;
    }
}
@media (max-width: 900px) {
    main {
        padding: 18px 4vw;
    }
    .footer-content {
        padding: 20px 10px;
    }
    .header-container, main {
        padding: 0 10px;
    }
    .contato-container {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    .contato-esquerda, .contato-direita {
        min-width: 100%;
        max-width: 400px;
    }
    .servicos-lista {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 400px;
    }
}
@media (max-width: 700px) {
    .quem-somos-conteudo {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .equipe-img {
        width: 120px;
        height: 120px;
    }
    main {
        margin: 18px auto 90px auto;
    }
}
html {
    scroll-behavior: smooth;
}
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0a0a0a;
    box-shadow: 0 1px 0 #232336;
    z-index: 100;
}
.header-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 68px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}
.logo-text {
    font-size: 1.8em;
    font-weight: 700;
    color: #4ea8de;
    letter-spacing: 2px;
}
header nav ul {
    gap: 28px;
    margin: 0;
}
header nav a {
    color: #f7f8fa;
    font-weight: 400;
    font-size: 1.05em;
    letter-spacing: 1px;
    padding: 2px 0;
    border-bottom: 2px solid transparent;
    transition: border 0.2s, color 0.2s;
}
header nav .nav-link.active,
header nav .nav-link:hover {
    color: #4ea8de;
    border-bottom: 2px solid #4ea8de;
}
main {
    max-width: 950px;
    margin: 100px auto 90px auto;
    background: #232336;
    padding: 0 32px 38px 32px;
    border-radius: 0;
    box-shadow: none;
    color: #f7f8fa;
}
section {
    margin-bottom: 64px;
    padding-top: 16px;
}
.hero-img {
    border-radius: 8px;
    box-shadow: none;
    margin-bottom: 32px;
}
.btn-saiba-mais {
    background: #4ea8de;
    color: #181820;
    border-radius: 4px;
    font-size: 1em;
    font-weight: 500;
    padding: 12px 32px;
    box-shadow: none;
    border: none;
    text-transform: none;
    letter-spacing: 1px;
}
.btn-saiba-mais:hover {
    background: #232336;
    color: #4ea8de;
}
.servicos-lista {
    gap: 32px;
}
.servico img {
    border-radius: 6px;
    margin-bottom: 10px;
}
.servico h3 {
    color: #4ea8de;
    font-weight: 600;
    font-size: 1.1em;
}
.quem-somos-conteudo {
    gap: 32px;
}
.equipe-img {
    border-radius: 50%;
    box-shadow: none;
}
footer {
    background: #0a0a0a;
    color: #f7f8fa;
    box-shadow: 0 -1px 0 #232336;
    position: static;
    padding: 0;
}
.footer-content.footer-light {
    max-width: 950px;
    margin: 0 auto;
    padding: 20px 0 10px 0;
    text-align: center;
    background: transparent;
}
.footer-social a, .footer-links a {
    color: #4ea8de;
    text-decoration: underline;
    font-size: 0.98em;
    margin: 0 2px;
}
.footer-social {
    margin-bottom: 4px;
}
.footer-links {
    margin-bottom: 4px;
}
@media (max-width: 900px) {
    .header-container, main {
        padding: 0 10px;
    }
}
@media (max-width: 700px) {
    .header-container {
        flex-direction: column;
        height: auto;
        gap: 8px;
        padding: 10px 0;
    }
    .logo-img {
        height: 60px;
    }
    .logo-text {
        font-size: 1.4em;
    }
    main {
        margin: 90px auto 40px auto;
        padding: 0 4vw 24px 4vw;
    }
    .quem-somos-conteudo {
        flex-direction: column;
        gap: 16px;
    }
    .equipe-img {
        width: 120px;
        height: 120px;
    }
    .servicos-lista {
        flex-direction: column;
        gap: 18px;
    }
}
html {
    scroll-behavior: smooth;
}
.gradient-bg {
    background: linear-gradient(120deg, #232336 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.hero-content {
    flex: 1;
    z-index: 1;
}
.hero-title {
    font-size: 2.7em;
    font-weight: 700;
    margin-bottom: 18px;
    color: #4ea8de;
}
.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 28px;
    color: #f7f8fa;
}
.hero-illustration {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.hero-illustration i {
    color: #4ea8de;
    filter: drop-shadow(0 4px 24px #4ea8de44);
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}
.section-title {
    font-size: 2em;
    color: #4ea8de;
    margin-bottom: 32px;
    text-align: center;
}
.card-3d {
    transition: transform 0.3s cubic-bezier(.25,.8,.25,1), box-shadow 0.3s;
    box-shadow: 0 2px 12px #23233699;
    border: 1px solid #232336;
    background: #232336;
    border-radius: 12px;
    position: relative;
}
.card-3d:hover {
    transform: translateY(-10px) scale(1.04) rotateX(2deg);
    box-shadow: 0 8px 32px #4ea8de33;
    border-color: #4ea8de;
}
.servico-icon {
    font-size: 2.2em;
    color: #4ea8de;
    margin-bottom: 12px;
}
.quem-somos-z {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}
.quem-somos-img {
    flex: 1;
    min-width: 220px;
    display: flex;
    justify-content: center;
}
.quem-somos-texto {
    flex: 2;
    min-width: 260px;
}
.depoimentos-lista {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.depoimento {
    background: #0a0a0a;
    color: #f7f8fa;
    border-left: 4px solid #4ea8de;
    padding: 22px 28px;
    border-radius: 10px;
    font-style: italic;
    min-width: 220px;
    max-width: 340px;
    box-shadow: 0 2px 12px #23233644;
    transition: box-shadow 0.2s;
}
.depoimento:hover {
    box-shadow: 0 8px 32px #4ea8de33;
}
.depoimento span {
    display: block;
    margin-top: 12px;
    font-size: 0.98em;
    color: #4ea8de;
    font-style: normal;
}
.footer-social a {
    display: inline-block;
    background: #232336;
    color: #4ea8de;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    margin: 0 6px;
    font-size: 1.2em;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
}
.fade-in.show {
    opacity: 1;
    transform: none;
    animation: fadeInUp 1s forwards;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: none;
    }
}
.btn-whatsapp {
    display: inline-block;
    margin-top: 12px;
    background: #25d366;
    color: #181820;
    border-radius: 4px;
    font-size: 1em;
    font-weight: 500;
    padding: 12px 32px;
    box-shadow: none;
    border: none;
    text-transform: none;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-align: center;
    margin-left: 8px;
}
.btn-whatsapp i {
    margin-right: 8px;
}
.btn-whatsapp:hover {
    background: #128c7e;
    color: #fff;
    transform: scale(1.05);
}
.servico-icon {
    animation: bounce 2.2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.quem-somos-z {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1s, transform 1s;
}
.quem-somos-z.show {
    opacity: 1;
    transform: none;
}
.origem-logo-container {
    display: flex;
    align-items: center;
    gap: 48px;
    margin: 48px 0 32px 0;
    flex-wrap: wrap;
    justify-content: center;
}
.origem-logo-img {
    flex: 1 1 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 180px;
}
.logo-origem-img {
    max-width: 220px;
    width: 100%;
    border-radius: 18px;
    background: #181820;
    box-shadow: 0 4px 24px #23233699;
    border: 2px solid #232336;
    padding: 12px;
}
.origem-logo-texto {
    flex: 2 1 320px;
    min-width: 220px;
    color: #f7f8fa;
    font-size: 1.13em;
}
.origem-logo-texto ul {
    margin-top: 18px;
    padding-left: 20px;
}
.origem-logo-texto li {
    margin-bottom: 8px;
}
@media (max-width: 900px) {
    .origem-logo-container {
        flex-direction: column;
        gap: 24px;
        margin: 32px 0 18px 0;
    }
    .logo-origem-img {
        max-width: 160px;
    }
}
.btn-especialista {
    display: inline-block;
    background: #4ea8de;
    color: #0a0a0a !important;
    font-weight: 600;
    border-radius: 24px;
    padding: 8px 22px;
    margin-left: 12px;
    font-size: 1.08em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(78,168,222,0.10);
    border: none;
    cursor: pointer;
    vertical-align: middle;
}
.btn-especialista i {
    margin-right: 8px;
    font-size: 1.1em;
}
.btn-especialista:hover {
    background: #232336;
    color: #4ea8de !important;
    box-shadow: 0 4px 18px #4ea8de33;
}
.contato-titulo-contato {
    font-size: 2.2em;
    font-weight: 700;
    color: #4ea8de;
    margin-top: 100px;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: 2px;
} 