/* ===== VARIÁVEIS ===== */
:root {
  --primary: #0d9488;
  --primary-dark: #0b7c6f;
  --secondary: #e0f2f1;
  --accent: #f59e0b;
  --bg: #f9fafb;
  --text: #374151;
  --text-light: #6b7280;
  --white: #ffffff;
  --shadow-soft: rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 25px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* ===== RESET E BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MENU DE NAVEGAÇÃO ===== */
.main-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 9999;
  transition: all 0.3s ease;
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.menu-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  line-height: 1;
}

.logo-profession {
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.8;
}

.menu-items {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.menu-items li a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.menu-items li a:hover,
.menu-items li a:focus {
  color: var(--primary);
  outline: none;
}

.menu-items li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.menu-items li a:hover::after {
  width: 100%;
}

.menu-cta {
  background: var(--primary);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  box-shadow: 0 3px 10px rgba(13, 148, 136, 0.2);
}

.menu-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 148, 136, 0.3);
  color: var(--white);
}

/* ===== BOTÃO MOBILE COM GRADIENTE ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 10000;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background: #2d3e50; /* azul acinzentado escuro */
  border-radius: 3px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Efeito hover suave */
.menu-toggle:hover span {
  background: #6ecfc6;
  opacity: 0.8;
}

/* Efeito de fundo ao clicar (opcional) */
.menu-toggle:active {
  transform: scale(0.95);
}

/* Estado ativo (X) */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: #0b7c6f; /* verde mais escuro e sóbrio */
  box-shadow: 0 2px 4px rgba(11, 124, 111, 0.2);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background: #0b7c6f;
  box-shadow: 0 2px 4px rgba(11, 124, 111, 0.2);
}

/* Fundo do botão ao abrir o menu (opcional) */
.menu-toggle.active {
  background: rgba(13, 148, 136, 0.05);
  border-radius: 8px;
  padding: 4px;
}

/* ===== BOTÃO WHATSAPP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: var(--white);
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
  z-index: 1000;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

.whatsapp-btn img {
  width: 20px;
  height: 20px;
}

/* ===== HEADER / HERO ===== */
header {
  background: linear-gradient(135deg, #1a5f7a 0%, #159895 100%);
  color: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
  margin-top: 70px; /* ← MUDAR ESTE VALOR */
  animation: fadeIn 1s ease;
}

.header-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.header-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid var(--white);
}

.header-name {
  font-size: 2.2rem;
  margin-bottom: 5px;
  font-weight: 700;
  color: var(--white);
}

.header-profession {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 15px;
  opacity: 0.9;
  color: var(--white);
}

.header-crp {
  font-size: 1.1rem;
  margin-bottom: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
}

.header-description {
  max-width: 600px;
  margin: 0 auto 25px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ===== BOTÕES CTA ===== */
.cta-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta {
  background-color: #25D366;
  color: var(--white);
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta.alt {
  background-color: #FF8C00;
  border: 2px solid var(--white);
}

.cta.alt:hover {
  background-color: var(--white);
  color: #159895;
}

.cta-button {
  padding: 1.1rem 2.5rem;
  font-weight: 700;
  border-radius: 35px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  user-select: none;
  background: var(--primary);
  color: var(--white);
  border: none;
  min-width: 190px;
}

.cta-button:hover,
.cta-button:focus {
  background: var(--primary-dark);
  transform: translateY(-3px);
  color: var(--white);
  box-shadow: var(--shadow-hover);
  outline: none;
}

.cta-button.secondary {
  background: transparent;
  border: 2.5px solid var(--white);
  color: var(--white);
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: #ddd;
}

/* ===== SEÇÕES ===== */
section {
  padding: 4rem 1.25rem;
  max-width: 1200px;
  margin: auto;
}

h2 {
  font-weight: 700;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: var(--primary);
  animation: fadeInUp 1s ease forwards;
}

h3 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

h4 {
  font-weight: 700;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 2.5rem;
  color: var(--primary);
  animation: fadeInUp 1s ease forwards;
}

/* Gradiente comum para várias seções */
.eu,
.pac,
.at,
.local,
.perg,
.grid1 {
  background: linear-gradient(135deg, rgba(106, 159, 181, 0.03), rgba(125, 159, 142, 0.03));
}

/* ===== ESPECIALIDADES ACCORDION ===== */
.especialidades-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.especialidade-item {
  margin-bottom: 1px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.09);
}

.especialidade-header {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s;
}

.especialidade-header:hover {
  background-color: #f5f9f9;
}

.especialidade-title-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.especialidade-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.especialidade-title {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.especialidade-arrow {
  font-size: 14px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.especialidade-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #f8fdff;
}

.especialidade-description {
  padding: 0 20px 20px 65px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
}

.especialidade-item.active .especialidade-arrow {
  transform: rotate(180deg);
}

.especialidade-item.active .especialidade-content {
  max-height: 200px;
}

/* ===== SOBRE ===== */
.sobre {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  animation: fadeInUp 1.2s ease forwards;
}

.sobre img {
  max-width: 320px;
  border-radius: 50px;
  justify-self: center;
  box-shadow: 0 10px 25px var(--shadow-soft);
}

.sobre p {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
}

/* ===== ABORDAGEM ===== */
.abordagem-section {
  padding: 4rem 2rem;
  border-radius: 20px;
  margin: 3rem auto;
}

.abordagem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.abordagem-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 1s ease forwards;
}

.abordagem-card:hover,
.abordagem-card:focus-within {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  outline: none;
}

.abordagem-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.abordagem-icon img {
  width: 40px;
  height: 40px;
}

.abordagem-cta {
  margin-top: 3rem;
  text-align: center;
}

/* ===== JORNADA ACCORDION ===== */
.accordion {
  border-bottom: 1px solid #eaeaea;
}

.accordion-item {
  border-top: 1px solid #eaeaea;
}

.accordion-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, rgba(106, 159, 181, 0.03), rgba(125, 159, 142, 0.03));
  transition: background 0.3s;
}

.accordion-header:hover {
  background: #f9f9f9;
}

.accordion-header h3 {
  font-size: 18px;
  color: var(--primary);
  font-weight: 600;
  margin: 0;
}

.accordion-icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.accordion-header img {
  width: 40px;
  height: 40px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #f8fdff;
}

.accordion-inner {
  padding: 0 20px 20px 50px;
}

.accordion-inner p {
  margin-bottom: 15px;
  font-size: 16px;
}

.step-number {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  margin-right: 10px;
  font-weight: bold;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
  max-height: 700px;
}

/* ===== CREDIBILIDADE ===== */
.credibilidade {
  text-align: center;
  margin: 3rem 0 1rem 0;
}

.credenciais {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.credencial-item {
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
  cursor: default;
  transition: transform 0.3s ease;
}

.credencial-item:hover,
.credencial-item:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  outline: none;
}

.credencial-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.05));
}

.credencial-item h3 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.credencial-item p {
  font-weight: 500;
  color: var(--text);
  font-size: 1rem;
}

/* ===== GRIDS E CARDS ===== */
.grid,
.grid1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease forwards;
  cursor: default;
  user-select: none;
}

.card:hover,
.card:focus-within {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
  outline: none;
}

.card img {
  width: 90px;
  height: 90px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.07));
}

/* ===== MODALIDADES ===== */
.modalidade-card {
  padding: 2rem 1.5rem;
  border-radius: 15px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  text-align: center;
  user-select: none;
  cursor: default;
}

.modalidade-card:hover,
.modalidade-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  outline: none;
}

.modalidade-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1rem auto;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.modalidade-icon img {
  width: 45px;
  height: 45px;
}

.modalidade-card h3 {
  font-size: 1.4rem;
  margin-top: 0.75rem;
  color: var(--primary);
}

.modalidade-card p {
  margin-top: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  min-height: 85px;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  background: var(--secondary);
  border-radius: 15px;
  padding: 2.5rem 1.8rem;
  text-align: center;
  font-style: italic;
  color: #333;
  min-height: 160px;
  box-shadow: inset 0 0 10px #ccc;
  transition: box-shadow 0.3s;
  user-select: none;
  cursor: default;
}

.depoimentos:hover,
.depoimentos:focus-within {
  box-shadow: inset 0 0 15px #bbb;
  outline: none;
}

.depo {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.depoimentos strong {
  display: block;
  margin-top: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-style: normal;
}

/* ===== LOCALIZAÇÃO ===== */
.localizacao {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-md);
}

.localizacao p {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.acesso-metro {
  display: flex;
  align-items: center;
  margin: 1.2rem auto;
  background: #f0f7ff;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  max-width: 550px;
  box-shadow: 0 3px 10px var(--shadow-soft);
  transition: background 0.3s ease;
  cursor: default;
}

.acesso-metro:hover,
.acesso-metro:focus-within {
  background: #d9ecff;
  outline: none;
}

.acesso-metro img {
  width: 45px;
  height: 45px;
  margin-right: 1.25rem;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.05));
}

.acesso-metro h3 {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.acesso-metro p {
  margin: 0;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
}

.mapa {
  height: 320px;
  border-radius: 14px;
  margin-top: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.mapa iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== FORMULÁRIO ===== */
form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation: fadeInUp 1s ease forwards;
}

input,
textarea,
select {
  font-size: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 12px;
  border: 1.8px solid #ccc;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
  resize: vertical;
  color: var(--text);
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.03);
}

input::placeholder,
textarea::placeholder,
select {
  color: #999;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 8px rgba(13, 148, 136, 0.3);
}

button {
  padding: 1.15rem;
  background: var(--primary);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 35px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
  user-select: none;
}

button:hover,
button:focus {
  background: var(--primary-dark);
  transform: translateY(-3px);
  color: var(--white);
  outline: none;
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.55);
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 1rem 2rem;
  margin-top: 4rem;
  user-select: none;
  font-weight: 500;
  box-shadow: inset 0 5px 20px rgba(0,0,0,0.08);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  font-size: 0.95rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.3s;
  font-weight: 400;
}

.footer-section a:hover,
.footer-section a:focus {
  color: var(--white);
  text-decoration: underline;
  outline: none;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

/* ===== RESPONSIVO ===== */

/* ===== TABLET 8" - SOLUÇÃO SIMPLES ===== */
@media (max-width: 900px) {
  .menu-items {
    gap: 0.3rem;
  }
  
  .menu-items li a {
    font-size: 0.65rem;
    padding: 0.2rem 0;
  }
  
  .logo-img {
    width: 28px;
    height: 28px;
  }
  
  .logo-name {
    font-size: 0.8rem;
  }
  
  .logo-profession {
    font-size: 0.6rem;
  }
  
  .menu-cta {
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
  }
  
  header {
    margin-top: 55px;
  }
}








@media (max-width: 768px) {
  .menu-items {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
  }
  
  .menu-items.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .menu-items li {
    width: 100%;
    text-align: center;
  }
  
  .menu-items li a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-cta {
    display: none;
  }
  
  .whatsapp-btn {
    bottom: 15px;
    right: 15px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .whatsapp-btn img {
    width: 18px;
    height: 18px;
  }
  
  header {
    padding: 20px;
  }
  
  .header-name {
    font-size: 1.8rem;
  }
  
  .header-profession {
    font-size: 1.2rem;
  }
  
  
  .cta-container {
    flex-direction: column;
    align-items: center;
  }
  
  .cta {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  
  h2 {
    font-size: 1.8rem;
  }
  
  h4 {
    font-size: 1.4rem;
  }
  
  .sobre {
    grid-template-columns: 1fr;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  
  .sobre .eu {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .acesso-metro {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .acesso-metro img {
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
  
  .especialidade-header {
    padding: 14px 16px;
  }
  
  .especialidade-title {
    font-size: 1rem;
  }
  
  .especialidade-icon {
    width: 24px;
    height: 24px;
  }
  
  .especialidade-title-container {
    gap: 8px;
  }
  
  .especialidade-description {
    padding: 0 16px 16px 55px;
    font-size: 0.95rem;
  }
  
  .accordion-header {
    padding: 16px;
  }
  
  .accordion-header h3 {
    font-size: 16px;
  }
  
  .accordion-inner {
    padding: 0 16px 16px 16px;
  }
  
  .step-number {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 14px;
  }
  
  .card,
  .modalidade-card,
  .abordagem-card {
    padding: 1.5rem;
  }
  
  .cta-button {
    min-width: 150px;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 2.4rem;
  }
  
  .header-name {
    font-size: 1.5rem;
  }
  
  .header-logo {
    width: 80px;
    height: 80px;
  }
  
  section {
    padding: 2rem 1rem;
  }
}