@import url("https://fonts.googleapis.com/css2?family=Poiret+One&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
  --bs-dark-rbg: #000 !important;
  --white: #ffffff;
  --gold: #ffdd55;
  --gold-dark: #ffcc00;
  --gold-extra-dark: #aa8800;
  --secondary-gray: #2b2b2b;
  --secondary-gray-dark: #1d1d1d;
}

.bg-dark {
  background-color: #000 !important;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow: overlay !important;
  overflow-x: hidden !important;
}

.navbar-brand {
  color: #e2e2e2;
  font-family: "Roboto", system-ui !important;
  font-weight: 300;
}

.navbar-brand-gold {
  color: #fff;
}

.navbar-brand-gold:hover {
  color: var(--gold-dark);
}

body {
  font-family: "Roboto", system-ui !important;
  background-color: #fff;
  color: #000;
  overflow: overlay !important;
  overflow-y: auto;
  overflow-x: hidden !important;
  box-sizing: border-box;
}

.logo {
  margin-bottom: 5px;
}

header {
  background-color: #fff;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav ul li a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

a {
  transition: all 0.5s;
  color: #000;
  text-decoration: none;
}

.hero {
  margin-top: 50px;
  background-image: url("./assets/images/lawyers-hero.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 5px;
}

.hero-content {
  max-width: 600px;
  margin: auto;
  text-align: center;
  padding: 50px 0px;
}

.social-icons a {
  margin: 0 9px;
  font-size: 24px;
  color: #000;
  text-decoration: none;
}

.social-icons a:hover {
  color: var(--gold-extra-dark); /* Cambia el color en hover */
}

.footer-icons a {
  margin: 0 9px;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
}

.footer-icons a:hover {
  color: var(--gold-dark); /* Cambia el color en hover */
}

.content {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

a:hover {
  text-decoration: none !important;
  color: rgb(214, 214, 214);
}

.hero-img {
  width: 100vw;
  height: 400px;
}

.people-content {
  display: flex;
  background-color: #fff;
  padding-left: 10px;
  padding-right: 10px;

  .card {
    width: 98%;
  }

  .card-body {
    transition: all 05s;
  }
}

.card {
  transition: all 0.5s;
}

.card:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.people-about {
  padding-bottom: 50px;
}

.servicos-section {
  background-color: #000;
  padding-bottom: 80px;
  padding-top: 50px;
}

.break-one {
  width: 100vw;
  height: 400px;
  background-image: url("./assets/images/divider-section-01.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

section {
  min-width: 100vw;
  padding: 50px 0px;
  text-align: center;
  box-sizing: border-box;
}

.features,
.pricing {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.feature,
.price-card {
  min-width: 300px;
  max-width: 350px;
  padding: 20px;
  color: #fff;
  background-color: var(--secondary-gray);
  border-radius: 8px;
  transition: all 0.5s;
}

.feature:hover {
  background-color: var(--secondary-gray-dark);
}

@media screen and (max-width: 400px) {
  .hero {
    padding-top: 0px;
    padding-bottom: 0px;
    min-height: calc(100vh - 50px);
  }

  .hero-content {
    min-height: calc(100vh - 50px);
  }
}

.hide-web {
  display: none;
}

.hide-mobile {
  display: inherit;
}

@media screen and (max-width: 767px) {
  .contact-text {
    padding-left: 1.5rem;
  }

  .hide-web {
    display: inherit;
  }

  .hide-mobile {
    display: none;
  }

  .people-about {
    padding-bottom: 50px;
  }

  .web-navbar {
    display: none;
  }

  .people-content {
    flex-direction: column;
    background-color: #fff;

    .card {
      margin-bottom: 10px;
    }
  }

  .content {
    padding-right: 10px;
    padding-left: 10px;
  }

  .features,
  .pricing {
    flex-direction: column;
  }

  .feature,
  .price-card {
    width: 100%;
    max-width: 85vw;
    min-width: unset;
    padding: 20px;
    color: #fff;
    background-color: var(--secondary-gray);
    border-radius: 8px;
    margin-left: auto;
    margin-right: auto;
  }
}

.contact-section {
  background-color: #fff;
}

.depoimentos-section {
  background-color: var(--secondary-gray-dark);
}

footer {
  background-color: #111;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.cta {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffdd55;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 10px;
  transition: all 0.5s;
}

.cta:hover {
  background-color: #ffcc00;
  color: #2b2a2a;
}

.modal-link {
  a {
    color: #002bb8;
  }
}
