* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #0d1433;
}

/* Esconder scroll apenas em mobile */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }

  body {
    position: relative;
  }

  /* Esconder scrollbar em navegadores WebKit */
  body::-webkit-scrollbar {
    display: none;
  }

  /* Esconder scrollbar em Firefox */
  body {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: rgb(255, 255, 255);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 2px;
  background: linear-gradient(to right, #3498db, #0d1433);
}

section {
  padding: 80px 0;
}

/* Botões */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn i {
  margin-right: 8px;
  font-size: 1em;
}

.btn-primary {
  background: radial-gradient(circle at top, #0d1433, #000);
  color: white;
  border: 1px solid #4a6bff;
}

.btn-primary:hover {
  background: radial-gradient(circle at center, #171f55, #0d1433);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.btn-secondary {
  background: radial-gradient(circle at top, #0d1433, #000);
  color: white;
  border: 1px solid #4a6bff;
}

.btn-secondary:hover {
  background: radial-gradient(circle at center, #171f55, #0d1433);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-app {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  margin-right: 10px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-app i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.btn-app:hover {
  background-color: #555555;
  box-shadow: 0 0 15px rgba(0, 136, 255, 0.7);
}

.btn-app:hover:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  opacity: 0;
  animation: pulse-light 1.5s infinite;
}

@keyframes pulse-light {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Header */
header {
  background-color: rgba(0, 0, 0, 0.336);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.logo span {
  color: #3498db;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-weight: 600;
  color: #ffffff;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #3498db;
}

.menu-mobile {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fcfcfda6;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* Imagem padrão (desktop) */
.hero::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/img/capa.png") no-repeat center center/cover;
  z-index: -2;
}

/* Gradiente (comum a ambos) */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.374);
  z-index: -1;
}

.hero-content {
  width: 100%;
  padding-top: 400px;
  padding: 10 20px;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease;
}

.hero-buttons {
  animation: fadeIn 1.5s ease;
}

.hero-buttons .btn {
  margin: 0 10px;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
  .hero {
    height: 75vh;
    display: center;
  }

  /* Imagem específica para mobile */
  .hero::before {
    background-image: url("/img/capamob.png"); /* Altere para o caminho da sua imagem mobile */
  }

  .hero-content {
    padding-top: 220px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 100px;
    background-size: cover;
  }

  /* Ajustes adicionais para telas muito pequenas */
  .hero::before {
    background-position: top center; /* Ajuste o posicionamento se necessário */
  }

  .hero-content h1 {
    font-size: 1.5em.0rem; /* Reduzindo o tamanho do título para mobile */
  }

  .hero-content p {
    font-size: 1rem; /* Reduzindo o tamanho do parágrafo para mobile */
  }
}

/* Sobre Section */
.sobre-content {
  display: flex;
  align-items: center;
  gap: 50px;
}
.sobre {
  background: radial-gradient(circle at center, #0d1433, #000);
}

.sobre-text {
  flex: 1;
}

.sobre-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: rgb(255, 255, 255);
}

.sobre-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.sobre-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contabilidade Section */
.contabilidade {
  background: radial-gradient(circle at center, #0d1433, #000);
}

.contabilidade-content {
  display: center;
  gap: 50px;
}

.contabilidade-text {
  flex: 1;
}

.contabilidade-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: rgb(255, 255, 255);
}

.contabilidade-text h2 {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: rgb(255, 255, 255);
}

.contabilidade-text ul {
  margin-left: 20px;
  color: rgb(255, 255, 255);
}

.contabilidade-text ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.contabilidade-text ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #3498db;
  position: absolute;
  left: 0;
}

.graficos {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.grafico-container {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 250px;
}

/* App Contábil Section */
.app-contabil {
  background: radial-gradient(circle at center, #0d1433, #000);
  color: white;
}

.app-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.app-text {
  flex: 1;
}

.app-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.app-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.app-text ul {
  margin-bottom: 30px;
}

.app-text ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.app-text ul li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
}

.app-buttons {
  margin-top: 30px;
}

.app-image {
  position: relative;
  display: inline-block;
}

.app-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #0ff;
  z-index: -1;
  opacity: 0.3;
  filter: blur(60px);
}

.benefits-list {
  margin: 20px 0;
}

.benefits-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.benefits-list .icon {
  margin-right: 10px;
  font-size: 1.2em;
}

.result-highlight {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-left: 4px solid #3498db;
  margin: 20px 0;
  border-radius: 0 4px 4px 0;
  color: #ffffff;
}

.performance-grid {
  display: grid;
  gap: 20px;
}

.performance-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.performance-card h3 {
  color: #ffffff;
}

.performance-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 15px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5em;
  font-weight: bold;
  color: #3498db;
}

.stat-label {
  font-size: 0.9em;
  color: #cccccc;
}

.client-testimonial {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  font-style: italic;
}

.client-name {
  display: block;
  text-align: right;
  margin-top: 5px;
  font-weight: 500;
  color: #dddddd;
}

.client-results {
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
}

@media (min-width: 768px) {
  .performance-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Advocacia Section */
.advocacia {
  background: radial-gradient(circle at center, #0d1433, #000);
}

.advocacia-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.advocacia-image {
  width: 400px;
  height: 400px;
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advocacia-text {
  flex: 1;
}

.advocacia-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.advocacia-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #ffffff;
}

.advocacia-text ul {
  margin-left: 20px;
  color: #ffffff;
}

.advocacia-text ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.advocacia-text ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #008ffd;
  position: absolute;
  left: 0;
}

.advocacia-btn-container {
  margin-top: 30px;
  text-align: left;
}

.btn-advocacia {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background: linear-gradient(135deg, #008ffd 0%, #0065c7 100%);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 143, 253, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-advocacia i {
  margin-right: 10px;
  font-size: 1.1rem;
}

.btn-advocacia:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 143, 253, 0.4);
  background: linear-gradient(135deg, #0065c7 0%, #008ffd 100%);
}

.btn-advocacia::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.btn-advocacia:hover::after {
  left: 100%;
}

@media (max-width: 768px) {
  .advocacia-btn-container {
    text-align: center;
    width: 100%;
    padding: 20px;
  }

  .btn-advocacia {
    display: flex;
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
    padding: 14px 30px;
  }
}

/* PRO BONO SECTION */
.pro-bono-section {
  background: radial-gradient(circle at center, #0d1433, #000);
  color: #fff;
  padding: 60px 0;
}

.pro-bono-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.pro-bono-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  aspect-ratio: 7/9;
}

.pro-bono-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.pro-bono-image:hover img {
  transform: scale(1.03);
}

.pro-bono-text {
  flex: 1;
}

.pro-bono-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #fff;
}

.pro-bono-text p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.pro-bono-form-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pro-bono-form-container h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #fff;
}

.pro-bono-form .form-group {
  margin-bottom: 20px;
}

.pro-bono-form input,
.pro-bono-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.pro-bono-form textarea {
  min-height: 120px;
  resize: vertical;
}

.pro-bono-form input:focus,
.pro-bono-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px #4a90e2;
  background: #fff;
}

.btn-pro-bono {
  background: linear-gradient(135deg, #4a90e2 0%, #2a5cb0 100%);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 0.9rem;
}

.btn-pro-bono:hover {
  background: linear-gradient(135deg, #2a5cb0 0%, #4a90e2 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 92, 176, 0.4);
}

.form-success-message {
  display: none;
  text-align: center;
  padding: 20px;
  background: rgba(46, 125, 50, 0.2);
  border-radius: 8px;
  margin-top: 20px;
  animation: fadeIn 0.5s ease;
}

.form-success-message i {
  font-size: 3rem;
  color: #4caf50;
  margin-bottom: 15px;
}

.form-success-message p {
  font-size: 1rem;
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .pro-bono-content {
    flex-direction: column;
  }

  .pro-bono-form-container {
    padding: 20px;
  }
}

/* Clientes Section */
.clientes {
  background: radial-gradient(circle at center, #0d1433, #000);
  overflow: hidden;
}

.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  animation: scroll 30s linear infinite;
}

.slide {
  min-width: 200px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  transition: transform 0.3s ease;
}

.slide img:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-220px * 6));
  }
}

/* Contato Section */
.contato {
  background: radial-gradient(circle at center, #001, #000);
}
.contato-content {
  display: flex;
  gap: 50px;
}

.contato-form {
  flex: 1;
  background-color: rgba(7, 20, 80, 0.444);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 55px rgba(38, 0, 255, 0.273);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d40b0b2f;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

.contato-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 1.5rem;
  color: #3498db;
  margin-right: 15px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.google-map {
  width: 100%;
  height: 250px;
  margin-bottom: 10px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .google-map {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .google-map {
    height: 180px;
  }
}
.social-media {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.social-media a {
  width: 40px;
  height: 40px;
  background-color: #3498db63;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-media a:hover {
  transform: translateY(-5px);
  background-color: #0078f1;
}

/* Footer */
footer {
  background: #000;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer-logo span {
  color: #3498db;
}

.footer-links,
.footer-services {
  flex: 1;
  min-width: 200px;
}

.footer-links h3,
.footer-services h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-services h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #3498db;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
}

.footer-links ul li a:hover {
  color: #3498db;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 992px) {
  .sobre-content,
  .contabilidade-content,
  .app-content,
  .advocacia-content,
  .contato-content {
    flex-direction: column;
  }

  .app-content {
    flex-direction: column-reverse;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .menu-mobile {
    display: block;
  }

  .hero-buttons .btn {
    display: block;
    margin: 10px auto;
    width: 80%;
  }

  .footer-content {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .btn-ap

