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

a.nostyle:link {
  text-decoration: inherit;
  color: inherit;
}

a.nostyle:visited {
  text-decoration: inherit;
  color: inherit;
}

body {
  font-family: "Inter", serif;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease;
  transition-delay: 0.5;
  z-index: 999;
  background: linear-gradient(180deg, rgba(3, 53, 101, 1) 0%, transparent 92%);
}
footer nav {
  display: grid;
}

.header nav {
  display: flex;
  gap: 20px;
}

.header .logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  letter-spacing: 3px;
  font-size: 14px;
}

.header span {
  color: #fff;
}

.header.active {
  background: #033565;
}

.header .logo-icon {
  width: 28px;
  height: 28px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .logo-icon .dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.header .nav-link {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 4px;
}

.banner {
  width: 100%;
  height: 100vh;
  text-align: center;
  color: white;
  background: linear-gradient(135deg, #8aa3b2 0%, #4f7a93 40%, #033565 100%);
  position: relative;
  overflow: hidden;
}

/* CIRCLES */
.banner .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgb(255 255 255 / 8%);
}

.banner .large {
  width: 600px;
  height: 600px;
}

.banner .medium {
  width: 400px;
  height: 400px;
}

/* BOTTOM FADE */
.banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 100%
  );
}

.banner .imgBanner {
  margin: auto;
  top: -100px;
  right: 0;
  left: 0;
  transition: 0.3s all;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.banner h1 {
  top: 70%;
  right: 0;
  left: 0;
  position: absolute;
  font-size: 120px;
  margin: 0;
  letter-spacing: -2px;
  white-space: nowrap;
}

.text-back {
  color: white;
  z-index: 1;
}

.text-front {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
  z-index: 3;
}

.banner h2 {
  top: 20%;
  position: absolute;
  right: 0;
  left: 0;
  color: #ffffff94;
}

.about {
  padding: 120px 8%;
  background-color: rgb(247 245 242);
}

.about .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  max-width: 1000px;
  margin: auto;
}

/* TEXTO */

.about .about-text {
  max-width: 520px;
}

.about .label {
  letter-spacing: 4px;
  font-size: 12px;
  color: #6e8ca3;
}

.about .about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 400;
  margin: 20px 0;
  color: #0d2b45;
}

.about .about-text h2 em {
  font-style: italic;
}

.about .divider {
  width: 60px;
  height: 1px;
  background: #c9d3db;
  margin: 25px 0;
}

.about .about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #5a7488;
}

/* CARD */

.about .about-card-wrapper {
  position: relative;
  background-image:
    linear-gradient(to bottom, #8aa3b24d, #033565), url(/img/img_sobre.jpg);
  background-size: cover;
  background-position-y: center;
}

.about .about-card-wrapper::before {
  z-index: -1;
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid #c9d3db;
  border-radius: 20px;
}

.about .about-card {
  width: 480px;
  height: 520px;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: flex-end;
}

.about .stats {
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: white;
  text-align: center;
}

.about .stats h3 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 8px;
}

.about .stats span {
  font-size: 13px;
  opacity: 0.85;
}

.about_2 {
  background: #033565;
  padding: 120px 8%;
  text-align: center;
  color: #ffffff;
}

.about_2 .section-label {
  font-size: 12px;
  letter-spacing: 4px;
  color: #7ea0c0;
}

.about_2 .section-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 400;
  margin: 20px 0 60px 0;
}

.about_2 .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID */

.about_2 .about_2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

/* CARD */

.about_2 .card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 40px;
  text-align: left;
  transition: all 0.3s ease;
}

.about_2 .card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-6px);
}

.about_2 .icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 30px;
  position: relative;
}

.about_2 .icon::after {
  content: "";
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about_2 .card h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 15px;
}

.about_2 .card p {
  font-size: 14px;
  line-height: 1.7;
  color: #b6c8d8;
}

.services {
  background: rgb(247 245 242);
  padding: 120px 8%;
  text-align: center;
  color: #033565;
}

.services .section-label {
  font-size: 12px;
  letter-spacing: 4px;
  color: #7ea0c0;
}

.services .section-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 400;
  margin: 20px 0 60px 0;
}

.services .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID */

.services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

/* CARD */

.services .card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #033565;
  border-radius: 18px;
  padding: 40px;
  text-align: left;
  transition: all 0.3s ease;
}

.services .card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-6px);
}

.services .icon {
  width: 46px;
  height: 46px;
  border: 1px solid #033565;
  border-radius: 50%;
  margin-bottom: 30px;
  position: relative;
}

.services .icon::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #033565;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.services .card h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 15px;
}

.services .card p {
  font-size: 14px;
  line-height: 1.7;
  color: #033565;
}

/* BOTÃO */

.services .cta-wrapper {
  display: flex;
  justify-content: center;
}

.services .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 40px;
  border: 1px solid #033565;
  text-decoration: none;
  color: white;
  background-color: #033565;
  font-size: 13px;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.services .cta-btn:hover {
  background: white;
  color: #033565;
}

.testimonials {
  padding: 120px 8%;
  text-align: center;
  background-color: rgb(247 245 242);
}

.testimonials .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */

.testimonials .section-label {
  font-size: 12px;
  letter-spacing: 4px;
  color: #7b9ab2;
}

.testimonials .section-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 400;
  margin: 20px 0 70px 0;
  color: #033565;
}

.testimonials .section-title em {
  font-style: italic;
}

/* GRID */

.testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.testimonials .owl-nav {
  position: absolute;
  top: 45%;
  margin: auto;
  right: -50px;
  width: calc(100% + 100px);
  justify-content: space-between;
  display: flex;
}

.testimonials .owl-nav button {
  font-size: 30px !important;
  font-weight: bold !important;
  color: #033565 !important ;
}

/* CARD */

.testimonials .testimonial-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.testimonials .testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.testimonials .quote {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  color: #7b9ab2;
  margin-bottom: 20px;
}

.testimonials .testimonial-card p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.testimonials .divider {
  width: 40px;
  height: 1px;
  background: #d8dee4;
  margin: 20px 0;
}

.testimonials .author strong {
  display: block;
  font-weight: 500;
  color: #033565;
  margin-bottom: 6px;
}

.testimonials .author span {
  font-size: 13px;
  color: #7b9ab2;
}

.courses-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0;
  text-align: center;
}

.courses-section .section-label {
  font-size: 12px;
  letter-spacing: 4px;
  color: #7b9ab2;
}

.courses-section .section-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 400;
  margin: 20px 0 70px 0;
  color: #033565;
}

/* Container de Cards */
.courses-section .cards-container {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Estilo do Card */
.courses-section .card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 30%;
  text-align: left;
  transition: transform 0.3s ease;
}

.courses-section .card p {
  color: #7b9ab2;
  min-height: 70px;
  font-size: 14px;
  font-weight: lighter;
}

.courses-section .card:hover {
  transform: translateY(-5px);
}

.courses-section .card .img-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.courses-section .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.courses-section .card:hover img {
  transform: scale(1.1);
}

.courses-section .card-content {
  padding: 20px;
  color: #033565;
}

.courses-section .date {
  font-size: 0.85rem;
  display: block;
  margin-bottom: 12px;
  color: #7b9ab2;
}

.courses-section .date i + i {
  margin-left: 10px;
}

.courses-section .card h3 {
  line-height: 1.4;
  margin-bottom: 15px;

  font-size: 15px;
  font-weight: normal;
}

.courses-section .read-more {
  font-size: 0.8rem;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7b9ab2;
}

.courses-section .read-more span {
  display: inline-block;
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.courses-section .card:hover .read-more span {
  transform: translateX(8px);
}

.news-section {
  padding: 120px 0;
  text-align: center;
}

.news-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.news-section .section-label {
  font-size: 12px;
  letter-spacing: 4px;
  color: #7b9ab2;
}

.news-section .section-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 400;
  margin: 20px 0 70px 0;
  color: #033565;
}

/* Container de Cards */
.news-section .cards-container {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Estilo do Card */
.news-section .card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 30%;
  text-align: left;
  transition: transform 0.3s ease;
}

.news-section .card:hover {
  transform: translateY(-5px);
}

.news-section .card .img-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.news-section .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-section .card:hover img {
  transform: scale(1.1);
}

.news-section .card-content {
  padding: 20px;
  color: #033565;
}

.news-section .date {
  font-size: 0.85rem;
  display: block;
  margin-bottom: 12px;
}

.news-section .card h3 {
  line-height: 1.4;
  margin-bottom: 20px;
  min-height: 70px;
  font-size: 15px;
  font-weight: normal;
}

.news-section .read-more {
  font-size: 0.8rem;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #033565;
}

.news-section .read-more span {
  display: inline-block;
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.news-section .card:hover .read-more span {
  transform: translateX(8px);
}

.contact-section {
  background: linear-gradient(135deg, #7da9b6 0%, #033565 100%);
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.contact-section .subtitle {
  font-size: 0.8rem;
  letter-spacing: 2px;
  opacity: 0.8;
}

.contact-section h4 {
  font-size: 3rem;
  margin: 20px 0;
  font-weight: normal;
  font-family: "Playfair Display", serif;
}

.contact-section p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

/* Botões */
.contact-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.contact-section .btn {
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.contact-section .btn-whatsapp {
  background-color: #fff;
  color: #033565;
  border: 1px solid #033565;
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
}

.contact-section .btn-whatsapp:hover {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.contact-section .btn-email {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.contact-section .btn-email:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Rodapé Principal */
.footer-main {
  background-color: #033565;
  padding: 80px 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-main .footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: white;
}

.footer-main .footer-col h4 {
  font-size: 0.8rem;
  color: white;
  margin-bottom: 20px;
}

.footer-main .footer-col p,
.footer-col a {
  font-size: 0.95rem;
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

/* Barra Inferior */
.footer-main .footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #6a7c92;
}

.footer-main .social-links a {
  color: #6a7c92;
  text-decoration: none;
  margin-left: 20px;
}

.article-container {
  max-width: 800px;
  width: 100%;
  margin: 120px auto;
}

/* Link Voltar */
.article-container .back-link {
  text-decoration: none;
  color: #888;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 30px;
  transition: color 0.3s;
}

.article-container .back-link:hover {
  color: #033565;
}

/* Cabeçalho */
.article-container .article-date {
  font-size: 0.85rem;
  color: #033565;
  display: block;
  margin-bottom: 15px;
}

.article-container h2 {
  font-size: 2.8rem;
  color: #033565;
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 40px;
  font-family: "Playfair Display", serif;
  text-align: center;
}

/* Imagem */
.article-container .featured-image {
  width: 100%;
  margin-bottom: 40px;
}

.article-container .featured-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-height: 500px;
  object-fit: cover;
  object-position: center;
}

/* Conteúdo */
.article-container .article-content p {
  font-size: 1.15rem;
  margin-bottom: 25px;
  line-height: 1.8rem;
  text-align: justify;
  color: #033565;
}

/* Link Voltar */
.courses-container .back-link,
.mentoria-container .back-link {
  text-decoration: none;
  color: #888;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 30px;
  transition: color 0.3s;
}

.courses-container,
.mentoria-container {
  max-width: 1100px;
  width: 100%;
  margin: 120px auto;
  color: #033565;
}

.courses-container .main-content,
.mentoria-container .main-content {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* Conteúdo do Curso */
.courses-container .course-info,
.mentoria-container .info-mentoria {
  flex: 2;
}

.courses-container .course-banner img,
.mentoria-container .banner-mentoria img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.courses-container .meta-info {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 15px;
  display: flex;
  gap: 20px;
}

.courses-container h2,
.mentoria-container h2 {
  font-size: 2.5rem;
  color: #033565;
  margin-bottom: 30px;
}

.courses-container .description h3,
.mentoria-container .description h3 {
  margin: 30px 0 15px;
  font-size: 1.1rem;
}

.courses-container .description ul,
.mentoria-container .description ul {
  list-style: none;
  margin-bottom: 30px;
}

.courses-container .description ul li::before,
.mentoria-container .description ul li::before {
  content: "- ";
}

/* Formulário Lateral */
.courses-container .sidebar-form,
.mentoria-container .sidebar-form {
  flex: 1;
  position: relative;
  height: stretch;
}

.courses-container .form-card,
.mentoria-container .form-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  position: sticky;
  top: 80px;
  z-index: 10;
}

.courses-container .form-card h2,
.mentoria-container .form-card h2 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
}

.courses-container .form-card p,
.mentoria-container .form-card p {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 25px;
}

.courses-container .input-group,
.mentoria-container .input-group {
  margin-bottom: 20px;
}

.courses-container .input-group label,
.mentoria-container .input-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: bold;
  color: #bbb;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.courses-container .input-group input,
.mentoria-container .input-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 8px;
  background-color: #fcfcfc;
}

.courses-container .btn-submit,
.mentoria-container .btn-submit {
  width: 100%;
  padding: 15px;
  background-color: #0d2137; /* Azul marinho da imagem */
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}

.courses-container .btn-submit:hover,
.mentoria-container .btn-submit:hover {
  background-color: #033565;
}

.mentoria-container p {
  line-height: 1.6;
  margin-bottom: 30px;
  white-space: pre-line;
}

.programs-section {
  background-color: #033565;
  color: white;
  padding: 120px 0;
}

.programs-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* Cabeçalho da Seção */
.programs-section .section-header {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 400;
  margin: 20px 0 70px 0;
}

.programs-section .section-header .subtitle {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  color: #8892b0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.programs-section .section-header h3 {
  font-size: 2.5rem;
  font-weight: 400;
}

.programs-section .section-header h3 em {
  font-style: italic;
  font-family: serif; /* Para o efeito elegante da imagem */
}

/* Grid de Cards */
.programs-section .cards-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.programs-section .card {
  background-color: rgba(255, 255, 255, 0.03); /* Fundo sutil dos cards */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 40px;
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.programs-section .card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Ícone Circular */
.programs-section .card-icon {
  margin-bottom: 25px;
}

.programs-section .circle-outer {
  width: 24px;
  height: 24px;
  border: 1px solid #444;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.programs-section .circle-inner {
  width: 4px;
  height: 4px;
  background-color: #8892b0;
  border-radius: 50%;
}

/* Tipografia do Card */
.programs-section .card h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.programs-section .card p {
  font-size: 0.95rem;
  color: #a8b2d1;
  line-height: 1.6;
  margin-bottom: 30px;
  white-space: pre-line;
  flex-grow: 1; /* Empurra o botão para baixo */
}
.programs-section .card p strong {
  color: white;
}

/* Botão Link */

.programs-section .cta-btn {
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 40px;
  border: 1px solid #033565;
  text-decoration: none;
  color: white;
  background-color: #033565;
  font-size: 13px;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  text-align: center;
}

.programs-section .btn-open:hover {
  background: white;
  color: #033565;
}

/* MODAL */

.modal-overlay {
  display: none; /* Escondido por padrão */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Efeito de desfoque/escurecimento */
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Caixa branca da Modal */
.modal-overlay .modal-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 450px;
  position: relative;
  color: #333;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Botão Fechar (X) */
.modal-overlay .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #aaa;
}

/* Conteúdo Interno */
.modal-overlay .modal-content h2 {
  font-size: 1.6rem;
  margin-bottom: 5px;
  color: #102a43;
}

.modal-overlay .modal-subtitle {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 25px;
}

/* Inputs do Formulário */
.modal-overlay .input-group {
  margin-bottom: 15px;
  text-align: left;
}

.modal-overlay .input-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: bold;
  color: #999;
  margin-bottom: 5px;
}

.modal-overlay .input-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #f9f9f9;
}

/* Botão Enviar Azul Escuro */
.modal-overlay .btn-submit {
  width: 100%;
  padding: 15px;
  background-color: #033565; /* Cor azul marinho da imagem */
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 10px;
}

.lp-explore-section {
  padding: 100px 20px;
  background-color: #ffffff;
  text-align: center;
}

.lp-explore-container {
  max-width: 1000px;
  margin: 0 auto;
}

.lp-explore-header {
  margin-bottom: 60px;
}

.lp-explore-tag {
  display: block;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #8fa6b9;
  margin-bottom: 10px;
  font-weight: 600;
}

.lp-explore-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #033565;
  font-weight: 400;
}

.lp-italic-text {
  font-style: italic;
}

/* Grid de Categorias */
.lp-explore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.lp-category-card {
  padding: 50px 40px;
  border-radius: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: transform 0.3s ease;
}

.lp-category-card:hover {
  transform: translateY(-8px);
}

/* Estilos de Cores Específicos */
.lp-card-light-blue {
  background-color: #7da9b6;
  color: #ffffff;
}

.lp-card-dark-blue {
  background-color: #033565;
  color: #ffffff;
}

/* Ícones circulares */
.lp-category-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.lp-category-title {
  font-size: 1.8rem;
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
}

.lp-category-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
  flex-grow: 1; /* Garante que o link fique sempre na base */
}

.lp-category-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lp-category-link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
  .lp-explore-grid {
    grid-template-columns: 1fr;
  }

  .lp-explore-title {
    font-size: 2rem;
  }
}

/* Responsividade para celulares */
@media (max-width: 768px) {
  .programs-section .section-header h3 {
    font-size: 1.8rem;
  }

  .programs-section .card {
    padding: 30px;
  }
}

/* Responsividade */
@media (max-width: 900px) {
  .courses-container .main-content {
    flex-direction: column;
  }
  .courses-container .sidebar-form {
    width: 100%;
  }
}

/* Responsividade */
@media (max-width: 600px) {
  .article-container .news-section h1 {
    font-size: 2rem;
  }

  .article-container .article-content p {
    font-size: 1rem;
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Responsividade para celulares */
@media (max-width: 768px) {
  .news-section .cards-container,
  .courses-section .cards-container {
    flex-direction: column;
    align-items: center;
  }
}
/* RESPONSIVO */

@media (max-width: 900px) {
  .testimonials .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials .section-title {
    font-size: 36px;
  }
}
/* RESPONSIVO */

@media (max-width: 992px) {
  .services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services .services-grid {
    grid-template-columns: 1fr;
  }

  .services .section-title {
    font-size: 36px;
  }
}
