* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #fff;
    color: #041A1F;
    line-height: 1.2;
}

.footer{
     background-color: #fff;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:20px 50px;
    margin-top: 9px
}

.logo-text h2 {
    font-size: 12px;
    color: #555;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 40px;
}

.logo span {
    font-size: 12px;
    color: #555;
}

/* Menu Btn */
.menu-btn {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #023859;
    display: none;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    background: #f4f4f4;
    flex-direction: column;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
    transform: translateX(0);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #041A1F;
}

.mobile-menu a {
    text-decoration: none;
    color: #041A1F;
    padding: 10px 0;
    font-weight: 500;
    display: block;
    transition: background 0.3s ease;
}

.mobile-menu a:hover {
    /* background: rgba(2, 56, 89, 0.1); */
    text-decoration: underline;
    border-radius: 4px;
    margin-left: auto;
    padding: 10px 4px;

}

/* Hero */
.hero {
    padding: 60px 30px;
    background-image: url('../midia/~fundo2.jpg');
    background-size: 100%auto;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
}

.hero h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff
}

.hero p {
    font-size: 19px;
    margin-bottom: 39px;
    color: #fff;
}

/* Button */
.cta {
    background: #041A1F;
    ;
    color: #fff;
    border: 2px solid snow;
    padding: 14px 9px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 12px;
    justify-content: space-between;
}

.cta:hover {
    background: #fff;
    color: #041A1F;
    border-radius: 12px;
    border: 2px solid #041A1F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 56, 89, 0.2);
}

.cta:focus {
    outline: 2px solid #041A1F;
    outline-offset: 2px;
}

.cta1 {
    background: #041A1F;
    ;
    color: #fff;
    border: 4px solid snow;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 11px;
    display: flex;
    margin: 40px auto;
}

.cta1:hover {
    background: #fff;
    color: #041A1F;
    border-radius: 11px;
    border: 2px solid #041A1F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 56, 89, 0.2);
}

.cta1:focus {
    outline: 2px solid #041A1F;
    outline-offset: 2px;
}


/* Formulário de Contato */
.conteiner {
    width: 100%;
    max-width: 600px;
    margin: 40px auto;
    padding: 40px 30px;
    background: ghostwhite;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.conteiner form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.conteiner label {
    font-weight: 600;
    color: #041A1F;
    margin-bottom: 6px;
    display: block;
    font-size: 14px;
}

.conteiner input,
.conteiner textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    color: #041A1F;
    transition: all 0.3s ease;
    background: whitesmoke;
}

.conteiner input::placeholder,
.conteiner textarea::placeholder {
    color: #999;
}

.conteiner input:focus,
.conteiner textarea:focus {
    outline: none;
    border-color: #041A1F;
    box-shadow: 0 0 0 3px rgba(2, 56, 89, 0.1);
}

.conteiner button[type="submit"] {
    background: #041A1F;
    color: #fff;
    border: 2px solid #041A1F;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.conteiner button[type="submit"]:hover {
    background: #fff;
    color: #041A1F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 56, 89, 0.2);
}

.conteiner button[type="submit"]:focus {
    outline: 2px solid #041A1F;
    outline-offset: 2px;
}

.bnt whatsapp {
    background: #fff;
    color: #041A1F;

}

/*  grid de .project-card */

.projects {
    padding: 60px 8%;
}

.filters {
    text-align: center;
    margin-bottom: 40px;
}

.filter {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    background: #e0e0e0;
}

.filter.active {
    background: #041A1F;
    color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.project-card {
    background: whitesmoke;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    animation: fadeUp 0.6s ease;
}

.compare-container {
    position: relative;
    height: 230px;
}

.compare-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.compare-container .after {
    clip-path: inset(0 50% 0 0);
}

.slider {
    position: absolute;
    bottom: 15px;
    left: 10%;
    width: 80%;
    display: none;

}

.project-info {
    padding: 20px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* icones sociais */
.wrapper {
    display: inline-flex;
    list-style: none;
    height: 80px;
    width: 100%;
    padding-top: 50px;
    font-family: "Poppins", sans-serif;
}

.wrapper .icon {
    position: relative;
    background: rgba(102, 102, 102, 0.37);
    border-radius: 50%;
    margin: 8px;
    width: 40px;
    height: 40px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #fff;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background: #1877f2;
    color: #fff;
}

.wrapper .tiktok:hover,
.wrapper .tiktok:hover .tooltip,
.wrapper .tiktok:hover .tooltip::before {
    background: #16dff1;
    color: #fff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    background: #e4405f;
    color: #fff;
}


.wrapper .linkedin:hover,
.wrapper .linkedin:hover .tooltip,
.wrapper .linkedin:hover .tooltip::before {
    background:#0A66C2 ;
    color: #fff;
}

.faq-page .container { max-width: 920px; margin: 0 auto; padding: 40px 20px; }
.faq-header { text-align: center; margin-bottom: 30px; }
.faq-category { margin-top: 30px; margin-bottom: 12px; }
.faq-item { border-bottom: 1px solid #eee; padding: 10px 0; }
.faq-item summary { cursor: pointer; font-weight: 600; }
.faq-item p { margin: 10px 0 0; color: #555; line-height: 1.6; }
.faq-cta { display: flex; gap: 12px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }

.container2{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.header{
    background:white;
    border-bottom:1px solid #e2e8f0;
}

.nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:70px;
}

.logo{
    font-weight:700;
    font-size:20px;
    color:#041A1F;
}

nav a{
    margin:0 15px;
    text-decoration:none;
    color:#0F172A;
    font-weight:500;
}

.hero2{
    background:linear-gradient(rgba(15,23,42,.75),rgba(15,23,42,.75)),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e');
    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
    padding:120px 20px;
}

.hero2 h1{
    font-size:48px;
    margin-bottom:15px;
}

.hero2 p{
    font-size:18px;
    margin-bottom:30px;
}

.btn{
    padding:14px 26px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    display:inline-block;
}

.small{
    padding:10px 18px;
}

.primary{
    background:#041A1F;
    color:white;
}

.primary:hover{
    background:#041A1F;
}

.outline{
    border:2px solid white;
    color:white;
}

.services{
    padding:80px 0;
}

.section-title{
    text-align:center;
    font-size:34px;
    margin-bottom:50px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.service-card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card img{
    width:100%;
    height:210px;
    object-fit:cover;
}

.card-content{
    padding:22px;
}

.subtitle{
    font-size:12px;
    text-transform:uppercase;
    color:#64748b;
}

.card-content h3{
    margin:10px 0 15px;
}

.details-link{
    color:#3B82F6;
    text-decoration:none;
    font-weight:600;
}

.cta2{
    background:#1E40AF;
    color:white;
    text-align:center;
    padding:70px 20px;
}

.cta2 h2{
    font-size:32px;
    margin-bottom:10px;
}

.cta2 p{
    margin-bottom:25px;
}

 body{margin:1px;font-family:Arial, Helvetica, sans-serif;background:#f5f7fb}
    .content{min-height:70vh;padding:40px;text-align:center}

    .footer{
      background:#041A1F;
      color:#fff;
      padding:50px 20px 20px;
    }

.footer.legal2{
      font-size:14px;
      margin-bottom:30px;
      background: red;
    }

    .footer-container{
      max-width:1200px;
      margin:auto;
      display:grid;
      grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
      gap:30px;
    }

    .footer-column h3{
      margin-bottom:15px;
      font-size:18px;
      color:#9fd3ff;
    }

    .footer-column p,
    .footer-column a{
      font-size:14px;
      color:#e6eef6;
      text-decoration:none;
      display:block;
      margin-bottom:8px;
    }

    .footer-column a:hover{color:#ffffff}

    .cta-btn{
      background:#1e90ff;
      border:none;
      padding:10px 16px;
      border-radius:6px;
      color:#fff;
      cursor:pointer;
      margin-bottom:10px;
      display:inline-block;
    }

    .legal{
      border-top:1px solid rgba(255,255,255,0.2);
      margin-top:30px;
      padding-top:15px;
      font-size:13px;
      text-align:center;
      color:#c9d6e2;
    }

    .legal a{color:#9fd3ff;text-decoration:none}

.card {
  width: 450px;
  height: fit-content;
  background-color: white;
  box-shadow: 0px 187px 75px rgba(0, 0, 0, 0.01), 0px 105px 63px rgba(0, 0, 0, 0.05), 0px 47px 47px rgba(0, 0, 0, 0.09), 0px 12px 26px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
  border-radius: 17px 17px 27px 27px;
}

.title {
  width: 100%;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 20px;
  border-bottom: 1px solid #f1f1f1;
  font-weight: 700;
  font-size: 13px;
  color: #47484b;
}

.title::after {
  content: '';
  width: 8ch;
  height: 1px;
  position: absolute;
  bottom: -1px;
  background-color: #47484b;
}

.comments {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 20px;
  padding: 20px;
}

.comment-react {
  width: 35px;
  height: fit-content;
  display: grid;
  grid-template-columns: auto;
  margin: 0;
  background-color: #f1f1f1;
  border-radius: 5px;
}

.comment-react button {
  width: 35px;
  height: 35px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
  outline: none;
}

.comment-react button:after {
  content: '';
  width: 40px;
  height: 40px;
  position: absolute;
  left: -2.5px;
  top: -2.5px;
  background-color: #f5356e;
  border-radius: 50%;
  z-index: 0;
  transform: scale(0);
}

.comment-react button svg {
  position: relative;
  z-index: 9;
}

.comment-react button:hover:after {
  animation: ripple 0.6s ease-in-out forwards;
}

.comment-react button:hover svg {
  fill: #f5356e;
}

.comment-react button:hover svg path {
  stroke: #f5356e;
  fill: #f5356e;
}

.comment-react hr {
  width: 80%;
  height: 1px;
  background-color: #dfe1e6;
  margin: auto;
  border: 0;
}

.comment-react span {
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 13px;
  font-weight: 600;
  color: #707277;
}

.comment-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.comment-container .user {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
}

.comment-container .user .user-pic {
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f1f1;
  border-radius: 50%;
}

.comment-container .user .user-pic:after {
  content: '';
  width: 9px;
  height: 9px;
  position: absolute;
  right: 0px;
  bottom: 0px;
  border-radius: 50%;
  background-color: #0fc45a;
  border: 2px solid #ffffff;
}

.comment-container .user .user-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
}

.comment-container .user .user-info span {
  font-weight: 700;
  font-size: 12px;
  color: #47484b;
}

.comment-container .user .user-info p {
  font-weight: 600;
  font-size: 10px;
  color: #acaeb4;
}

.comment-container .comment-content {
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  color: #5f6064;
}

.text-box {
  width: 100%;
  height: fit-content;
  background-color: #f1f1f1;
  padding: 8px;
}

.text-box .box-container {
  background-color: #ffffff;
  border-radius: 8px 8px 21px 21px;
  padding: 8px;
}

.text-box textarea {
  width: 100%;
  height: 40px;
  resize: none;
  border: 0;
  border-radius: 6px;
  padding: 12px 12px 10px 12px;
  font-size: 13px;
  outline: none;
  caret-color: #0a84ff;
}

.text-box .formatting {
  display: grid;
  grid-template-columns: auto auto auto auto auto 1fr;
}

.text-box .formatting button {
  width: 30px;
  height: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 50%;
  border: 0;
  outline: none;
}

.text-box .formatting button:hover {
  background-color: #f1f1f1;
}

.text-box .formatting .send {
  width: 30px;
  height: 30px;
  background-color: #0a84ff;
  margin: 0 0 0 auto;
}

.text-box .formatting .send:hover {
  background-color: #026eda;
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* FAQ */
.faq{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;

}
.qa{border-top:1px solid var(--border)}
.qa:first-child{border-top:none}
.q{
  width:100%;
  text-align:left;
  background:#fff;
  border:0;
  padding:16px 16px;
  display:flex; align-items:center; justify-content:space-between;
  font-weight:700;
  cursor:pointer;
  font-size: 19px;
}
.a{
  display:none;
  padding:0 16px 16px;
  color:var(--muted);
  line-height:1.5;
  font-size:14px;
}
.qa.open .a{display:block}
.chev{transition:.15s transform}
.qa.open .chev{transform:rotate(180deg)}

* REVIEWS */
#reviews{padding-top:36px;} /* “embaixo do arrow” */
.reviews-shell{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:20px;
  box-shadow:var(--shadow);
  padding:18px;
  margin-top:-24px; /* leve overlap com o notch (opcional) */
}
.reviews-top{
  display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
  padding:8px 8px 14px;
  border-bottom:1px solid var(--border);
  margin-bottom:14px;
}
.rating{
  display:flex; gap:10px; align-items:center;
}
.stars{letter-spacing:1px; color:#f5b301; font-size:18px}
.rating small{color:var(--muted)}
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.review-card{
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
  background:#fff;
  min-height:150px;
}
.review-head{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  margin-bottom:10px;
}
.avatar{
  width:34px;height:34px;border-radius:50%;
  background:#dde7ef; display:inline-flex; align-items:center; justify-content:center;
  font-weight:700; color:#355;
}
.review-card p{margin:0; color:#243; line-height:1.45; font-size:14px}
.badge{font-size:12px; color:var(--muted)}

/* HOW IT WORKS */
.steps{grid-template-columns: repeat(3, 1fr)}
.step{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
}
.step .n{
  width:34px;height:34px;border-radius:10px;
  background:rgba(47,140,255,.12);
  color:#041A1F;
  display:flex; align-items:center; justify-content:center;
  font-weight:800; margin-bottom:10px;
}
.step h3{margin:0 0 6px; font-size:16px}
.step p{margin:0; color:var(--muted); line-height:1.45; font-size:14px}

/* Responsividade - Tablets */
@media (max-width: 768px) {
    .compare-container {
        height: 200px;
    }

    .header {
        padding: 15px;
    }

    .logo div {
        display: flex;
        flex-direction: column;
    }

    .logo strong {
        font-size: 14px;
    }

    .hero {
        padding: 40px 20px;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .cta {
        padding: 12px 25px;
        font-size: 14px;
    }

    .conteiner {
        padding: 30px 20px;
        margin: 30px 15px;
    }

    .conteiner input,
    .conteiner textarea {
        font-size: 16px;
    }

    .menu-btn {
        display: block;
    }

    .mobile-menu {
        width: 200px;
    }

}

/* Responsividade - Celulares Pequenos */
@media (max-width: 500px) {
    .compare-container {
        height: 160px;
    }

    .header {
        padding: 12px;
    }

    .logo img {
        width: 32px;
    }

    .logo strong {
        font-size: 12px;
    }

    .logo span {
        font-size: 10px;
    }

    .hero {
        padding: 30px 15px;
        min-height: 350px;
        background-size: cover;
    }

    .hero h1 {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }


    .conteiner {
        padding: 20px 15px;
        margin: 20px auto;
    }

    .conteiner input,
    .conteiner textarea {
        font-size: 16px;
    }

    .conteiner button[type="submit"] {
        padding: 12px 20px;
        font-size: 14px;
    }

    .cta {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        max-width: 250px;
    }

    .menu-btn {
        font-size: 20px;
        display: block;
    }

    .mobile-menu {
        width: 180px;
        padding: 15px;
    }
}

/* Responsividade - Desktop Grande */
@media (min-width: 769px) {
    .hero {
        padding: 80px 50px;
        min-height: 600px;
    }

    .hero h1 {
        font-size: 48px;
        margin-bottom: 25px;
    }

    .hero p {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .cta {
        padding: 18px 40px;
        font-size: 17px;
        transition: all 0.3s ease;
    }

    .mobile-menu {
        position: static;
        transform: none;
        display: flex;
        flex-direction: row;
        width: auto;
        height: auto;
        background: none;
        padding: 0;
        gap: 20px;
        box-shadow: none;
    }

    .close-btn {
        display: none;
    }

    .compare-container {
        height: 280px;
    }

    .compare-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

footer h1 {
    font-size: 12px;
    text-align: center;
    padding: 10px 0;
}