:root {
    --roxo: #6c3483;
    --roxo2: #6c60f1;
    --amarelo: #f1c40f;
    --cinza: #f8f8fa;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--cinza);
    color: #222;
    min-height: 100vh;
}

header {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 99;
}

header .container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:8px 1%;
}

.logo {
    height: 150px;
    transition: transform .3s;
}
.logo:hover {
    transform: scale(1.25) rotate(-2deg);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
    transition: all .3s;
}
nav ul li a {
    color: var(--roxo);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08em;
    padding: 6px 8px;
    border-radius: 6px;
    transition: background .2s, color .2s;
}
nav ul li a:hover {
    background: var(--amarelo);
    color: #222;
    box-shadow: 0 2px 8px #f1c40f33;
}

.btn-header {
    background: linear-gradient(90deg, var(--roxo), var(--amarelo));
    color: #fff;
    padding: 12px 28px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 24px;
    box-shadow: 0 3px 16px #6c348322;
    transition: background .2s, transform .2s;
}
.btn-header:hover {
    background: linear-gradient(90deg, var(--amarelo), var(--roxo));
    color: #fff;
    transform: scale(1.06);
}

.menu-mobile {
    display: none;
    font-size: 2.2em;
    color: var(--roxo);
    cursor: pointer;
    margin-left: 16px;
}

/* HERO */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(120deg, var(--roxo) 0%, var(--roxo2) 100%);
    color: #fff;
    padding: 88px 6% 56px 6%;
    min-height: 380px;
    box-sizing: border-box;
}
.hero-text {
    max-width: 54%;
    animation: fadeinleft 1.1s;
}
@keyframes fadeinleft {
    0% {opacity: 0; transform: translateX(-60px);}
    100% {opacity: 1; transform: none;}
}
.hero-text h1 {
    font-size: 2.7em;
    margin: 0 0 14px 0;
    line-height: 1.13;
}
.hero-text .destaque {
    color: var(--amarelo);
    text-shadow: 0 2px 8px #f1c40f33;
}
.hero-text p {
    font-size: 1.13em;
    margin-bottom: 28px;
    opacity: 0.92;
}
.hero-btns a {
    display: inline-block;
    margin-right: 16px;
    padding: 13px 32px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 18px #f1c40f22;
    transition: background .2s, color .2s, box-shadow .2s;
}
.btn-primario {
    background: var(--amarelo);
    color: #222;
}
.btn-primario:hover {
    background: #d4ac0d;
    color: #fff;
    box-shadow: 0 6px 24px #f1c40f66;
}
.btn-secundario {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}
.btn-secundario:hover {
    background: #fff;
    color: var(--roxo);
}
html {
  scroll-behavior: smooth;
}
.hero-img img {
    width: 550px;
    max-width: 90vw;
    border-radius: 16px;
    box-shadow: 0 12px 38px rgba(0,0,0,0.09);
    animation: fadeinright 1.2s;
}
@keyframes fadeinright {
    0% {opacity: 0; transform: translateX(60px);}
    100% {opacity: 1; transform: none;}
}

/* FOOTER */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 24px 0;
    margin-top: 38px;
    font-size: 1em;
    letter-spacing: 0.04em;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 3%;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 52px 2% 28px 2%;
    }
    .hero-text {
        max-width: 100%;
        margin-bottom: 36px;
    }
    .hero-img img {
        width: 85vw;
        max-width: 320px;
    }
    header .container {
        flex-direction: column;
        gap: 12px;
    }
    .btn-header {
        margin-left: 0;
        margin-top: 12px;
    }
}

/* Menu Mobile */
@media (max-width: 680px) {
    nav ul {
        display: none;
        position: absolute;
        top: 74px;
        right: 3%;
        background: #fff;
        flex-direction: column;
        width: 170px;
        gap: 0;
        box-shadow: 0 4px 28px #6c348355;
        border-radius: 0 0 12px 12px;
        overflow: hidden;
        z-index: 99;
        transition: display .3s;
    }
    nav ul.show {
        display: flex;
    }
    .menu-mobile {
        display: block;
    }
    header .container {
        flex-direction: row;
        gap: 0;
    }
    .logo {
        height: 44px;
    }
    .btn-header {
        padding: 9px 16px;
        font-size: 0.98em;
    }
}

/* SERVIÇOS */
.servicos {
    background: #fafbfc;
    padding: 70px 0 50px 0;
    min-height: 50vh;
}
.servicos h2 {
    font-size: 2.4em;
    color: #aa588e;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: 0.01em;
    font-weight: bold;
    animation: fadeinup 1.1s;
}
@keyframes fadeinup {
    0% {opacity: 0; transform: translateY(40px);}
    100% {opacity: 1; transform: none;}
}
.servicos .sub {
    color: #666;
    text-align: center;
    font-size: 1.14em;
    margin-bottom: 44px;
    opacity: 0.82;
}
.cards-servicos {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}
.card-servico {
    background: linear-gradient(115deg, #fff 78%, #ffe4f9 100%);
    border-radius: 18px;
    box-shadow: 0 2px 22px #c9b1c822;
    padding: 38px 22px 32px 22px;
    width: 310px;
    max-width: 96vw;
    text-align: center;
    transition: box-shadow .24s, transform .22s, border .18s;
    position: relative;
    top: 0;
    animation: fadeinup .9s;
}
.card-servico:hover {
    box-shadow: 0 14px 36px #6c348344;
    transform: translateY(-7px) scale(1.037);
    border: 1.7px solid #f1c40f44;
    z-index: 2;
}
.icon-servico {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ece8f8;
    font-size: 2.6em;
    box-shadow: 0 2px 8px #aaa2ff23;
    transition: background .2s;
}
.icon-servico.blue { color: #276ef1; background: #e8f1fd;}
.icon-servico.red { color: #e74c3c; background: #fae8e7;}
.icon-servico.yellow { color: #f1c40f; background: #fff7e2;}
.icon-servico.cyan { color: #00bcd4; background: #e1f7fb;}
.icon-servico.green { color: #27ae60; background: #e0faec;}
.icon-servico.purple { color: #8e44ad; background: #f1e7fa;}

.card-servico h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #2d2637;
    font-size: 1.18em;
    font-weight: bold;
}
.card-servico p {
    color: #444;
    font-size: 1em;
    opacity: .91;
    margin: 0;
}

/* RESPONSIVO */
@media (max-width: 1000px) {
    .cards-servicos {
        gap: 20px;
    }
    .card-servico {
        padding: 32px 14px 26px 14px;
        width: 94vw;
        max-width: 420px;
        margin: 0 auto;
    }
}
@media (max-width: 700px) {
    .cards-servicos {
        flex-direction: column;
        align-items: center;
    }
    .servicos {
        padding: 40px 0 26px 0;
    }
}
.porque-escolher {
    background: #fff;
    padding: 70px 0 50px 0;
    min-height: 370px;
}
.container-porque {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 54px;
    padding: 0 3%;
    justify-content: center;
}
.pq-foto img {
    width: 450px;
    max-width: 90vw;
    border-radius: 18px;
    box-shadow: 0 8px 38px #0001;
    display: block;
}

/* Bloco de benefícios */
.pq-beneficios {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 20px #d3b2cc22;
    padding: 40px 38px 32px 38px;
    max-width: 520px;
    min-width: 270px;
}
.pq-beneficios h2 {
    color: #6c3483;
    font-size: 2em;
    margin-bottom: 26px;
    font-weight: bold;
}
.pq-beneficios h2 span {
    color: #c93c6c;
}
.pq-beneficios ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}
.pq-beneficios li {
    font-size: 1.09em;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    color: #333;
    opacity: 0.91;
    position: relative;
    left: 0;
    transition: left .3s;
}
.pq-beneficios .check {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: linear-gradient(120deg, #39d353 60%, #00d280 100%);
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
}
.pq-beneficios .check:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* Botão Saiba Mais */
.btn-saiba-mais {
    margin-top: 16px;
    display: inline-block;
    padding: 11px 32px;
    border-radius: 30px;
    background: linear-gradient(90deg, #7a4af1 30%, #f42ea7 100%);
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 18px #7a4af155;
    transition: background .2s, transform .2s;
}
.btn-saiba-mais:hover {
    background: linear-gradient(90deg, #f42ea7 0%, #7a4af1 100%);
    transform: scale(1.07);
}

.sobre {
    background: #f6f5fa;
    padding: 68px 0 64px 0;
    min-height: 400px;
    position: relative;
}
.container-sobre {
    display: flex;
    max-width: 1240px;
    margin: 0 auto;
    align-items: center;
    gap: 56px;
    padding: 0 3%;
    justify-content: center;
    flex-wrap: wrap;
}
.sobre-texto {
    flex: 1.2;
    min-width: 270px;
    max-width: 580px;
    animation: fadeinleft 1.1s;
}
.sobre-texto h2 {
    color: #6c3483;
    font-size: 2.1em;
    font-weight: bold;
    margin-bottom: 18px;
}
.sobre-texto h2 span {
    color: #c93c6c;
}
.sobre-texto p {
    color: #363349;
    font-size: 1.13em;
    opacity: .96;
    line-height: 1.7;
    margin-bottom: 28px;
}
.btn-saiba-mais {
    padding: 11px 34px;
    border-radius: 30px;
    background: linear-gradient(90deg, #7a4af1 30%, #f42ea7 100%);
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 18px #7a4af155;
    transition: background .2s, transform .2s;
    display: inline-block;
}
.btn-saiba-mais:hover {
    background: linear-gradient(90deg, #f42ea7 0%, #7a4af1 100%);
    transform: scale(1.07);
}
.sobre-imgs {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    animation: fadeinright 1.1s;
}
.sobre-balao-img {
    background: #fff;
    border-radius: 18px 18px 40px 18px;
    box-shadow: 0 4px 24px #6c348324;
    padding: 20px 12px 12px 12px;
    width: 390px;
    max-width: 92vw;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
    animation: flutuaimg 2.2s infinite alternate ease-in-out;
}
.sobre-balao-img img {
    width: 94%;
    display: block;
    border-radius: 11px;
    box-shadow: 0 8px 24px #0001;
    margin: 0 auto;
}
@keyframes flutuaimg {
    0% { transform: translateY(0);}
    100% { transform: translateY(-8px);}
}
.sobre-balao-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}
.balao-destaque {
    background: linear-gradient(100deg, #f1c40f 20%, #f42ea7 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.01em;
    padding: 9px 20px 9px 18px;
    border-radius: 22px 22px 22px 6px;
    box-shadow: 0 2px 14px #f42ea726;
    margin-bottom: 4px;
    animation: fadeinup 1.3s;
}
@media (max-width: 950px) {
    .container-sobre {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }
    .sobre-balao-info {align-items: center;}
    .sobre-balao-img {margin: 0 auto;}
}


.slide-esquerda {opacity: 0; transform: translateX(-80px); transition: all 1s cubic-bezier(.29,.73,.52,1.2);}
.slide-direita  {opacity: 0; transform: translateX(80px); transition: all 1s cubic-bezier(.29,.73,.52,1.2);}
.slide-in       {opacity: 1!important; transform: translateX(0)!important;}


/* RESPONSIVO */
@media (max-width: 900px) {
    .container-porque {
        flex-direction: column;
        gap: 32px;
        padding: 0 2%;
        text-align: center;
    }
    .pq-foto img {
        margin-bottom: 18px;
    }
    .pq-beneficios {
        padding: 34px 12px 20px 12px;
        width: 100%;
        min-width: 0;
        max-width: 99vw;
    }
    .faixa-numeros {
        gap: 16px;
        flex-wrap: wrap;
        font-size: 1em;
    }
}
.faixa-numeros {
    background: linear-gradient(90deg, #6c3483 0%, #7a4af1 60%, #f42ea7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 46px 6% 38px 6%;
    color: #fff;
    font-size: 1.18em;
}
.numero {
    text-align: center;
    min-width: 120px;
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 1s .4s, transform 1.1s .4s;
}
.numero strong {
    display: block;
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 6px;
}
.numero span {
    opacity: 0.83;
    font-size: 0.98em;
    letter-spacing: .01em;
}
@media (max-width: 900px) {
    .faixa-numeros {
        gap: 16px;
        flex-wrap: wrap;
        font-size: 1em;
    }
}
.contato {
    background: #fafbfc;
    padding: 70px 0 40px 0;
    min-height: 350px;
}
.contato h2 {
    font-size: 2.4em;
    color: #aa588e;
    margin-bottom: 12px;
    text-align: center;
    font-weight: bold;
    animation: fadeinup 1.1s;
}
.contato .sub {
    color: #666;
    text-align: center;
    font-size: 1.14em;
    margin-bottom: 44px;
    opacity: 0.82;
}
.contato-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
}
.contato-card {
    background: linear-gradient(120deg, #fff 80%, #ffe4f9 100%);
    border-radius: 18px;
    box-shadow: 0 2px 22px #c9b1c822;
    padding: 38px 22px 32px 22px;
    width: 230px;
    max-width: 95vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow .26s, transform .22s, border .18s;
    position: relative;
    top: 0;
    animation: fadeinup .9s;
}
.contato-card:hover {
    box-shadow: 0 14px 36px #6c348344;
    transform: translateY(-7px) scale(1.037);
    border: 1.7px solid #f1c40f44;
    z-index: 2;
}
.contato-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ece8f8;
    font-size: 2.6em;
    box-shadow: 0 2px 8px #aaa2ff23;
    transition: background .2s;
}
.contato-icon.blue { color: #276ef1; background: #e8f1fd;}
.contato-icon.red { color: #e74c3c; background: #fae8e7;}
.contato-icon.green { color: #27ae60; background: #e0faec;}
.contato-card h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #2d2637;
    font-size: 1.16em;
    font-weight: bold;
}
.contato-card p {
    color: #444;
    font-size: 1em;
    opacity: .91;
    margin-bottom: 18px;
}
.contato-btn {
    padding: 10px 24px;
    border-radius: 22px;
    border: 1.8px solid #c93c6c;
    background: #fff;
    color: #c93c6c;
    font-weight: 600;
    text-decoration: none;
    margin-top: 12px;
    transition: background .19s, color .19s, border .19s;
    display: inline-block;
}
.contato-btn:hover {
    background: linear-gradient(90deg, #7a4af1 0%, #f42ea7 100%);
    color: #fff;
    border: 1.8px solid #fff;
}
.contato-icon.whatsapp {
    background: rgba(37,211,102,0.12);
    color: #25D366;
}
.titulo-secao {
    font-size: 2.5rem;
    color: #7038b0; /* Mesma cor roxa dos títulos principais */
    font-weight: 700;
    margin-bottom: 0.2em;
    letter-spacing: -1px;
    text-align: center;
}
.sub {
    color: #666;              /* Ou a cor padrão do seu site */
    font-size: 1.15rem;       /* Ou ajuste para seu padrão */
    margin-bottom: 2.5em;     /* Espaço após o subtítulo */
    text-align: center;       /* Centraliza igual o título */
    font-weight: 400;
}
/* Responsivo */
@media (max-width: 1000px) {
    .contato-cards { gap: 20px;}
    .contato-card { padding: 32px 14px 26px 14px; width: 94vw; max-width: 420px;}
}
@media (max-width: 700px) {
    .contato-cards { flex-direction: column; align-items: center;}
    .contato { padding: 40px 0 20px 0;}
}
.footer-site {
    background: #171925;
    color: #fff;
    padding: 0;
    margin-top: 0;
    font-size: 1em;
    border-top: 6px solid #7a4af1;
}
.rodape-flex {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding: 44px 3% 18px 3%;
    max-width: 1240px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.rodape-bloco {
    min-width: 160px;
    max-width: 240px;
}
.rodape-bloco h4 {
    font-size: 1.12em;
    color: #f1c40f;
    margin-bottom: 10px;
}
.rodape-bloco ul {
    padding: 0;
    list-style: none;
}
.rodape-bloco ul li {
    margin-bottom: 8px;
}
.rodape-bloco ul li a {
    color: #fff;
    opacity: .82;
    text-decoration: none;
    transition: color .18s, opacity .18s;
}
.rodape-bloco ul li a:hover {
    color: #f1c40f;
    opacity: 1;
}
.rodape-bloco img {
    filter: drop-shadow(0 3px 12px #2222);
    border-radius: 10px;
}
.rodape-copy {
    background: #10111a;
    color: #eee;
    text-align: center;
    padding: 18px 6px 8px 6px;
    font-size: 0.97em;
    letter-spacing: .01em;
    border-radius: 0 0 7px 7px;
}
@media (max-width: 900px) {
    .rodape-flex {
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
    }
    .rodape-bloco {max-width: none; min-width: 0;}
}

/* Modal central */

/* Fundo escurecido */
.modal-entrada-bg {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(20, 20, 30, 0.72);
  justify-content: center;
  align-items: center;
  transition: opacity 0.25s;
}

/* Modal central */
.modal-entrada {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 40px 0 rgba(50,50,80,.22);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 380px;
  width: 94%;
  position: relative;
  text-align: center;
  animation: modalShow .28s cubic-bezier(.45,1.2,.42,1) both;
}

@keyframes modalShow {
  from { transform: scale(0.92) translateY(30px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-titulo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #7038b0;
}

.modal-baloes {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.modal-balao {
  flex: 1 1 120px;
  background: #f4f2fc;
  border-radius: 1rem;
  padding: 1.2rem 1.1rem;
  font-size: 1.13rem;
  color: #7038b0;
  box-shadow: 0 2px 16px 0 rgba(112,56,176,.06);
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.2s, color 0.18s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-balao.tecnico {
  background: #e8f4fc;
  color: #276ef1;
  border: 2px solid #276ef1;
}
.modal-balao.cliente {
  background: #f4fbe8;
  color: #53ad19;
  border: 2px solid #53ad19;
}
.modal-balao:hover {
  box-shadow: 0 4px 28px 0 rgba(32,80,160,0.11);
  filter: brightness(1.05);
}

.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #bbb;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover {
  color: #7038b0;
}
.slide-esquerda {opacity: 0; transform: translateX(-80px); transition: all 1s cubic-bezier(.29,.73,.52,1.2);}
.slide-direita  {opacity: 0; transform: translateX(80px);  transition: all 1s cubic-bezier(.29,.73,.52,1.2);}
.slide-in       {opacity: 1!important; transform: translateX(0)!important;}
