/**
 * CLÍNICA SÃO TOMÁS - STYLESHEET PRINCIPAL
 * Baseado em MediLab Template + Customizações
 * Cores do site: https://cavalcantemath.wixsite.com/clinicatomas
 */

/*--------------------------------------------------------------
# Variáveis CSS - Cores e Fontes
--------------------------------------------------------------*/
:root {
  /* Fontes */
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Raleway", sans-serif;
  
  /* Cores Principais */
  --background-color: #ffffff;
  --default-color: #333333;
  --heading-color: #1a4d7a;
  --accent-color: #2b7ec1;
  --accent-hover: #1e5a8f;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  
  /* Paleta de Azuis */
  --light-blue: #e8f4fc;
  --medium-blue: #5ba3d6;
  --dark-blue: #1a4d7a;
  
  /* Navegação */
  --nav-color: #ffffff;
  --nav-hover-color: #ffd700;
  --nav-mobile-background-color: #1a4d7a;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #1a4d7a;
  --nav-dropdown-hover-color: #2b7ec1;
  
  /* WhatsApp */
  --whatsapp-green: #25D366;
  --whatsapp-hover: #1da851;
  
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Utilitários - SEO e Acessibilidade
--------------------------------------------------------------*/
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.light-background {
  --background-color: #e8f4fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# Reset e Base
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.6;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--accent-hover);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

/*--------------------------------------------------------------
# Container e Grid
--------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}




.container-fluid {
  width: 100%;
  padding: 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.row.g-0 {
  margin: 0;
}

.row.g-0 > * {
  padding: 0;
}

.col-lg-6,
.col-lg-4,
.col-lg-3,
.col-md-6 {
  padding: 0 15px;
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/* Desktop Grid */


/*--------------------------------------------------------------
# Seções
--------------------------------------------------------------*/
.section {
  padding: 80px 0;
  width: 100%;
}


.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  gap: 16px;
}

.section-title h2 {
  width: 100%;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  width: 100%;
  margin-bottom: 0;
  color: #6c757d;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Botões
--------------------------------------------------------------*/
.btn-primary {
  background: linear-gradient(135deg, #2b7ec1 0%, #5ba3d6 100%);
  color: var(--contrast-color);
  padding: 14px 35px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(43, 126, 193, 0.3);
  text-align: center;
  white-space: nowrap;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1e5a8f 0%, #2b7ec1 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 126, 193, 0.4);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  width: fit-content;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
  font-size: 20px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: linear-gradient(135deg, #1a4d7a 0%, #2b7ec1 100%);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 2px solid rgba(91, 163, 214, 0.3);
}

.branding {
  padding: 12px 0;
}










.branding .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  height: 80px;
}

.logo-img {
  height: 80px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}








/*--------------------------------------------------------------
# Navegação
--------------------------------------------------------------*/
.navmenu {
  display: flex;
  align-items: center;
}

.navmenu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.navmenu a {
  color: var(--nav-color);
  font-family: var(--nav-font);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.navmenu a:hover,
.navmenu a.active {
  color: var(--nav-hover-color);
}

.cta-btn {
  background: var(--contrast-color);
  color: var(--dark-blue);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: var(--nav-hover-color);
  color: var(--dark-blue);
  transform: translateY(-2px);
}

.mobile-nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--nav-color);
  background: none;
  border: none;
  padding: 8px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  background: linear-gradient(135deg, #1a4d7a 0%, #2b7ec1 100%);
  padding: 0;
  min-height: 600px;
  overflow: hidden;
  position: relative;
}

.hero .container-fluid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

.hero .row {
  min-height: 600px;
  margin: 0;
  display: flex;
  align-items: stretch;
}

/* Coluna do texto (esquerda) - 40% */
.hero .col-lg-6:first-child {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 15px;
}

/* Coluna da imagem (direita) - 60% */
.hero .col-lg-6:last-child {
  flex: 0 0 60%;
  max-width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--contrast-color);
  width: 100%;
  text-align: left;
}

.hero h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 20px;
  line-height: 1.3;
  max-width: 100%;
}

.hero p {
  font-size: 1.1rem;
  color: var(--contrast-color);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 100%;
}

.hero-img-col {
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.hero-img img {
  width: 95%;
  height: auto;
  max-height: 550px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

/* Hero Responsive */



/*--------------------------------------------------------------
# Cartão Tomazinho
--------------------------------------------------------------*/
.cartao-section {
  background: #ffffff;
  padding: 48px 0;
  color: var(--default-color);
}

/* Desktop: Garante layout lado a lado */
@media (min-width: 992px) {
  .cartao-section .row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
  }
  
  .cartao-section .col-lg-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  
  /* FORÇA CENTRALIZAÇÃO EM DESKTOP PARA TODOS OS BLOCOS */
  .section-title {
    text-align: center !important;
  }
  
  .section-title h2 {
    text-align: center !important;
  }
  
  .section-title p {
    text-align: center !important;
  }
}

.cartao-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 24px;
}

.cartao-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
  text-align: center;
}

.cartao-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 16px;
  text-align: center;
}

.cartao-content > p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--default-color);
  text-align: center;
}

.cartao-img {
  text-align: center;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cartao-img img {
  max-width: 100%;
  height: auto;
  background: transparent;
}

.cartao-info h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
  text-align: center;
}

.cartao-info h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 24px;
}

.cartao-info p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--default-color);
}

.cartao-plans {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--medium-blue) 100%);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(43, 126, 193, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.cartao-plans:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(43, 126, 193, 0.4);
}

.cartao-plans h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 16px;
}

.cartao-plans ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cartao-plans li {
  padding: 8px 0;
  font-size: 16px;
  color: var(--contrast-color);
}

.cartao-plans li strong {
  color: #ffd700;
  font-weight: 700;
}

.cartao-form-section {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--medium-blue) 100%);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(43, 126, 193, 0.3);
  transition: all 0.3s ease;
}

.cartao-form-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(43, 126, 193, 0.4);
}

.cartao-form-section h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 24px;
  text-align: center;
}

.cartao-form .form-group {
  margin-bottom: 15px;
}

.cartao-form input,
.cartao-form select {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.cartao-form input[type="date"] {
  color: #999;
}

.cartao-form input[type="date"]:focus,
.cartao-form input[type="date"]:valid {
  color: var(--default-color);
}

.cartao-form input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

.cartao-form input:focus,
.cartao-form select:focus {
  outline: none;
  border-color: #ffd700;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.cartao-form input::placeholder {
  color: #999;
}

.cartao-form button[type="submit"] {
  width: fit-content;
  margin: 16px auto 0;
  display: block;
  padding: 12px 24px !important;
}

.cartao-benefits {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 2px solid var(--accent-color);
}

.cartao-benefits h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 32px;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.benefit-box {
  background: var(--surface-color);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.benefit-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.benefit-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.benefit-box p {
  font-size: 14px;
  color: var(--default-color);
  margin: 0;
}

/* Cartão Tomazinho Responsive */



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: var(--light-blue);
  padding: 48px 0;
}

.about h2 {
  color: var(--heading-color);
}

.about p {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.8;
}

/*--------------------------------------------------------------
# Estatísticas (Stats)
--------------------------------------------------------------*/
.stats {
  background: linear-gradient(135deg, #2b7ec1 0%, #5ba3d6 100%);
  color: var(--contrast-color);
  padding: 60px 0;
}

.stats .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.stats .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.stats .col-lg-3,
.stats .col-md-6 {
  display: flex;
  justify-content: center;
}

.stats .col-lg-3:not(:last-child),
.stats .col-md-6:not(:last-child) {
  margin-bottom: 24px;
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  width: 100%;
}

.stats-item span {
  font-size: 48px;
  font-weight: 700;
  color: var(--contrast-color);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.stats-item p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 500;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
  cursor: pointer;
}

.faq-item .faq-toggle {
  font-size: 18px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq-item .faq-content {
  display: none;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(43, 126, 193, 0.15);
}

.faq-item .faq-content p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.6;
}

.faq-item.faq-active .faq-content {
  display: block;
}

.faq-item.faq-active .faq-toggle {
  transform: rotate(90deg);
}

.faq-item + .faq-item {
  margin-top: 0;
}

@media (min-width: 992px) {
  .stats .col-lg-3 {
    margin-bottom: 0;
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
}

/*--------------------------------------------------------------
# Icon Boxes
--------------------------------------------------------------*/
.icon-box {
  background: var(--surface-color);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 24px;
}

.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.icon-box i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.icon-box h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.icon-box p {
  font-size: 15px;
  color: var(--default-color);
  margin: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: var(--dark-blue);
  color: var(--contrast-color);
  padding: 40px 0 16px;
}

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

.footer .row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: nowrap;
  max-width: 1000px;
  margin: 0 auto;
}

.footer .col-lg-3 {
  flex: 0 0 auto;
  max-width: 220px;
  min-width: 200px;
}

.footer .col-lg-3:first-child {
  max-width: 240px;
}

.footer .footer-contact {
  max-width: 302px;
  padding-right: 3px;
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.6;
}

.footer a:hover {
  color: var(--nav-hover-color);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  padding: 3px 0;
}

.footer .social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer .social-links a {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links ul li a:hover {
  color: var(--nav-hover-color);
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  text-align: left;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact .contact-item:last-of-type {
  margin-bottom: 0;
}

.footer-contact .contact-item i {
  font-size: 18px;
  color: var(--contrast-color);
  flex-shrink: 0;
}

.footer-contact .contact-item span,
.footer-contact .contact-item a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact .contact-item a:hover {
  color: var(--nav-hover-color);
}

.footer-maps ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-maps ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-maps ul li i {
  font-size: 18px;
  color: var(--contrast-color);
}

.footer-maps ul li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-maps ul li a:hover {
  color: var(--nav-hover-color);
}

.footer .copyright {
  text-align: center;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  width: 100%;
  display: block;
}

.footer .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.footer .contact-item i {
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer .map-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer .map-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer .map-links a i {
  font-size: 14px;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# Scroll to Top
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #2b7ec1 0%, #5ba3d6 100%);
  color: var(--contrast-color);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(43, 126, 193, 0.4);
  border: none;
}

.scroll-top:hover {
  background: linear-gradient(135deg, #1e5a8f 0%, #2b7ec1 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(43, 126, 193, 0.5);
}

.scroll-top.active {
  display: flex;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-4 {
  margin-top: 32px;
}

.d-none {
  display: none;
}

.d-flex {
  display: flex;
}

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

.justify-content-between {
  justify-content: space-between;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

/*--------------------------------------------------------------
# Tooltip Flutuante de Especialidades
--------------------------------------------------------------*/
.especialidade-card-hover {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.especialidade-card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Descrição oculta para SEO */
.especialidade-descricao-seo {
  display: none !important;
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Tooltip flutuante */
.especialidade-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  margin-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}

.especialidade-card-hover:hover .especialidade-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.tooltip-content {
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  min-width: 280px;
  max-width: 350px;
  border: 1px solid #e0e0e0;
  position: relative;
}

.tooltip-content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: white transparent transparent transparent;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

.tooltip-content p {
  margin: 0 0 12px 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
  text-align: center;
}

.btn-tooltip-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--whatsapp-green);
  color: white !important;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  width: 100%;
}

.btn-tooltip-whatsapp i {
  font-size: 1rem;
  color: white !important;
}

.btn-tooltip-whatsapp:hover {
  background: var(--whatsapp-hover);
  color: white !important;
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-tooltip-whatsapp:hover i {
  color: white !important;
}

/*--------------------------------------------------------------
# FIM DO STYLESHEET
--------------------------------------------------------------*/
