/* Convertendo para design preto premium com dourado real */
/* Design Premium Reformulado - Elegância Máxima */
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", "Cormorant Garamond", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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

/* Typography Premium */
/* Typography Premium Reformulada */
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.text-gold {
  color: #d4af37;
  background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

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

/* Header redesenhado com logo centralizada ENTRE os menus */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.2);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Menus da esquerda e direita com logo centralizada entre eles */
.nav-left,
.nav-right {
  display: flex;
  gap: 2.5rem;
  flex: 1;
}

.nav-left {
  justify-content: flex-end;
  margin-right: 2rem;
}

.nav-right {
  justify-content: flex-start;
  margin-left: 2rem;
}

.nav-left .nav-link,
.nav-right .nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
}

.nav-left .nav-link:hover,
.nav-right .nav-link:hover {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Logo centralizada entre os menus */
.logo-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-img {
  height: 90px;
  width: auto;
  filter: invert(1) brightness(1.2);
  transition: all 0.3s ease;
}

.logo-img:hover {
  filter: invert(1) brightness(1.5) drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
  transform: scale(1.05);
}

/* Menu mobile redesenhado para novo layout */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
  position: absolute;
  right: 2rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #d4af37;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Menu mobile overlay redesenhado */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1001;
  transition: left 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-menu-overlay.active {
  left: 0;
}

.mobile-menu-content {
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 400px;
}

/* Adicionando botão de fechar limpo e visível */
.mobile-menu-close {
  position: absolute;
  top: -100px;
  right: 20px;
  background: none;
  border: none;
  color: #d4af37;
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  transition: all 0.3s ease;
  z-index: 1002;
}

.mobile-menu-close:hover {
  color: #ffffff;
  transform: rotate(90deg);
}

/* Removendo logo desnecessária do menu mobile */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1.5rem 2rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  border: 2px solid transparent;
}

.mobile-nav-link:hover {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.15);
  border-color: #d4af37;
  transform: translateX(10px);
}

/* Simplificando botões de contato mobile */
.mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 2rem;
}

.mobile-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 25px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mobile-contact-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
  transform: translateY(-5px);
}

.mobile-contact-btn.whatsapp {
  background: rgba(37, 211, 102, 0.2);
  border-color: #25d366;
}

.mobile-contact-btn.whatsapp:hover {
  background: rgba(37, 211, 102, 0.3);
  border-color: #25d366;
}

.mobile-contact-btn i {
  font-size: 1.3rem;
}

/* Hero Section Premium */
/* Hero Section completamente reformulado com tipografia elegante */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  padding-top: 140px;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Badge redesenhado para atuação nacional */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(212, 175, 55, 0.2);
  border: 2px solid #d4af37;
  color: #d4af37;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(15px);
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif;
}

/* Título reformulado com tipografia elegante */
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.hero-main {
  display: block;
  font-size: 5.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.2rem;
  letter-spacing: 2px;
}

.hero-accent {
  display: block;
  font-size: 5.5rem;
  background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #d4af37;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.hero-description {
  font-size: 1.3rem;
  color: #cccccc;
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 650px;
  font-weight: 300;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  gap: 4rem;
  margin-bottom: 3.5rem;
  justify-content: center;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #d4af37;
  display: block;
  font-family: "Cormorant Garamond", serif;
}

.stat-label {
  font-size: 0.95rem;
  color: #cccccc;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* Botões redesenhados mais elegantes */
.hero-buttons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
}

.btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-text {
  font-size: 1.1rem;
  font-weight: 700;
}

.btn-subtitle {
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 400;
}

.btn i {
  font-size: 1.3rem;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
  color: #000000;
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 2px solid #d4af37;
  backdrop-filter: blur(15px);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
}

/* About Section com credenciais do Dr. Reginaldo */
.about {
  padding: 8rem 0;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.about-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
  color: #000000;
  padding: 1rem;
  border-radius: 15px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
}

/* Adicionando estilos para credenciais do Dr. Reginaldo */
.about-credentials {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(212, 175, 55, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 25px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.credential-item i {
  color: #d4af37;
  font-size: 1.2rem;
}

.credential-item span {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}

.about-lead {
  font-size: 1.4rem;
  color: #cccccc;
  margin-bottom: 3rem;
  line-height: 1.8;
  font-weight: 300;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.highlight {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.highlight i {
  font-size: 2rem;
  color: #d4af37;
  margin-top: 0.5rem;
}

.highlight h4 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.highlight p {
  color: #cccccc;
  line-height: 1.6;
}

.about-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-contact span {
  color: #cccccc;
  margin-right: 1rem;
}

.about-contact a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Contact Section */
.contact {
  padding: 8rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.contact-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.contact-card p {
  color: #cccccc;
  line-height: 1.6;
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 3rem;
  border-radius: 25px;
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #cccccc;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 1.2rem 1.5rem 1.2rem 3rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.form-input:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-input::placeholder {
  color: #888888;
}

.form-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #d4af37;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

/* Footer Premium */
.footer {
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
  padding: 4rem 0 2rem;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

/* Logo do footer também invertida para branco */
.footer-logo {
  height: 80px;
  width: auto;
  filter: invert(1) brightness(1.2);
}

.footer-brand-text h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.footer-brand-text p {
  color: #cccccc;
  margin-bottom: 1rem;
}

.footer-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-credentials span {
  font-size: 0.9rem;
  color: #888888;
}

.footer-links h5 {
  color: #d4af37;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-contact h5 {
  color: #d4af37;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-contact p {
  color: #cccccc;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  color: #888888;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

/* WhatsApp Float Premium */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-btn {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2.2rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: pulse 2s infinite;
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 80px;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 25px;
  border: 8px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Specialties Section */
.specialties {
  padding: 8rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #cccccc;
  font-weight: 300;
  margin-top: 1rem;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.specialty-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 3rem 2rem;
  border-radius: 25px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.specialty-card:hover {
  transform: translateY(-15px);
  border-color: #d4af37;
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.3);
}

.specialty-card.featured {
  border: 2px solid #d4af37;
  background: rgba(212, 175, 55, 0.05);
}

.specialty-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
  color: #000000;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.specialty-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 2rem;
  margin: 0 auto 2rem;
}

.specialty-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.specialty-card p {
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.specialty-features {
  list-style: none;
  text-align: left;
}

.specialty-features li {
  color: #cccccc;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.specialty-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

/* Responsive Design Premium */
@media (max-width: 1200px) {
  .nav-left,
  .nav-right {
    gap: 1.5rem;
  }

  .nav-left {
    margin-right: 1.5rem;
  }

  .nav-right {
    margin-left: 1.5rem;
  }

  .logo-img {
    height: 80px;
  }

  .hero-main,
  .hero-accent {
    font-size: 4.5rem;
  }
}

@media (max-width: 968px) {
  /* Header mobile com logo centralizada e menu hamburger */
  .nav-left,
  .nav-right {
    display: none;
  }

  .logo-center {
    position: static;
    flex: 1;
    justify-content: center;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .section-title {
    font-size: 3rem;
  }

  /* Corrigindo tamanhos de fonte mobile para evitar corte */
  .hero-main,
  .hero-accent {
    font-size: 3.2rem;
    line-height: 1.1;
  }

  .hero-badge {
    font-size: 0.85rem;
    padding: 0.8rem 1.5rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90vw;
  }

  .hero-stats {
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .specialties-grid {
    grid-template-columns: 1fr;
  }

  .hero-container {
    padding: 0 1.5rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-description {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .about-credentials {
    justify-content: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 1rem 1.5rem;
  }

  .mobile-menu-toggle {
    right: 1.5rem;
  }

  .hero {
    padding-top: 120px;
  }

  /* Ajustando tamanhos para telas muito pequenas */
  .hero-main,
  .hero-accent {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.6rem 1rem;
    margin-bottom: 2rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .about-img {
    height: 400px;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-btn {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .specialty-card {
    padding: 2rem 1rem;
  }

  .specialty-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 360px) {
  /* Otimizações para telas extra pequenas */
  .hero-main,
  .hero-accent {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
  }

  .hero-stats {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .hero-stat {
    margin-bottom: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .btn {
    padding: 1.2rem 2rem;
    font-size: 0.9rem;
  }

  .btn-text {
    font-size: 1rem;
  }

  .btn-subtitle {
    font-size: 0.75rem;
  }
}
