@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
:root {
  --main-color: #1c3442;
  --dark: #1e3441;
  --darkest: #102532;
  --second-color: #9fada7;
  --light: #fcfeff;
  --lightest: #ddedf2;
  --mid: #425d6d;
  --mid-light: #88a7ad;
}

body {
  padding: 0;
  margin: 0;
}

/* == NavBar ==  */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--light);
  height: 90px;
  width: 100%;
}
.navbar .logo-completo {
  display: none;
}
.navbar img {
  margin-top: 5px;
  height: 80px;
  margin-left: 30px;
}
.navbar ul {
  display: flex;
  align-items: center;
}
.navbar ul:not(.navbar-mobile) li {
  margin-right: 40px;
  list-style-type: none;
  display: inline-block;
}
.navbar ul:not(.navbar-mobile) li:last-child {
  margin-right: 40px;
}
.navbar ul li a {
  display: block;
  color: var(--dark);
  text-align: center;
  text-decoration: none;
  font-size: 24px;
  position: relative;
}
.navbar ul li a::after {
  transition: all 0.5s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: ".";
  color: transparent;
  background: var(--light);
  height: 1px;
}
.navbar ul li a::before {
  transition: all 0.5s;
}
.navbar ul li a:hover::after {
  width: 100%;
}
.navbar .action {
  background-color: var(--light);
  color: var(--dark);
  padding: 1px 5px;
  border-bottom: 1px solid var(--dark);
}
.navbar .mobile-button {
  background-color: transparent;
  border: 0;
  display: none;
  cursor: pointer;
}
.navbar .mobile-button .mobile-icon {
  margin-right: 30px;
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.navbar .mobile-button .mobile-icon rect {
  fill: var(--darkest);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.navbar .mobile-button[aria-expanded=true] .top {
  transform: translateY(20px) rotate(45deg);
}
.navbar .mobile-button[aria-expanded=true] .middle {
  opacity: 0; /* Hide the middle rect */
}
.navbar .mobile-button[aria-expanded=true] .bottom {
  transform: translateY(-10px) rotate(-45deg);
}
.navbar .navbar-mobile {
  padding: 0;
  display: none;
  background-color: var(--dark);
  list-style-type: none;
  flex-direction: column;
  align-items: right;
  justify-content: space-between;
  position: absolute;
  top: 60px;
  right: 0;
  left: 0;
  width: 100%;
  height: 200px;
  padding: 20px 0px 20px 0px;
  z-index: 1000;
}
.navbar .navbar-mobile a {
  color: var(--light);
}
.navbar .navbar-mobile .action {
  background-color: transparent;
}

.hero {
  background-color: var(--light);
  width: 100%;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
}
.hero .hero-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero .hero-left h1 {
  font-weight: 800;
  font-size: 52px;
  color: var(--dark);
  margin-bottom: 0;
  margin-top: 0;
}
.hero .hero-left h2 {
  font-size: 39px;
  font-weight: lighter;
  color: var(--dark);
  margin-bottom: 20px;
  margin-top: 0;
}
.hero .hero-left a {
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
  background-color: var(--darkest);
  color: var(--lightest);
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 5px;
  font-family: "Raleway", sans-serif;
  border: 5px solid var(--darkest);
  margin-top: 20px;
}
.hero .hero-left a:hover {
  background-color: var(--light-color);
  color: var(--dark);
  border: 5px solid var(--dark);
}
.hero .hero-left .hero-areas {
  margin: 0;
  padding: 0;
}
.hero .hero-left .hero-areas li {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
  color: var(--main-color);
  font-size: 25px;
  display: block;
  margin: 10px 0;
}
.hero .hero-right {
  display: flex;
  flex-direction: column;
  height: 615px;
}
.hero .hero-right .hero-image-shadow {
  position: absolute;
  background-color: var(--mid);
  width: 250px;
  height: 550px;
  margin-left: 100px;
  margin-top: 65px;
  border-radius: 30px 30px 0 0;
}
.hero .hero-right img {
  height: 100%;
  margin-left: 120px;
  padding: 0;
  z-index: 1000;
}

.about-office {
  background-color: var(--light);
  margin: 0px;
  padding: 30px 60px;
  width: 100%;
  box-sizing: border-box;
}
.about-office h1 {
  margin: 0;
  font-size: 48px;
  color: var(--mid);
}
.about-office .office-cards {
  margin-top: 30px;
  margin-bottom: 30px;
  display: grid;
  justify-content: center;
  align-content: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 5rem;
}
.about-office .office-cards .office-cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 12px;
  margin: 0px;
}
.about-office .office-cards .office-cards-container .card {
  margin: 0px;
  border-radius: 20px;
  padding: 20px 20px 5px 20px;
  background-color: var(--mid-light);
  width: 100%;
  height: 100%;
  min-width: 280px;
  font-size: 18px;
  text-align: left;
}
.about-office .office-cards .office-cards-container .card h3 {
  color: var(--darkest);
  padding: 0px;
  text-align: center;
  margin: 0px;
  width: 100%;
  font-size: 30px;
  margin-bottom: 20px;
}
.about-office .office-cards .office-cards-container .card::before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 30px;
  background-color: var(--mid);
  margin-left: -30px;
}
.about-office .office-cards .office-cards-container .card-text {
  color: var(--darkest);
  font-size: 25px;
  padding: 0px;
  margin: 0px;
}

.about-me {
  background-color: var(--mid-light);
  margin: 0px;
  padding: 30px 60px 0px 60px;
  width: 100%;
  box-sizing: border-box;
  display: inline-block;
  overflow: hidden;
}
.about-me h1 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  font-size: 48px;
  color: var(--dark);
  margin-bottom: 40px;
}
.about-me .about-me-content {
  display: flex;
  resize: none;
  overflow: hidden;
  width: 100%;
}
.about-me .about-me-content .about-me-image-shadow {
  position: absolute;
  background-color: var(--light);
  width: 280px;
  height: 410px;
  margin-left: 70px;
  margin-top: -10px;
  border-radius: 30px 30px 0 0;
}
.about-me .about-me-content img {
  z-index: 9999;
  max-height: 400px;
  margin: 0;
  margin-left: 10vh;
}
.about-me .about-me-content .about-me-right {
  margin: 0px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.about-me .about-me-content .about-me-right .about-me-text {
  font-size: 28px;
  color: var(--dark);
  overflow: hidden;
  max-width: 800px;
  max-height: 520px;
  resize: none;
  text-align: justify;
}
.about-me .about-me-content .about-me-right .about-me-text span {
  font-weight: bold;
}

.contact {
  background-color: var(--light);
  margin: 0;
  padding: 30px 60px 30px 60px;
  width: 100%;
  box-sizing: border-box;
  margin-top: -10px;
  color: var(--darkest);
}
.contact .contact-content {
  display: flex;
}
.contact h1 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  font-size: 44px;
  color: var(--mid-light);
}
.contact .contact-left {
  margin: 20px 20px 20px 20px;
  padding: 20px;
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 50%;
  height: -moz-fit-content;
  height: fit-content;
}
.contact .contact-left .contact-data {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 20px;
}
.contact .contact-left .contact-social-media {
  max-height: 40px;
  margin-top: 30px;
  padding-bottom: 30px;
  font-size: 20px;
}
.contact .contact-left .contact-social-media .whatsapp {
  margin: 20px 0px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  padding: 0px;
}
.contact .contact-left .contact-social-media .whatsapp .whatsapp-button {
  margin: 0px;
  background-color: var(--darkest);
  color: var(--lightest);
  text-decoration: none;
  padding: 5px 30px;
  margin: 0px;
  border-radius: 10px;
  width: 120px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-family: "Raleway", sans-serif;
}
.contact .contact-left .contact-social-media .whatsapp .whatsapp-button img {
  margin-right: 2px;
  max-height: 40px;
}
.contact .contact-left .contact-social-media .contact-social-media-icons {
  display: flex;
  margin-top: 20px;
}
.contact .contact-left .contact-social-media .contact-social-media-icons a img {
  max-height: 40px;
}
.contact .contact-left .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
  margin-right: 10px;
}
.contact .contact-right {
  box-sizing: border-box;
  padding: 20px 100px 20px 20px;
  width: 100%;
  display: block;
}
.contact .contact-right form {
  text-align: center;
  margin: 0px;
  padding: 0px;
}
.contact .contact-right form .success,
.contact .contact-right form .error {
  text-align: center;
}
.contact .contact-right form .success {
  color: var(--main-color);
  align-items: center;
  justify-content: center;
  width: 100%;
}
.contact .contact-right form .error {
  color: tomato;
  align-items: center;
}
.contact .contact-right form div {
  display: flex;
  justify-content: start;
  flex-direction: column;
  padding: 5px;
}
.contact .contact-right form label {
  display: block;
  font-size: 20px;
  text-align: left;
  clear: both;
  margin-right: 10px;
  min-width: 100px;
  line-height: 35px;
}
.contact .contact-right form input:not(#send),
.contact .contact-right form textarea {
  width: 100%;
  border: 1px solid var(--darkest);
  border-radius: 2px;
  padding: 10px;
}
.contact .contact-right form #send {
  color: var(--lightest);
  background-color: var(--darkest);
  padding: 10px 20px;
  margin: 0px;
  border-radius: 10px;
  width: 120px;
  font-weight: bold;
  margin-top: 20px;
  font-size: 16px;
  cursor: pointer;
}
.contact .contact-right form #send:disabled {
  cursor: not-allowed;
  background: #555b69;
}

footer {
  font-family: "Courier New", Courier, monospace;
  display: flex;
  background-color: var(--darkest);
  color: white;
  padding: 10px;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 1024px) {
  .navbar ul {
    display: none;
  }
  .navbar .mobile-button {
    display: block;
  }
  .navbar .logo-name {
    display: inline-block;
  }
  .navbar .logo-completo {
    display: none;
  }
  .hero .hero-left h1 {
    font-size: 45px;
    text-align: center;
  }
  .hero .hero-left h2 {
    font-size: 25px;
    text-align: center;
  }
  .hero .hero-left a {
    font-size: 25px;
  }
  .about-me .about-me-content {
    margin: 0;
    padding: 0;
    font-size: 26px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .about-me .about-me-content .about-me-image-shadow {
    width: 150px;
    margin-left: 10px;
    overflow: hidden;
    height: 260px;
  }
  .about-me .about-me-content img {
    width: 200px;
    margin-left: 20px;
  }
  .about-me .about-me-content .about-me-right .about-me-text {
    margin-left: 20px;
    margin-right: 0px;
    font-size: 20px;
  }
  .contact .contact-content .contact-left {
    min-width: 30%;
  }
}
@media only screen and (max-width: 768px) {
  .navbar ul {
    display: none;
  }
  .navbar .mobile-button {
    display: block;
    margin: 0;
  }
  .navbar .logo-name {
    display: none;
  }
  .navbar .logo {
    display: inline-block;
  }
  .hero {
    padding: 10px 0 0 0;
  }
  .hero .hero-left h1 {
    font-size: 50px;
    text-align: center;
  }
  .hero .hero-left h2 {
    font-size: 30px;
    text-align: center;
  }
  .hero .hero-left a {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .hero .hero-right {
    display: none;
  }
  .about-office {
    padding: 20px;
  }
  .about-office h1 {
    margin: 0;
    font-size: 30px;
  }
  .about-office .office-cards .office-cards-container .card {
    font-size: 16px;
  }
  .about-me {
    padding: 20px;
  }
  .about-me h1 {
    margin: 0 0 20px 0;
    font-size: 30px;
  }
  .about-me .about-me-image-shadow {
    display: none;
  }
  .about-me img {
    display: none;
  }
  .about-me .about-me-content .about-me-right .about-me-text {
    margin: 0;
    padding: 0;
    margin-left: 0px;
    margin-right: 0px;
    font-size: 22px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .contact {
    padding: 20px 50px 20px 20px;
  }
  .contact h1 {
    margin: 0 0 20px 0;
    font-size: 30px;
  }
  .contact .contact-content {
    font-size: 14px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .contact .contact-content .contact-right {
    padding: 0px;
  }
  .contact .contact-content .contact-right #contact-form input:not(#send),
  .contact .contact-content .contact-right #contact-form textarea {
    border: 1px solid var(--darkest);
    border-radius: 2px;
  }
  .contact .contact-content .contact-right #contact-form #send {
    margin-left: 40px;
  }
}/*# sourceMappingURL=style.css.map */