 /* RESET */
 
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }
 
 body {
     font-family: "Times New Roman", serif;
     background: #0b0b0b;
     color: #fff;
     overflow-x: hidden;
 }
 /* ================= NAV ================= */
 
 nav {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 90px;
     display: flex;
     align-items: center;
     padding: 0 60px;
     background: #0b0b0b;
     z-index: 9999;
     transition: .3s;
 }
 
 nav.scrolled {
     border-bottom: 1px solid #d4af37;
     box-shadow: 0 5px 25px rgba(0, 0, 0, .6);
 }
 
 nav img {
     height: 70px;
 }
 
 .menu {
     list-style: none;
     display: flex;
     gap: 40px;
     margin-left: auto;
 }
 
 .menu a {
     text-decoration: none;
     color: #d4af37;
     font-size: 18px;
     position: relative;
 }
 
 .menu a::after {
     content: "";
     position: absolute;
     width: 0;
     height: 2px;
     background: #d4af37;
     bottom: -6px;
     left: 0;
     transition: .3s;
 }
 
 .menu a:hover::after {
     width: 100%;
 }
 /* MOBILE */
 
 .menu-toggle {
     display: none;
     width: 30px;
     height: 22px;
     margin-left: 20px;
     cursor: pointer;
     position: relative;
 }
 
 .menu-toggle span {
     position: absolute;
     width: 100%;
     height: 3px;
     background: #d4af37;
 }
 
 .menu-toggle span:nth-child(1) {
     top: 0;
 }
 
 .menu-toggle span:nth-child(2) {
     top: 9px;
 }
 
 .menu-toggle span:nth-child(3) {
     bottom: 0;
 }
 
 @media(max-width:900px) {
     .menu-toggle {
         display: block;
         margin-left: auto;
     }
     .menu {
         position: fixed;
         top: 90px;
         right: -100%;
         width: 260px;
         height: 100vh;
         background: #0b0b0b;
         flex-direction: column;
         padding: 50px 30px;
         transition: .4s;
     }
     .menu.active {
         right: 0;
     }
 }
 /* ================= HERO ================= */
 
 .banner {
     margin-top: 90px;
     min-height: calc(100vh - 90px);
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 60px;
     padding: 60px;
 }
 
 .video-box {
     flex: 1;
     position: relative;
     display: flex;
     justify-content: center;
 }
 
 .video-box video {
     width: 100%;
     max-width: 700px;
     border-radius: 20px;
 }
 
 #soundBtn {
     position: absolute;
     bottom: 20px;
     right: 20px;
     background: rgba(0, 0, 0, .6);
     border: none;
     padding: 10px 14px;
     border-radius: 50%;
     cursor: pointer;
     color: #fff;
 }
 
 .content-box {
     flex: 1;
     max-width: 500px;
 }
 
 .content-box h1 {
     font-size: 48px;
     color: #d4af37;
     margin-bottom: 20px;
 }
 
 .content-box p {
     font-size: 18px;
     line-height: 1.6;
     margin-bottom: 30px;
 }
 
 .btn-whats {
     display: inline-block;
     padding: 14px 28px;
     background: #d4af37;
     color: #000;
     text-decoration: none;
     font-weight: bold;
     border-radius: 6px;
     animation: pulse 2s infinite;
 }
 
 @keyframes pulse {
     0% {
         transform: scale(1);
     }
     70% {
         transform: scale(1.05);
     }
     100% {
         transform: scale(1);
     }
 }
 
 @media(max-width:900px) {
     .banner {
         flex-direction: column;
         text-align: center;
     }
 }
 /* ================= SERVIÇOS ================= */
 
 .sec-servicos {
     position: relative;
     background: #d4af37;
     overflow: hidden;
     padding-bottom: 80px;
 }
 /* CAROUSEL FUNDO */
 
 .carousel-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     overflow: hidden;
     opacity: .08;
 }
 
 .carousel-track {
     display: flex;
     width: 200%;
     animation: slide 80s linear infinite;
 }
 
 .carousel-track img {
     height: 260px;
     margin: 40px;
     filter: grayscale(100%);
 }
 
 @keyframes slide {
     0% {
         transform: translateX(0);
     }
     100% {
         transform: translateX(-50%);
     }
 }
 /* OVERLAY ESCURO */
 
 .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, .75);
 }
 /* TÍTULO */
 
 .titulo-servicos {
     text-align: center;
     padding: 80px 20px 40px;
     position: relative;
     z-index: 2;
 }
 
 .titulo-servicos h1 {
     font-size: 48px;
     color: #d4af37;
 }
 
 .titulo-servicos h1::after {
     content: "";
     width: 80px;
     height: 3px;
     background: #d4af37;
     display: block;
     margin: 15px auto 0;
 }
 
 .titulo-servicos p {
     max-width: 700px;
     margin: auto;
     font-size: 18px;
     color: #ccc;
 }
 /* GRID */
 
 .servicos {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
     padding: 60px;
     position: relative;
     z-index: 2;
 }
 /* CARD */
 
 .traba {
     background: rgba(11, 11, 11, 0.5);
     padding: 25px;
     border-radius: 12px;
     text-align: center;
     cursor: pointer;
     transition: .3s;
     border: 1px solid transparent;
 }
 
 .traba:hover {
     transform: translateY(-6px);
     border-color: #d4af37;
 }
 
 .traba img {
     width: 120px;
     margin-bottom: 15px;
     border-radius: 20px;
 }
 
 .traba-title {
     color: #d4af37;
 }
 
 .traba-content {
     max-height: 0;
     overflow: hidden;
     transition: .5s;
     opacity: 0;
 }
 
 .traba.active .traba-content {
     max-height: 400px;
     margin-top: 15px;
     opacity: 1;
 }
 
 .btn-advogado {
     display: inline-block;
     margin-top: 15px;
     padding: 10px 18px;
     background: #d4af37;
     color: #000;
     text-decoration: none;
     border-radius: 6px;
     font-weight: bold;
 }
 /*faq*/
 /* ================= FAQ ================= */
 
 .faq-section {
     background: rgba(11, 11, 11, 0.85);
     padding: 100px 20px;
 }
 
 .faq-header {
     text-align: center;
     margin-bottom: 60px;
 }
 
 .faq-header h2 {
     font-size: 44px;
     color: #d4af37;
     margin-bottom: 15px;
     letter-spacing: 1px;
 }
 
 .faq-header h2::after {
     content: "";
     width: 80px;
     height: 3px;
     background: #d4af37;
     display: block;
     margin: 15px auto 0;
 }
 
 .faq-header p {
     max-width: 700px;
     margin: auto;
     font-size: 18px;
     color: #ccc;
     line-height: 1.7;
 }
 /* CONTAINER */
 
 .faq-container {
     max-width: 900px;
     margin: auto;
 }
 /* ITEM */
 
 .faq-item {
     border-bottom: 1px solid rgba(212, 175, 55, 0.25);
     padding: 25px 0;
     cursor: pointer;
     transition: .3s ease;
 }
 
 .faq-item:hover {
     background: rgba(212, 175, 55, 0.05);
 }
 /* PERGUNTA */
 
 .faq-question {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 19px;
     font-weight: bold;
     color: #fff;
     transition: .3s;
 }
 
 .faq-question span {
     color: #d4af37;
     font-size: 24px;
     transition: .4s ease;
 }
 /* RESPOSTA */
 
 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height .5s ease, margin .3s ease;
     color: #ccc;
     font-size: 17px;
     line-height: 1.7;
 }
 /* QUANDO ABERTO */
 
 .faq-item.active .faq-answer {
     max-height: 300px;
     margin-top: 18px;
 }
 
 .faq-item.active .faq-question {
     color: #d4af37;
 }
 
 .faq-item.active .faq-question span {
     transform: rotate(45deg);
 }
 /*modo de trabalho*/
 /* ================= MODO DE TRABALHO ================= */
 
 .modo-trabalho {
     position: relative;
     background-image: url("/trablaho.png");
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     padding: 120px 40px;
     text-align: center;
 }
 /* overlay escuro elegante */
 
 .modo-trabalho::before {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(11, 11, 11, 0.75);
 }
 
 .modo-trabalho * {
     position: relative;
 }
 /* HEADER */
 
 .modo-header h2 {
     font-size: 46px;
     color: #d4af37;
     margin-bottom: 10px;
 }
 
 .modo-header p {
     color: #ccc;
     max-width: 700px;
     margin: auto;
     margin-bottom: 90px;
     font-size: 18px;
 }
 /* CONTAINER */
 
 .modo-container {
     position: relative;
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
     gap: 25px;
     padding-bottom: 80px;
 }
 /* LINHA DOURADA */
 
 .modo-container::after {
     content: "";
     position: absolute;
     bottom: 20px;
     left: 0;
     width: 100%;
     height: 3px;
     background: #d4af37;
 }
 /* CARD */
 
 .modo-card {
     width: 230px;
     background: #0b0b0b;
     padding: 30px 20px;
     border-radius: 14px;
     border: 1px solid rgba(212, 175, 55, .2);
     transition: .4s;
 }
 
 .modo-card:hover {
     transform: translateY(-10px);
     border-color: #d4af37;
     box-shadow: 0 10px 30px rgba(0, 0, 0, .6);
 }
 /* NUMERO */
 
 .modo-numero {
     font-size: 26px;
     color: #d4af37;
     font-weight: bold;
     margin-bottom: 10px;
 }
 /* TITULO */
 
 .modo-card h3 {
     color: #fff;
     margin-bottom: 10px;
 }
 /* TEXTO */
 
 .modo-card p {
     color: #ccc;
     line-height: 1.6;
     font-size: 15px;
 }
 /* RESPONSIVO */
 
 @media(max-width:1000px) {
     .modo-container {
         flex-wrap: wrap;
         justify-content: center;
     }
     .modo-container::after {
         display: none;
     }
 }
 /* CONTATO*/
 
 #contato {
     padding: 140px 80px;
     background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, .12), transparent 40%), linear-gradient(135deg, #050505, #0b0b0b);
     text-align: center;
 }
 /* TITULO */
 
 #contato h2 {
     font-size: 48px;
     color: #d4af37;
     margin-bottom: 90px;
     letter-spacing: 3px;
 }
 /* GRID */
 
 .contato-container {
     display: grid;
     grid-template-columns: 1.2fr 1fr;
     gap: 60px;
     align-items: start;
 }
 /* ==========================
   FORMULÁRIO
========================== */
 
 .contato-form {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }
 
 .contato-form input,
 .contato-form textarea {
     background: #0b0b0b;
     border: 1px solid rgba(212, 175, 55, .25);
     padding: 16px;
     border-radius: 8px;
     color: #fff;
     font-size: 16px;
     outline: none;
     transition: .3s;
 }
 
 .contato-form textarea {
     min-height: 150px;
     resize: none;
 }
 /* foco elegante */
 
 .contato-form input:focus,
 .contato-form textarea:focus {
     border-color: #d4af37;
     box-shadow: 0 0 12px rgba(212, 175, 55, .35);
 }
 /* BOTÃO */
 
 .contato-form button {
     background: #d4af37;
     color: #000;
     padding: 18px;
     font-weight: bold;
     border: none;
     border-radius: 8px;
     cursor: pointer;
     transition: .3s;
 }
 
 .contato-form button:hover {
     background: #f3d97c;
     transform: translateY(-3px);
 }
 /* ==========================
   INFO CONTATO
========================== */
 
 .contato-info {
     background: #0b0b0b;
     padding: 40px;
     border-radius: 16px;
     border: 1px solid rgba(212, 175, 55, .2);
     text-align: left;
     transition: .4s;
 }
 
 .contato-info:hover {
     transform: translateY(-10px);
     box-shadow: 0 25px 60px rgba(0, 0, 0, .7);
 }
 
 .contato-info h3 {
     color: #d4af37;
     margin-bottom: 25px;
 }
 
 .contato-info p {
     color: #ccc;
     margin-bottom: 18px;
     line-height: 1.6;
 }
 /* ==========================
   BOTÃO WHATSAPP
========================== */
 
 .btn-whats {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     margin-top: 25px;
     padding: 16px;
     background: #25D366;
     color: #fff;
     text-decoration: none;
     font-weight: bold;
     border-radius: 8px;
     transition: .3s;
 }
 
 .btn-whats svg {
     width: 24px;
 }
 
 .btn-whats:hover {
     transform: scale(1.05);
     box-shadow: 0 0 25px rgba(37, 211, 102, .7);
 }
 /* ==========================
   RESPONSIVO
========================== */
 
 @media(max-width:900px) {
     #contato {
         padding: 100px 20px;
     }
     .contato-container {
         grid-template-columns: 1fr;
     }
     .contato-info {
         text-align: center;
     }
 }
 /*whatsapp flutuante*/
 /* ==========================
   WHATSAPP FLOAT
========================== */
 
 .whatsapp-float {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 65px;
     height: 65px;
     background: #25D366;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 999;
     box-shadow: 0 10px 25px rgba(0, 0, 0, .4);
     transition: .3s;
 }
 
 .whatsapp-float svg {
     width: 32px;
 }
 
 .whatsapp-float:hover {
     transform: scale(1.1);
 }
 /* ==========================
   CHAT BOX
========================== */
 
 .whatsapp-box {
     position: fixed;
     bottom: 110px;
     right: 30px;
     width: 260px;
     background: #fff;
     color: #000;
     border-radius: 12px;
     padding: 18px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
     opacity: 0;
     transform: translateY(20px);
     pointer-events: none;
     transition: .5s;
     z-index: 9999;
 }
 
 .whatsapp-box.show {
     opacity: 1;
     transform: translateY(0);
     pointer-events: auto;
     z-index: 9999;
 }
 
 .whatsapp-header {
     background: #25D366;
     color: #fff;
     padding: 10px;
     border-radius: 8px;
     margin-bottom: 10px;
     font-size: 14px;
     z-index: 9999
 }
 
 .whatsapp-header span {
     font-size: 12px;
     display: block;
     opacity: .8;
     z-index: 9999
 }
 
 .whatsapp-action {
     display: block;
     margin-top: 10px;
     background: #25D366;
     color: #fff;
     text-align: center;
     padding: 10px;
     border-radius: 6px;
     text-decoration: none;
     font-weight: bold;
     z-index: 9999
 }
 /*rodapé*/
 
 footer {
     background: #050505;
     border-top: 1px solid rgba(212, 175, 55, .25);
     padding: 35px 60px;
     margin-top: 80px;
 }
 /* CONTAINER */
 
 .footer-content {
     max-width: 1200px;
     margin: auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 15px;
 }
 /* TEXTO */
 
 .footer-content p {
     color: #aaa;
     font-size: 14px;
     letter-spacing: .5px;
 }
 /* LINK DESENVOLVEDOR */
 
 .footer-content a {
     color: #d4af37;
     text-decoration: none;
     font-weight: bold;
     position: relative;
     transition: .3s;
 }
 /* LINHA DOURADA */
 
 .footer-content a::after {
     content: "";
     position: absolute;
     width: 0;
     height: 2px;
     left: 0;
     bottom: -4px;
     background: #d4af37;
     transition: .3s;
 }
 
 .footer-content a:hover::after {
     width: 100%;
 }
 
 .footer-content a:hover {
     color: #f3d97c;
 }
 /* =========================
   RESPONSIVO
========================= */
 
 @media(max-width:768px) {
     footer {
         padding: 25px 20px;
         text-align: center;
     }
     .footer-content {
         flex-direction: column;
     }

 }
