@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans", sans-serif;
  line-height: 1.6;
  color: #6f7477;
  background-color: #f8f9fa;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}

.col {
  width: 33.33%;
}
@media (max-width: 768px) {
  .col {
    width: 100%;
  }
}

.col-50 {
  width: 50%;
}
@media (max-width: 768px) {
  .col-50 {
    width: 100%;
  }
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .container {
    padding: 0;
  }
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  font-weight: 600;
  text-align: center;
  font-size: 14px;
}
.btn.btn-primary {
  background-color: #005999;
  color: #fff;
}
.btn.btn-secondary {
  background-color: #fff;
  color: #6f7477;
}
.btn.btn-large {
  padding: 8px 16px;
  font-size: 1rem;
}

/* Header */
.main-header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
@media (max-width: 768px) {
  .main-header {
    padding: 1rem 1rem 0.5rem 1rem;
  }
}
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .main-header .container {
    display: flex;
    flex-direction: row;
    gap: 15px;
  }
}
.main-header .logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #005999;
}
.main-header .main-nav {
  font-size: 14px;
  font-weight: 500;
}
.main-header .main-nav #menuCheckbox {
  display: none;
}
.main-header .main-nav span {
  display: none;
}
.main-header .main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  font-style: Italic;
  font-size: 1rem;
  line-height: 120%;
  color: #005999;
}
@media (max-width: 768px) {
  .main-header .main-nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
}
@media (max-width: 768px) {
  .main-header .main-nav #menuCheckbox:checked ~ ul {
    display: flex;
  }
  .main-header .main-nav #menuCheckbox {
    display: block;
    position: absolute;
    top: 35px;
    right: 15px;
    width: 32px;
    height: 32px;
    margin: 0;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
  }
  .main-header .main-nav span {
    display: block;
    width: 25px;
    height: 3px;
    margin-bottom: 5px;
    position: relative;
    background: #005999;
    border-radius: 3px;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }
  .main-header .main-nav span:first-of-type {
    transform-origin: 0% 0%;
  }
  .main-header .main-nav span:nth-last-of-type(2) {
    transform-origin: 0% 100%;
  }
  .main-header .main-nav #menuCheckbox:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(2px, -3px);
  }
  .main-header .main-nav #menuCheckbox:checked ~ span:nth-of-type(2) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }
  .main-header .main-nav #menuCheckbox:checked ~ span:nth-of-type(3) {
    transform: rotate(-45deg) translate(4px, -7px);
  }
}

/* Sections Base */
section {
  padding: 60px 0;
}

/* Hero Section */
.hero-section {
  text-align: left;
  padding: 0;
  background-color: #005999;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: #008aed;
  background: radial-gradient(circle, rgb(0, 138, 237) 0%, rgb(0, 101, 173) 51%, rgb(0, 64, 132) 100%);
  background-position: right;
}
@media (max-width: 768px) {
  .hero-section {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.5rem 0 1.5rem;
    align-items: flex-start;
  }
}
.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 32px;
  line-height: 120%;
}
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 3rem;
  }
}
.hero-section .subtitle {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 32px;
}
.hero-section .hero-image {
  margin-bottom: -8px;
}
@media (max-width: 768px) {
  .hero-section .hero-image {
    margin-bottom: -8px;
    margin-top: 2rem;
    width: 78%;
  }
}

/* Features Section */
.boxes-section {
  background: linear-gradient(180deg, rgba(0, 89, 153, 0) 25.33%, rgba(0, 89, 153, 0.2) 100%);
}
@media (max-width: 768px) {
  .boxes-section {
    padding: 3.5rem 2rem;
  }
  .boxes-section .btn {
    margin-top: 1.5rem;
  }
}

.boxes-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.boxes-grid h2,
.boxes-grid h3,
.boxes-grid h4 {
  margin-bottom: 24px;
  font-size: 3rem;
  color: #005999;
  font-weight: 700;
  line-height: 120%;
}
.boxes-grid p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .boxes-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
  }
  .boxes-grid h2,
  .boxes-grid h3,
  .boxes-grid h4 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
  .boxes-grid p {
    margin: 0;
  }
  .boxes-grid .image {
    order: 0;
  }
  .boxes-grid .col-50 {
    order: 1;
  }
}

/* Features Section */
@media (max-width: 768px) {
  .features-section {
    padding: 0;
  }
}
.features-section h2 {
  margin-bottom: 50px;
  font-size: 2.5rem;
}
.features-section .icon {
  color: #009980;
  padding: 6px;
  background: rgba(0, 153, 128, 0.062745098);
  text-align: center;
  border-radius: 8px;
  max-width: 48px;
  max-height: 48px;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}
.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .features-section .features-grid {
    grid-template-columns: 1fr;
  }
}
.features-section .feature-card-wrapper {
  height: 9.5rem;
  position: relative;
  z-index: 1;
}
.features-section .feature-card-wrapper:hover {
  z-index: 10;
}
@media (max-width: 768px) {
  .features-section .feature-card-wrapper {
    height: auto;
  }
}
.features-section .feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 1rem;
  text-align: left;
  border: 1px solid rgba(0, 153, 128, 0.2);
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s ease-in-out;
}
.features-section .feature-card h3 {
  margin-bottom: 15px;
  color: #005999;
  max-width: 80%;
  line-height: 120%;
}
.features-section .feature-card p {
  opacity: 0;
  transition: 0.2s;
}
.features-section .feature-card ul {
  padding-left: 1rem;
  opacity: 0;
  transition: 0.2s;
}
.features-section .feature-card:hover {
  height: auto;
  min-height: 100%;
  border: 1px solid rgba(4, 136, 209, 0.5019607843);
  box-shadow: 0px 10px 65px 7px rgba(18, 56, 79, 0.4);
  border-radius: 1rem;
}
.features-section .feature-card:hover p {
  opacity: 1;
}
.features-section .feature-card:hover ul {
  opacity: 1;
}
@media (max-width: 768px) {
  .features-section .feature-card {
    height: auto;
    position: unset;
  }
  .features-section .feature-card p {
    opacity: 1;
  }
  .features-section .feature-card ul {
    opacity: 1;
  }
}

#pricing {
  text-align: center;
  padding: 6rem 0;
}
@media (max-width: 768px) {
  #pricing {
    padding: 2rem;
    text-align: left;
  }
}
#pricing h5 {
  font-size: 3rem;
  color: #005999;
  font-weight: 700;
  line-height: 120%;
}
#pricing p {
  color: #64748b;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}
#pricing .price-box {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 5rem;
  align-items: center;
}
@media (max-width: 768px) {
  #pricing .price-box {
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
  }
}
#pricing .price-card {
  border: 2px solid rgba(111, 116, 119, 0.1019607843);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  gap: 2rem;
  width: 33.33%;
  text-align: left;
  min-height: 25.9rem;
  position: relative;
}
@media (max-width: 768px) {
  #pricing .price-card {
    width: 100%;
  }
}
#pricing .price-card.professional {
  border-color: #10b981 !important;
  background: linear-gradient(0deg, #005999, #005999), linear-gradient(180deg, rgba(0, 89, 153, 0) 0%, rgba(0, 61, 107, 0.1) 100%);
  color: white;
  box-shadow: 1px 15px 50px 0px rgba(0, 0, 0, 0.5411764706);
  position: relative;
  padding: 3rem 2rem;
}
#pricing .price-card.professional h6,
#pricing .price-card.professional p,
#pricing .price-card.professional h2,
#pricing .price-card.professional i,
#pricing .price-card.professional li {
  color: white;
}
#pricing .price-card.professional i {
  background: #009980;
}
#pricing .price-card.professional .btn {
  background: #009980;
  color: white;
}
#pricing .price-card.personal h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0px;
  color: #005999;
  font-family: "Noto Sans", sans-serif;
}
#pricing .price-card-header h6 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
}
#pricing .price-card-header p {
  font-size: 14px !important;
}
#pricing .price-card-price h2 {
  font-family: Inter;
  color: #1e293b;
  font-weight: 600;
  font-size: 18px;
}
#pricing .price-card-price h2 span {
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0px;
}
#pricing .price-card-price p {
  font-size: 1rem;
}
#pricing .price-card-description {
  color: #8f9699;
}
#pricing .price-card-description ul {
  font-family: Inter;
  list-style: none;
}
#pricing .price-card-description li {
  display: flex;
}
#pricing .price-card-description i {
  color: #009980;
  display: inline-block;
  width: 18px;
  height: 18px;
  font-size: 12px;
  padding: 3px;
  background: rgba(0, 153, 128, 0.1019607843);
  margin-right: 7px;
  border-radius: 100%;
}
#pricing .price-card-top {
  background: #10b981;
  padding: 0.5rem 1.565rem;
  border-radius: 50px;
  font-family: "Inter";
  font-weight: 600;
  line-height: 20px;
  position: absolute;
  top: -1.5rem;
  margin: 0 auto;
  left: auto;
  right: 32%;
}
#pricing .price-card-top p {
  font-size: 14px !important;
  font-weight: 600 !important;
}
#pricing .price-card .btn {
  border: 1px solid rgba(0, 89, 153, 0.4);
  background: rgba(0, 89, 153, 0.0509803922);
  color: #005999;
  width: 100%;
  padding: 0.75rem 1rem;
}
#pricing .price-card::after {
  content: "Clique e inscreva-se para acesso antecipado";
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: rgba(0, 89, 153, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: white;
  text-align: center;
  font-size: 2rem;
  line-height: 120%;
  padding: 0 4rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
#pricing .price-card:hover::after {
  opacity: 1;
  pointer-events: auto;
}

/* CTA Section */
.cta-section {
  color: #fff;
  position: relative;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
  padding: 6rem 0;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  max-height: 27rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .cta-section {
    display: flex;
    flex-direction: column-reverse;
    max-height: 49rem;
    padding: 2rem 2rem 0 2rem;
  }
  .cta-section h2 {
    font-size: 2rem;
    padding-left: 1rem;
  }
  .cta-section img {
    height: 24rem;
    margin-top: 3rem;
  }
}
.cta-section h2 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 3rem;
  line-height: 120%;
  padding-left: 4rem;
}
.cta-section img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.cta-section::before {
  content: "";
  display: block;
  height: 33rem;
  width: 100vw;
  position: absolute;
  z-index: -1;
  background: #005999;
  background-blend-mode: overlay;
  background: radial-gradient(49.26% 170.04% at 49.4% 58.21%, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 768px) {
  .cta-section::before {
    top: 0;
    height: 100%;
  }
}
.cta-section::after {
  background: #005999;
  z-index: -2;
  content: "";
  display: block;
  height: 33rem;
  width: 100vw;
  position: absolute;
}
@media (max-width: 768px) {
  .cta-section::after {
    height: 100%;
    top: 0;
  }
}
.cta-section .cta-form {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}
@media (max-width: 768px) {
  .cta-section .cta-form {
    flex-direction: column;
  }
}
.cta-section .cta-form input[type=email] {
  padding: 12px;
  border-radius: 5px;
  border: none;
  min-width: 300px;
  font-weight: 600;
  line-height: 150%;
}

/* Footer */
.main-footer {
  background: rgba(239, 241, 243, 0.3019607843);
  color: #8f9699;
  padding: 4rem 9rem;
  border: 1px solid rgba(111, 116, 119, 0.2);
}
@media (max-width: 768px) {
  .main-footer {
    padding: 3rem 1rem;
  }
}
.main-footer .footer-top p {
  font-size: 1rem;
  font-weight: 400;
}
.main-footer .footer-top img {
  height: 2rem;
}
.main-footer .footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1rem;
}
.main-footer .footer-links a {
  margin: 0.1rem 0;
}
.main-footer .footer-links a:hover {
  color: #fff;
}
.main-footer .footer-links i {
  margin-right: 0.5rem;
  color: #005999;
}
.main-footer .copyright {
  border-top: 1px solid rgba(111, 116, 119, 0.2);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}/*# sourceMappingURL=main.css.map */