/* ════════════════════════════
   RESET & VARIÁVEIS
════════════════════════════ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

#home,
#empresa,
#servicos,
#contato {
  scroll-margin-top: 130px;
}

:root {
  --navy: #38517c;
  --teal: #007289;
  --cyan: #54ced2;
  --orange: #f4845f;
  --white: #ffffff;
  --text-body: #444444;
  --faixa: #253a57;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  color: var(--text-body);
  line-height: 1.6;
  background-color: var(--white);
  animation: fadeInPage 0.5s ease forwards;
}

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

.text-center {
  text-align: center;
}

/* ════════════════════════════
   HEADER
════════════════════════════ */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid #ffffff;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.top-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  text-decoration: none;
}

.logo-wrapper img {
  height: 120px;
  display: block;
}

.top-contacts {
  display: flex;
  align-items: center;
  gap: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item:hover {
  color: var(--navy);
}

.contact-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact-divider {
  width: 1px;
  height: 28px;
  background: #ddd;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.whatsapp-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  transition:
    background 0.2s,
    transform 0.2s;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
}

.whatsapp-mobile-btn:hover {
  background: #1ebe5d;
  transform: scale(1.08);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar {
  background-color: #292929;
}

.navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1px;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  display: block;
  color: var(--white);
  text-decoration: none;
  padding: 15px 28px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: background 0.25s ease;
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--cyan);
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 80%;
}
.nav-links li a:hover {
  background: rgba(0, 0, 0, 0.12);
}

.navbar-border {
  height: 3px;
  background: linear-gradient(to right, var(--navy), var(--cyan), var(--navy));
}

/* ── LOGO MOBILE ── */
@media (max-width: 768px) {
  .logo-wrapper img {
    height: 80px !important;
  }
  .logo-wrapper {
    justify-content: center;
    display: flex;
  }
}

/* ── TELAS MÉDIAS: corrige top-contacts torto ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .top-bar .container {
    padding: 0 20px;
    gap: 16px;
  }

  .top-contacts {
    gap: 16px;
    margin-right: 40px;
  }

  .contact-item {
    font-size: 0.82rem;
    gap: 6px;
    /* impede que o número quebre no meio */
    white-space: nowrap;
  }

  .contact-item svg {
    width: 18px;
    height: 18px;
  }

  .logo-wrapper img {
    height: 90px;
  }
}

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  margin-top: 28px;
  background: #ffffff;
  padding: 0 0 0;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
  padding-left: 0;
  width: 100%;
  position: relative;
}

.hero-banner {
  flex: 0 0 65%;
  position: relative;
  height: 540px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease-in-out;
  z-index: 1;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-text-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-text-side h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #253a57;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-text-side .cyan-text {
  color: #54ced2;
}
.hero-text-side .teal-text {
  color: #2d9da1;
}
.about-card .cyan-text {
  color: #2d9da1;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 450px;
}

.btn-main {
  display: inline-block;
  background: #253a57;
  color: #ffffff;
  padding: 20px 35px;
  border-radius: 600px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(37, 58, 87, 0.2);
}

.btn-main:hover {
  background: #2d9da1;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(45, 157, 161, 0.3);
}

.hero-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-bar {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-bar.is-active {
  background: #ffffff;
  transform: scale(1.35);
}

.hero-bar:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.7);
}

/* ════════════════════════════
   A EMPRESA
════════════════════════════ */
.about {
  padding: 70px 0px;
  background: #ffffff;
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  border-radius: 2px;
}

.about-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  padding: 10px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.about-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(56, 81, 124, 0.1);
  border: 1px solid #ffffff;
  flex: 1;
  min-width: 300px;
}

.title-section {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #333333;
}

.subtitle-highlight {
  color: var(--cyan);
  font-weight: 600;
  font-size: 1.2rem;
  max-width: 900px;
  margin: 0 auto 15px;
}

.description {
  max-width: 950px;
  margin: 0 auto 20px;
  text-align: center;
}

.btn-secondary {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: var(--navy);
  color: var(--white);
  padding: 12px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-secondary:hover::before {
  left: 150%;
}

.btn-secondary:hover {
  background: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(56, 81, 124, 0.35);
}

.btn-secondary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(56, 81, 124, 0.25);
}

/* ════════════════════════════
   SOLUÇÕES
════════════════════════════ */
.solutions {
  padding: 20px;
  background: #fff;
  position: relative;
}

.solutions-inner {
  max-width: 860px;
  padding: 20px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 300px;
}

.solutions-badge {
  display: inline-block;
  background: rgba(84, 206, 210, 0.12);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 7px 18px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.title-cyan {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.solutions-p {
  color: #666;
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 30px;
  line-height: 1.8;
  font-weight: 400;
}

.solutions-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 550px;

  gap: 10px;
  background: #ffffff;
  border: 1px solid #e2edf5;
  border-radius: 24px;
  padding: 30px 20px;
  box-shadow: 0 10px 30px rgba(56, 81, 124, 0.05);
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: #dde8f0;
  flex-shrink: 0;
}

.simple-p {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: #444;
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.checklist li:last-child {
  border-bottom: none;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  background: var(--cyan);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ════════════════════════════
   SERVIÇOS
════════════════════════════ */
.services-header {
  text-align: center;
  padding: 0px 10px 10px;
  background: #fff;
}

.services-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  color: var(--navy);
  position: relative;
  display: inline-block;
}

.grid-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  gap: 15px;
  padding: 4px 20px 15px;
}

.service-card {
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.bg-cyan {
  background: var(--cyan);
}
.bg-navy {
  background: var(--navy);
}
.bg-teal {
  background: var(--teal);
}

.icon-box svg {
  height: 80px;
  width: 80px;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.icon-box i {
  font-size: 70px;
  color: white;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.service-card:hover .icon-box i,
.service-card:hover .icon-box svg {
  transform: scale(1.1);
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.more-details {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.8rem;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  margin-top: 15px;
  opacity: 0.8;
}

.service-card:hover .more-details {
  opacity: 1;
  border-bottom: 1px solid white;
  letter-spacing: 1px;
}

.service-card-cta {
  grid-column: 1 / -1;
  background: #ffffff;
  border: 3px dashed var(--orange);
  border-radius: 35px;
  padding: 35px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.service-card-cta:hover {
  background: #ffffff;
  border-color: var(--teal);
}

.service-card-cta p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}

/* ════════════════════════════
   DOWNLOADS
════════════════════════════ */
.downloads-section {
  padding: 40px 0;
  background: #fff;
  border-top: 1px solid #ffffff;
}

.downloads-header {
  text-align: center;
  margin-bottom: 36px;
}

.downloads-badge {
  display: inline-block;
  background: rgba(84, 206, 210, 0.12);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.downloads-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.downloads-subtitle {
  color: #888;
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.downloads-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.download-circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  text-decoration: none;
  width: 260px;
  flex-shrink: 0;
}

.circle-outer {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.circle-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  opacity: 0;
  transition:
    opacity 0.4s,
    transform 0.4s;
}

.ring-1 {
  width: 100%;
  height: 100%;
  transform: scale(1);
  border-color: var(--orange);
}

.ring-2 {
  width: 112%;
  height: 112%;
  border-color: var(--orange);
  transform: scale(0.9);
  top: -12px;
  left: -12px;
}

.download-circle-card:hover .circle-ring {
  opacity: 0.5;
  transform: scale(1.05);
}
.download-circle-card:hover .ring-2 {
  opacity: 0.25;
  transform: scale(1);
}

.circle-inner {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(56, 81, 124, 0.25);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
  z-index: 1;
}

.download-circle-card:hover .circle-inner {
  transform: scale(1.06);
  box-shadow: 0 14px 44px rgba(56, 81, 124, 0.35);
}

.circle-icon i {
  font-size: 2.4rem;
  color: var(--cyan);
  transition: transform 0.35s ease;
}

.download-circle-card:hover .circle-icon i {
  transform: scale(1.15);
}

.circle-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 0 16px;
  line-height: 1.3;
}

.circle-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

.circle-cta {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 0.5px;
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s,
    color 0.3s;
}

.download-circle-card:hover .circle-cta {
  border-bottom-color: var(--teal);
  color: var(--navy);
}

/* ════════════════════════════
   NORMAS E RDCs
════════════════════════════ */
.normas-section {
  padding: 80px 0;
  background-color: var(--white);
}

.normas-container {
  max-width: 900px;
  margin: 40px auto 0;
}

.rdc-highlight {
  background: var(--navy);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--white);
  margin-bottom: 40px;
  box-shadow: 0 10px 25px rgba(56, 81, 124, 0.2);
}

.rdc-icon {
  font-size: 3rem;
  color: var(--cyan);
}

.rdc-text h3 {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 8px;
}

.rdc-text p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.ins-grid {
  background: #f8fafd;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e1e8f0;
}

.ins-title {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  margin-bottom: 20px;
  border-left: 4px solid var(--cyan);
  padding-left: 15px;
}

.ins-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.in-item {
  background: var(--white);
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.in-item span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
}

.in-item a {
  color: var(--teal);
  font-size: 1.1rem;
  transition: color 0.2s;
}

.in-item:hover {
  border-color: var(--cyan);
  background: #f0fbfc;
  transform: translateX(5px);
}

.in-item a:hover {
  color: var(--navy);
}

/* ════════════════════════════
   CURSO OBRIGATÓRIO
════════════════════════════ */
.courses-section {
  padding: 40px 0;
  background: #fff;
  border-top: 1px solid #ffffff;
  margin-bottom: 40px;
}

.courses-header {
  text-align: center;
  margin-bottom: 28px;
}

.courses-badge {
  display: inline-block;
  background: rgba(141, 212, 214, 0.12);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.courses-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 15px;
}

.courses-grid {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.courses-banner {
  flex: 0 0 50%;
  height: 390px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  position: relative;
}

.courses-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.courses-info {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}

.courses-text {
  font-size: 1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 24px;
}


@media (max-width: 768px) {
  .courses-grid {
    flex-direction: column;
  }

  .courses-banner {
    flex: 0 0 auto;
    width: 100%;
    height: 300px;
  }

  .courses-info {
    flex: 0 0 auto;
    width: 100%;
    padding: 0;
  }
}

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.footer-main {
  background-color: #333333;
  color: #999999;
  padding-top: 90px;
  font-size: 0.9rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 30px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

.footer-logo img {
  height: 110px;
}

.footer-slogan {
  font-size: 0.92rem;
  color: #888;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contacts .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #999;
  font-size: 0.95rem;
}

.footer-contacts .contact-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--cyan);
}

.contact-group {
  display: flex;
  gap: 50px;
}

.footer-bottom {
  background-color: #252525;
  padding: 10px 0;
  border-top: 1px solid #444;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0;
}

.footer-bottom p {
  font-size: 0.88rem;
  color: #777;
}

.footer-bottom strong {
  color: #999;
}

.footer-dev-logo {
    height: 30px; /* Ajuste essa altura conforme o design do seu logo */
    width: auto;  /* Mantém a proporção */
    vertical-align: middle; /* Alinha o logo com o texto "Site Desenvolvido por" */
    margin-left: 8px;       /* Dá um espaço entre o texto e a imagem */
    transition: opacity 0.3s ease;
    filter: grayscale(200%) brightness(2); /* Opcional: deixa o logo cinza para combinar com o footer */
}


.social-links {
  display: flex;
  gap: 12px;
  justify-content: end;
  margin-right: 110px;
  margin-bottom: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #444;
  color: #aaa;
  text-decoration: none;
  transition:
    background 0.3s,
    color 0.3s;
}

.social-links a:hover {
  background: var(--orange);
  color: var(--white);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--cyan);
  transform: translateY(-3px);
  filter: drop-shadow(0 5px 15px rgba(0, 255, 255, 0.3));
}

/* ════════════════════════════
   BOTÕES - WHATSAPP E RETURN
════════════════════════════ */

#myBtn {
  display: block;
  position: sticky;
  top: 90vh;
  margin-left: auto;
  margin-right: 30px;
  margin-bottom: 20px;
  bottom: auto;
  right: auto;
  z-index: 9999;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  color: #000000;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.3s;
}

#myBtn svg {
  width: 100%;
  height: 100%;
}

#myBtn:hover {
  background-color: #333;
  color: #fff;
}

/* ════════════════════════════
   WHATSAPP FLUTUANTE
════════════════════════════ */
.whatsapp-float {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  z-index: 9998;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.5;
  animation: whatsappPulse 2s infinite;
  pointer-events: none;
}

/* ════════════════════════════
   PÁGINA A EMPRESA
════════════════════════════ */
.about-hero {
  background: #ffffff;
  padding: 40px 0 30px;
  text-align: center;
  border-bottom: 1px solid #e8eef4;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--cyan);
  font-weight: 600;
  max-width: 720px;
  margin: 24px auto 0;
  line-height: 1.8;
}

.about-intro {
  padding: 30px 0;
  background: #fff;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 24px;
}

.highlight-box {
  background: linear-gradient(135deg, #f0f8fa 0%, #e8f4f7 100%);
  border-left: 4px solid var(--cyan);
  padding: 25px 30px;
  margin: 40px 0;
  border-radius: 8px;
  position: relative;
}

.highlight-box i {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 1.8rem;
  color: var(--cyan);
  opacity: 0.2;
}

.highlight-box p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  padding-left: 20px;
}

.mvv-section {
  background: #ffffff;
  padding: 30px 0;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mvv-card {
  background: #fff;
  border: 1px solid #e4eef6;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}

.mvv-card:hover {
  box-shadow: 0 8px 32px rgba(56, 81, 124, 0.12);
  transform: translateY(-4px);
}

.mvv-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.mvv-icon i {
  font-size: 1.8rem;
  color: white;
}

.mvv-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.mvv-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

.mvv-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.mvv-card ul li {
  text-align: center;
  color: #666;
  font-size: 0.95rem;

  position: relative;
}

.mvv-card ul li::before {
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.anvisa-section {
  padding: 40px 0;
  background: #ffffff;
  width: 100%;
  display: flex;
  justify-content: left;
}

/* ════════════════════════════
   PÁGINA DE SERVIÇOS
════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.page-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

.page-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 1rem;
  opacity: 0.8;
  max-width: 520px;
  margin: 0 auto;
}

.services-page {
  padding: 60px 0 80px;
  background: #f7fafd;
}

.service-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 32px 36px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e4eef6;
  box-shadow: 0 2px 16px rgba(56, 81, 124, 0.07);
  margin-bottom: 20px;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}

.service-detail-card:hover {
  box-shadow: 0 8px 32px rgba(56, 81, 124, 0.13);
  transform: translateY(-4px);
}

.sdc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  border-radius: 14px;
  font-size: 1.4rem;
  color: white;
  flex-shrink: 0;
}

.sdc-content {
  padding-top: 4px;
}

.sdc-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.sdc-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

/* ════════════════════════════
   CTA SERVIÇOS
════════════════════════════ */
.services-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -150px;
  right: -100px;
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.cta-left {
  flex: 1;
  max-width: 520px;
}

.cta-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.services-cta h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.services-cta p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.services-cta .btn-secondary {
  background: #fff;
  color: var(--navy);
}
.services-cta .btn-secondary:hover {
  background: var(--cyan);
  color: #fff;
}

.cta-right {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.97rem;
  font-weight: 500;
}

.cta-item i {
  font-size: 1.2rem;
  color: var(--cyan);
  flex-shrink: 0;
}

/* ════════════════════════════
   PÁGINA DE DOWNLOADS
════════════════════════════ */
.download-section {
  padding: 80px 0;
  background-color: #fcfcfc;
}

.grid-downloads {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.download-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #e8eef4;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.download-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(56, 81, 124, 0.15);
  border-color: var(--cyan);
}

.card-preview {
  background-color: #f8fafd;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.card-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.card-body {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-body h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.card-body p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
}

.card-body .btn-secondary {
  width: 100%;
  padding: 12px 10px;
  font-size: 0.8rem;
}

/* ════════════════════════════
   PÁGINA DE CONTATO
════════════════════════════ */
.contact-hero {
  background: #ffffff;
  padding: 70px 0 50px;
  text-align: center;
}

.contact-main {
  padding: 50px 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.contact-form-wrapper {
  background: #ffffff;
  border: 2px solid #54ced2;
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 4px 24px rgba(56, 81, 124, 0.08);
}

.contact-form-wrapper h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.form-subtitle {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid #e4eef6;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: "Poppins", sans-serif;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(84, 206, 210, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  background: var(--navy);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition:
    background 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
  margin-top: 12px;
}

.btn-submit:hover:not(:disabled) {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56, 81, 124, 0.25);
}

.btn-submit:active:not(:disabled) {
  transform: translateY(0);
}
.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.btn-submit i {
  font-size: 1rem;
}

.form-status {
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
  display: none;
}

.form-status.success {
  display: block;
  background: #ffffff;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.contact-info-card {
  background: #ffffff;
  border: 2px solid #54ced2;
  border-radius: 16px;
  padding: 41px 20px;
  box-shadow: 0 2px 16px rgba(56, 81, 124, 0.06);
  transition: box-shadow 0.3s;
}

.contact-info-card:hover {
  box-shadow: 0 4px 24px rgba(56, 81, 124, 0.12);
}

.contact-info-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-info-card > p {
  color: #888;
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: 12px;
  transition: background 0.3s;
  text-decoration: none;
  color: inherit;
}

.info-item:hover {
  background: #f7fafd;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 1.3rem;
  color: white;
  transition: transform 0.3s;
}

.whatsapp.info-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
}

.location-card,
.hours-card {
  display: flex;
  align-items: start;
  gap: 16px;
}

.location-card .info-icon,
.hours-card .info-icon {
  margin-top: 4px;
}

.whatsapp-item {
  position: relative;
}

.whatsapp-item::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 50px;
  height: 50px;
  background: #25d366;
  border-radius: 30px;
  opacity: 1;
  animation: whatsappPulse 2s infinite;
  pointer-events: none;
}

@media (max-width: 992px) {
  .contact-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 10px;
    width: 100%;
    overflow-x: hidden;
  }

  .contact-hero {
    padding: 50px 20px 30px;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
  }
}

/* Ajustes para Celulares */
@media (max-width: 768px) {
  .contact-main {
    padding: 20px 10px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form-wrapper {
    padding: 30px 15px;
    border-radius: 15px;
  }

  .contact-form-wrapper h2 {
    font-size: 1.5rem;
  }

  .btn-submit {
    width: 100%;
    padding: 16px 20px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100% !important;
    max-width: 100%;
    display: block;
  }

  .form-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .contact-info-card {
    padding: 20px 15px;
    width: 100%;
  }

  .info-item {
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .info-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }

  .info-content {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
  }

  .info-value {
    font-size: 0.88rem;
    word-break: break-all;
  }

  .btn-submit {
    width: 100%;
  }
}

/* Ajustes para telas muito pequenas (ex: iPhone SE) */
@media (max-width: 380px) {
  .contact-form-wrapper h2 {
    font-size: 1.3rem;
  }

  .info-value {
    font-size: 0.85rem;
  }
}

@media (max-width: 350px) {
  .contact-form-wrapper {
    padding: 20px 10px;
  }

  .contact-form-wrapper h2 {
    font-size: 1.2rem;
  }
}

/* ════════════════════════════
   PÁGINA DE CURSO
════════════════════════════ */

.course-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: stretch; /* volta para stretch */
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.course-card,
.contact-info-card-curso {
    background: #ffffff;
    border: 2px solid #54ced2;
    border-radius: 20px;
    padding: 25px 30px; /* reduzido levemente para não criar espaço em branco extra */
    box-shadow: 0 4px 24px rgba(56, 81, 124, 0.08);
    box-sizing: border-box;
}


.course-card {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.course-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 20px 0; /* margem superior zerada para alinhar com o h3 do card da direita */
}

.course-card ul {
    margin: 0 0 20px 20px;
}

.course-card ul:last-child {
    margin-bottom: 0;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* distribui os dois cards para ocupar toda a altura */
    gap: 20px;
    height: 100%; /* ocupa a altura total da célula do grid */
}

.contact-info-card-curso:last-child {
    flex: 1;
    display: flex;
    align-items: center; /* centraliza o conteúdo verticalmente no espaço disponível */
}

.contact-info-card-curso h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 10px 0;
}

.contact-info-card-curso p {
    color: #888;
    font-size: 0.88rem;
    margin: 0 0 20px 0;
}

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

/* ════════════════════════════
   ANIMAÇÕES
════════════════════════════ */
@keyframes whatsappPulse {
  0% {
    transform: scale(1.15);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

@keyframes fadeInPage {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ════════════════════════════
   RESPONSIVO — TABLET (≤ 992px)
════════════════════════════ */
@media (max-width: 992px) {
  .grid-services {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    padding: 60px 0;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .title-section {
    font-size: 1.8rem;
  }
  .title-cyan {
    font-size: 2rem;
  }
  .mvv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .anvisa-content {
    flex-direction: column;
    gap: 32px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .anvisa-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ════════════════════════════
   RESPONSIVO — MOBILE (≤ 768px)
════════════════════════════ */
@media (max-width: 768px) {
  .top-bar .container {
    padding: 0 20px;
  }
  .logo-wrapper img {
    height: 52px;
  }
  .top-contacts {
    display: none;
  }
  .mobile-actions {
    display: flex;
  }
  .footer-container {
    padding: 0 16px 48px;
  }

  .navbar .container {
    padding: 0;
    justify-content: flex-start;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li a {
    padding: 14px 28px;
  }
  .nav-links li a::after {
    display: none;
  }

  .hero {
    padding: 0;
  }
  .hero-content {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }
  .hero-banner {
    width: 100%;
    height: 260px;
    flex: none;
  }
  .hero-text-side {
    align-items: center;
    text-align: center;
    padding: 0 16px;
  }
  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero-nav {
    left: 50%;
    transform: translateX(-50%);
  }
  .btn-main {
    padding: 12px 26px;
    font-size: 0.85rem;
  }

  .about {
    padding: 32px 0;
  }
  .about-grid {
    flex-direction: column;
    gap: 40px;
  }
  .about-left .title-section {
    text-align: center;
  }
  .about-left .description {
    text-align: center;
  }
  .title-section {
    font-size: 1.6rem;
  }
  .subtitle-highlight {
    font-size: 1rem;
  }

  .grid-services {
    grid-template-columns: 1fr;
    padding: 20px 16px;
    gap: 16px;
  }
  .service-card {
    padding: 40px 24px;
    border-radius: 28px;
  }
  .service-card:hover {
    transform: none;
  }
  .service-card-cta {
    flex-direction: column;
    gap: 16px;
    padding: 28px 20px;
  }
  .service-card-cta p {
    font-size: 1.1rem;
  }

  .downloads-section {
    padding: 32px 0;
  }
  .downloads-header {
    margin-bottom: 24px;
  }
  .downloads-cards {
    gap: 40px;
  }
  .circle-outer {
    width: 180px;
    height: 180px;
  }
  .circle-inner {
    width: 150px;
    height: 150px;
  }

  .courses-section {
    padding: 32px 0;
  }
  .courses-header {
    margin-bottom: 20px;
  }

  .solutions {
    padding: 0;
  }
  .solutions-inner {
    padding: 30px 40px;
  }
  .solutions-stats {
    max-width: 100%;
    padding: 20px 16px;
  }
  .title-cyan {
    font-size: 1.7rem;
  }
  .solutions-p {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .footer-main {
    padding-top: 48px;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px 48px;
    gap: 32px;
  }
  .footer-contacts {
    align-items: center;
    width: 100%;
  }
  .contact-group {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .footer-bottom .footer-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding-bottom: 0;
  }

  .rdc-highlight {
    flex-direction: column;
    text-align: center;
  }
  .ins-list {
    grid-template-columns: 1fr;
  }

  .services-cta {
    padding: 48px 20px;
    text-align: center;
  }
  .cta-inner {
    flex-direction: column;
    gap: 32px;
  }
  .cta-left {
    max-width: 100%;
  }
  .services-cta h2 {
    font-size: 1.8rem;
  }
  .cta-right {
    align-items: center;
    width: 100%;
  }
  .cta-item {
    text-align: left;
    width: fit-content;
  }
  .services-cta::before {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
  }

  .contact-main {
    padding: 48px 0;
  }
  .contact-form-wrapper {
    padding: 32px 24px;
  }
  .contact-form-wrapper h2 {
    font-size: 1.5rem;
  }
  .form-subtitle {
    font-size: 0.9rem;
  }
  .btn-submit {
    width: 100%;
    justify-content: center;
  }
  .g-recaptcha {
    transform: scale(0.88);
    transform-origin: 0 0;
    margin: 20px 0;
  }
  .info-items {
    gap: 12px;
  }
  .info-item {
    padding: 12px;
  }
  .info-icon {
    width: 44px;
    height: 44px;
  }
  .info-icon i {
    font-size: 1.1rem;
  }

  .about-hero {
    padding: 40px 20px;
  }
  .about-lead {
    font-size: 1rem;
    padding: 0 15px;
  }
  .intro-content {
    padding: 0 20px;
  }
  .mvv-grid {
    grid-template-columns: 1fr;
  }
  .highlight-box {
    padding: 24px;
    margin: 30px 15px;
  }
  .highlight-box i {
    display: none;
  }
  .anvisa-text h2 {
    font-size: 1.6rem;
    text-align: center;
  }
  .anvisa-text p {
    text-align: justify;
  }
  .mvv-section {
    padding: 40px 20px;
  }

  .grid-downloads {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .contact-hero {
    padding: 50px 0 40px;
  }
  .page-title {
    font-size: 2rem;
  }
  .contact-form-wrapper {
    padding: 28px 20px;
  }
  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.9rem;
  }
  .g-recaptcha {
    transform: scale(0.75);
  }

  /* WhatsApp flutuante em mobile */
  .whatsapp-float {
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

/* ════════════════════════════
   RESPONSIVO — SMALL (≤ 480px)
════════════════════════════ */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.4rem;
  }
  .title-section {
    font-size: 1.4rem;
  }
  .title-cyan {
    font-size: 1.5rem;
  }
  .footer-logo-text {
    font-size: 2.5rem;
  }
  .btn-secondary {
    padding: 10px 24px;
    font-size: 0.85rem;
  }
  .mvv-card {
    padding: 30px 20px;
  }
  .mvv-icon {
    width: 50px;
    height: 50px;
  }
  .btn-back {
    top: 20px;
    left: 20px;
    font-size: 12px;
    padding: 8px 15px;
  }
}