:root{
  --ast-global-color-0:#0B6E4F;
  --ast-global-color-1:#8BC698;
  --ast-global-color-2:#4A306D;
  --ast-global-color-3:#B986BB;
  --ast-global-color-4:#F0F8F2;
  --ast-global-color-5:#FFFFFF;
  --ast-global-color-6:#F7F9F7;
  --ast-global-color-7:#424242;
  --ast-global-color-8:#000000;
}

html{
  scroll-behavior: smooth;
}

body{
  font:16px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Arial,sans-serif;
  margin:0;
  color:#111;
  background:#fff
}

a{
  color:var(--ast-global-color-1);
  text-decoration:none
}

img{
  max-width:100%;
  display:block
}

.container{
  max-width:1140px;
  margin:auto;
  padding:0 20px
}

@media(max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

/* Header e Navegação */
header{
  position:sticky;
  top:0;
  z-index:1001;
  background:#fff;
  border-bottom:1px solid #e9eef3;
  backdrop-filter:saturate(120%) blur(4px)
}

.nav{
  display:grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items:center;
  height:80px;
  gap: 20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:2px;
  color:var(--ast-global-color-0);
  font-weight:700
}

.brand-logo{
  width:80px;
  height:80px;
  border-radius:20px;
  object-fit: cover;
}

.brand-name{
  height:45px;
  width: auto;
  object-fit: contain;
  margin-top: 15px;
}

.menu{
  display:flex;
  gap:20px;
  align-items:center;
  justify-content:center;
}

.btn{
  background:var(--ast-global-color-2);
  color:#fff;
  padding:10px 14px;
  border-radius:10px;
  border:1px solid var(--ast-global-color-2);
  font-weight:700;
  display:inline-block
}

.btn:hover{
  background:var(--ast-global-color-3);
  border-color:var(--ast-global-color-3)
}

.menu a{
  color:#193056;
  font-weight:600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Botão WhatsApp */
.whatsapp-btn{
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  justify-self: end;
}

.whatsapp-btn:hover{
  background: #20ba5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn svg{
  flex-shrink: 0;
}

/* Garantir que o botão do topo use o mesmo estilo dos demais */
.menu a.btn{
  background:var(--ast-global-color-2);
  color:#fff;
  font-weight:700;
  padding:10px 14px;
  border-radius:10px;
  border:1px solid var(--ast-global-color-2);
  display:inline-block
}

.menu a.btn:hover{
  background:var(--ast-global-color-3);
  border-color:var(--ast-global-color-3)
}

.hamb{
  display:none
}

.drawer{
  display:none
}

/* Menu mobile - NOVO */
@media(max-width:900px){
  .nav{
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }
  
  .menu{
    display:none
  }
  
  .whatsapp-btn{
    display: none;
  }
  
  .hamb{
    display:block !important;
    background: transparent;
    border: 0;
    font-size: 24px;
    cursor: pointer;
    color: var(--ast-global-color-0);
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .hamb:hover {
    background-color: #f1f5f9;
  }
  
  /* Menu Mobile Completamente Novo */
  .drawer{
    display: none;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    z-index: 999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: auto;
    max-height: none;
  }
  
  .drawer.open{
    display: block;
    visibility: visible;
    opacity: 1;
  }
  
  .drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 20px 16px;
    gap: 8px;
    min-height: auto;
    width: 100%;
    box-sizing: border-box;
  }
  
  .drawer-nav a{
    display: block;
    padding: 16px 20px;
    color: #1e293b;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
    background: transparent;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.4s ease forwards;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
  }
  
  .drawer.open .drawer-nav a:nth-child(1) { animation-delay: 0.1s; }
  .drawer.open .drawer-nav a:nth-child(2) { animation-delay: 0.15s; }
  .drawer.open .drawer-nav a:nth-child(3) { animation-delay: 0.2s; }
  .drawer.open .drawer-nav a:nth-child(4) { animation-delay: 0.25s; }
  
  .drawer-nav a:hover {
    background: #f0f4f8;
    color: var(--ast-global-color-0);
  }
  
  .drawer-nav a.btn {
    background: var(--ast-global-color-2);
    color: white;
    font-weight: 700;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .drawer-nav a.btn:hover {
    background: var(--ast-global-color-3);
  }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
  .drawer {
    top: 70px;
    height: auto;
    max-height: none;
  }
  
  .drawer-nav {
    padding: 16px 12px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .drawer-nav a {
    padding: 14px 16px;
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Forçar grid de vantagens em 1 coluna */
  .advantages-grid {
    grid-template-columns: 1fr !important;
    width: 100%;
    box-sizing: border-box;
  }
  
  .advantage-card {
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
  }
  
  .process-cards {
    width: 100%;
    box-sizing: border-box;
  }
  
  .process-card {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 16px;
  }
  
  /* Forçar grid de especialidades em 1 coluna */
  .specialties-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Botão WhatsApp no mobile */
  .whatsapp-mobile-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366 !important;
    color: white !important;
    font-weight: 600;
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .whatsapp-mobile-btn:hover {
    background: #20ba5a !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
  }
  
  .whatsapp-mobile-btn svg {
    flex-shrink: 0;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section */
.hero{
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 120px;
}

.hero-background{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/Logo e Identidade/capa.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 48, 109, 0.8) 0%, rgba(185, 134, 187, 0.6) 100%);
  z-index: 2;
}

.hero-content{
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 40px 0 20px;
  justify-content: center;
  max-width: none;
  margin: 0;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.hero-text{
  max-width: 600px;
  color: white;
  margin-left: 0;
  padding-left: 0;
}

.kicker{
  color: #E8E0F0;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:12px
}

.hero h1{
  margin:.2em 0;
  color: white;
  font-size:clamp(28px,6vw,44px);
  line-height:1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p{
  margin:0 0 20px;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Wave Divider */
.wave-divider{
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 4;
  pointer-events: none;
  line-height: 0;
}

.wave-divider svg{
  width: 100%;
  height: 100%;
  display: block;
}

/* Hero Form Styles */
.hero-form{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;
}

.form-card{
  background: rgba(74, 48, 109, 0.9);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 400px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-card h3{
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px 0;
  text-align: center;
}

.form-card p{
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0 0 24px 0;
  text-align: center;
  line-height: 1.5;
}

.hero-contact-form{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-contact-form input,
.hero-contact-form textarea{
  background: white;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
  font-family: inherit;
  transition: all 0.3s ease;
}

.hero-contact-form input:focus,
.hero-contact-form textarea:focus{
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.3);
}

.hero-contact-form input::placeholder,
.hero-contact-form textarea::placeholder{
  color: #999;
}

.form-btn{
  background: var(--ast-global-color-2);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.form-btn:hover{
  background: var(--ast-global-color-3);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(74, 48, 109, 0.3);
}

.hero-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap
}

/* Nova seção de contato no hero */
.hero-cta-new {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.location-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
}

.location-icon {
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

.contact-section {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.contact-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.contact-btn svg {
  flex-shrink: 0;
}

.phone-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 600;
}

.phone-icon {
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

.badge{
  font-size:13px;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  border:1px solid rgba(255, 255, 255, 0.3);
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  backdrop-filter: blur(10px);
}

@media(max-width:900px){
  .hero {
    min-height: 65vh;
    padding-bottom: 100px;
  }
  
  .hero-content {
    padding: 30px 0 20px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-form {
    padding-top: 0;
    align-items: center;
  }
  
  .form-card {
    max-width: 100%;
    padding: 24px;
  }
  
  .hero-cta-new {
    margin-top: 20px;
  }
  
  .location-info {
    font-size: 13px;
    margin-bottom: 8px;
    padding: 0 20px;
    justify-content: center;
  }
  
  .contact-section {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
  }
  
  .phone-info {
    font-size: 14px;
    justify-content: center;
    order: 2;
  }
  
  .contact-btn {
    width: auto;
    max-width: 280px;
    justify-content: center;
    padding: 10px 16px;
    font-size: 12px;
    box-sizing: border-box;
    order: 1;
  }
  
  .convenio-info {
    order: 3;
    margin-top: 8px;
  }
}

/* Media query específica para mobile pequeno */
@media(max-width: 480px) {
  .hero {
    min-height: 70vh;
    padding-bottom: 80px;
  }
  
  .hero-content {
    padding: 40px 0 20px;
  }
  
  .hero-grid {
    gap: 30px;
  }
  
  .form-card {
    padding: 20px;
  }
  
  .form-card h3 {
    font-size: 20px;
  }
  
  /* Specialties Grid Mobile */
  .specialties-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .specialty-card {
    height: 250px;
  }
  
  .card-content {
    padding: 0px 16px 18px 16px;
  }
  
  .card-content h3 {
    font-size: 16px;
    margin-bottom: 14px;
    line-height: 1.1;
    min-height: 50px;
  }
  
  .card-content ul {
    gap: 10px;
    padding: 0 12px;
  }
  
  .card-content li {
    max-width: 220px;
  }
  
  .card-content li {
    font-size: 12px;
    line-height: 1.2;
  }
  
  .contact-btn {
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0.3px;
    order: 2;
    max-width: 240px;
  }
  
  .contact-btn span {
    white-space: nowrap;
  }
  
  .location-info {
    font-size: 12px;
    padding: 0 15px;
    justify-content: center;
  }
  
  .contact-section {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
  }
  
  .phone-info {
    font-size: 13px;
    order: 2;
    justify-content: center;
  }
  
  .convenio-info {
    order: 3;
    margin-top: 6px;
  }
}

/* Seções gerais */
.section{
  padding:56px 0
}

/* ===== SEÇÃO SOBRE A FERRÃO CUIDADOS ===== */
.about-section {
  background: #ffffff;
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, #F0F8F2 0%, rgba(240, 248, 242, 0.9) 30%, rgba(240, 248, 242, 0.5) 70%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-features {
  grid-column: 1;
}

.about-text {
  padding-right: 20px;
}

.about-features {
  grid-column: 1;
  margin-top: 10px;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
}

/* Título da seção sobre agora está fora do grid */

.about-description {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

.about-features li::before {
  content: "✓";
  color: var(--ast-global-color-2);
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(74, 48, 109, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-features li span {
  flex: 1;
}


.about-image .image-circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  background: white;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image .image-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-image .image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.section.alt{
  background: linear-gradient(180deg, #F0F8F2 0%, #E8E0F0 100%);
  position: relative;
}

/* Degradê contínuo para seção de vídeos */
.section.alt#clientes-satisfeitos {
  background: linear-gradient(180deg, #F0F8F2 0%, #E8E0F0 100%);
  margin-top: 0;
  padding-top: 0;
}

/* Ajuste específico para contato após vídeos */
.section.alt#contato {
  background: linear-gradient(180deg, #E8E0F0 0%, #E8E0F0 100%);
  margin-top: 0; /* Remove margem para unir com a seção anterior */
  padding-top: 0; /* Remove padding superior para transição suave */
}

/* Degradê no início da seção alt (contato) */
.section.alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(240, 248, 242, 0.7) 30%, rgba(232, 213, 240, 0.3) 70%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Exceção para seções que devem ter degradê contínuo */
.section.alt#clientes-satisfeitos::before,
.section.alt#contato::before {
  display: none; /* Remove o degradê do topo para criar transição suave */
}

/* Garantir que o conteúdo da seção alt fique acima do degradê */
.section.alt .container {
  position: relative;
  z-index: 2;
}

.section h2{
  margin:0 0 8px;
  color:var(--ast-global-color-0);
  font-size:clamp(22px,4.5vw,32px)
}

/* Estilo para títulos das seções principais */
.section h2.main-title{
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ast-global-color-0);
  margin-bottom: 16px;
  line-height: 1.2;
  text-align: left;
}

/* Título específico para a seção de profissionais */
.section.alt#profissionais .main-title {
  text-align: center;
  font-size: 2.5rem !important;
  font-weight: 700;
  color: #4a2e75;
  margin-bottom: 40px;
  line-height: 1.2;
}

.section p.lead{
  margin:0 0 24px;
  color:#475569;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

/* Centralizar título e texto da seção de especialidades */
#servicos .main-title {
  text-align: center;
}

#servicos .lead {
  text-align: center;
}

/* Centralizar título da seção de depoimentos */
#depoimentos .main-title {
  text-align: center;
}

/* Centralizar título da seção de trabalhos */
#trabalhos .main-title {
  text-align: center;
}

/* Centralizar título e texto da seção de clientes satisfeitos */
#clientes-satisfeitos .main-title {
  text-align: center;
}

/* Centralizar título da seção sobre */
#sobre .main-title {
  text-align: center !important;
  margin-bottom: 40px;
}

#clientes-satisfeitos .lead {
  text-align: center;
}

/* Estilo para observação sobre convênio */
.convenio-info {
  margin-top: 12px;
  text-align: center;
}

.convenio-info p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin: 0;
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Grid e Cards */
.grid-3{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px
}

@media(max-width:768px){
  .grid-3{
    grid-template-columns:1fr
  }
}

.card{
  background:#fff;
  border:1px solid #e9eef3;
  border-radius:14px;
  padding:18px;
  box-shadow:0 8px 24px rgba(16,24,40,.04);
  display:flex;
  flex-direction:column;
  gap:10px
}

.card h3{
  margin:0;
  color:#193056;
  font-size:18px
}

.card p{
  margin:0;
  color:#475569
}

/* Specialties Grid */
.specialties-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.specialty-card{
  position: relative;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(16,24,40,.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialty-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(16,24,40,.12);
}

.card-background{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px);
}

.card-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 48, 109, 0.8) 0%, rgba(185, 134, 187, 0.6) 100%);
  z-index: 2;
}

.card-content{
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 0px 20px 24px 20px;
  color: white;
}

.card-content h3{
  margin: 0 0 20px 0;
  color: white;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}

.card-content ul{
  list-style: none;
  padding: 0 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-items: center;
}

.card-content li{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  width: 100%;
  max-width: 280px;
  justify-content: flex-start;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-content li::before{
  content: "✓";
  color: white;
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.card-content li span{
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Lista de verificações */
.checks{
  display:grid;
  gap:10px;
  margin:12px 0 0
}

.check{
  display:flex;
  gap:10px;
  align-items:flex-start
}

/* CTA Section */
.cta{
  background:linear-gradient(135deg,var(--ast-global-color-2),var(--ast-global-color-3));
  color:#fff;
  border-radius:16px;
  padding:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  position: relative;
  z-index: 2;
}

/* Seção CTA continuando o gradiente */
.section#agendar {
  background: linear-gradient(180deg, #E8E0F0 0%, #E8E0F0 100%);
  padding: 40px 0;
  position: relative;
}

.section#agendar::before {
  display: none; /* Remove gradiente extra */
}

.cta p{
  margin:0;
  color:#e6efff
}

@media(max-width:900px){
  .cta{
    flex-direction:column;
    align-items:flex-start
  }
}

/* Footer */
footer{
  padding:28px 0;
  border-top:1px solid #e9eef3;
  color:#42546b;
  font-size:14px
}

.foot{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap
}

.foot a{
  color:#415a9b
}

/* Imagens - Ajustes de proporção */
.card img,.about img,img[data-photo]{
  display:block;
  width:100%;
  border-radius:16px;
  background:#eef3ff
}

.card .media{
  min-height:200px
}

/* Ajustes específicos para diferentes tipos de imagem */
.card img {
  height: 250px;
  object-fit: cover;
  object-position: center;
}

/* ===== SEÇÃO PROFISSIONAIS ===== */
/* Degradê contínuo unindo profissionais e depoimentos */
.section.alt#profissionais {
  background: linear-gradient(180deg, #E8E0F0 0%, #E8E0F0 100%);
  margin-top: 0; /* Remove margem para unir com a seção anterior */
  padding-top: 80px; /* Adiciona padding no topo */
  position: relative;
}

.section.alt#profissionais::before {
  display: none; /* Remove o degradê do topo para unir com a seção anterior */
}

.section.alt#profissionais::after {
  display: none; /* Remove o degradê do final para unir com a próxima seção */
}

.profissionais-grid-small {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.profissional-card-small {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.profissional-card-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.card-image-small {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  box-sizing: border-box;
}

.card-image-small img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s ease;
  border: 3px solid #f0f0f0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

.profissional-card-small:hover .card-image-small img {
  transform: scale(1.05);
  border-color: #4a2e75;
  box-shadow: 0 4px 15px rgba(74, 46, 117, 0.2);
}

.card-info-small {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.professional-name {
  font-size: 1rem;
  font-weight: 700;
  color: #4a2e75;
  margin: 0 0 12px 0;
  text-align: center;
  letter-spacing: -0.2px;
}

.professional-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.professional-specs li {
  font-size: 0.85rem;
  color: #444444;
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
  line-height: 1.3;
  font-weight: 400;
}

.professional-specs li:before {
  content: "●";
  color: #4a2e75;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .profissionais-grid-small {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 320px;
  }
  
  .card-image-small {
    height: 130px;
    padding: 16px;
    box-sizing: border-box;
  }
  
  .card-image-small img {
    width: 95px;
    height: 95px;
    display: block;
    margin: 0 auto;
  }
  
  .card-info-small {
    padding: 14px;
  }
  
  .professional-name {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  
  .professional-specs li {
    font-size: 0.82rem;
    margin-bottom: 7px;
  }
  
}

.profissional-card {
  background: #fff;
  border: 1px solid #e9eef3;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(16,24,40,.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.profissional-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(16,24,40,.08);
}

.profissional-card img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid var(--ast-global-color-4);
}

.profissional-card h3 {
  margin: 0;
  color: var(--ast-global-color-8);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

@media(max-width: 900px) {
  .profissionais-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .profissional-card img {
    width: 180px;
    height: 180px;
  }
}

/* ===== SEÇÃO DEPOIMENTOS ===== */
.section-depoimentos {
  background: linear-gradient(180deg, #E8E0F0 0%, #E8E0F0 100%);
  position: relative;
  margin-top: 0;
  padding-bottom: 0;
}

/* ===== SEÇÃO ALGUNS DE NOSSOS TRABALHOS ===== */
.section-works {
  background: linear-gradient(180deg, #E8E0F0 0%, #F0F8F2 100%);
  padding: 80px 0;
  position: relative;
}


/* ===== CARROSSEL DESKTOP - 3 IMAGENS ===== */
.desktop-carousel {
  max-width: 1000px;
  margin: 40px auto 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.desktop-carousel .carousel-images-container {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.desktop-carousel .carousel-images-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
  padding: 20px;
}

.desktop-carousel .carousel-image-item {
  flex: 0 0 calc(33.333% - 14px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.desktop-carousel .carousel-image-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===== CARROSSEL MOBILE - 1 IMAGEM ===== */
.mobile-carousel {
  max-width: 320px;
  margin: 40px auto 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: none; /* Escondido por padrão */
}

.mobile-carousel .carousel-images-container {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  width: 100%;
}

.mobile-carousel .carousel-images-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 0;
  padding: 0;
}

.mobile-carousel .carousel-image-item {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100%;
}

.mobile-carousel .carousel-image-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* Botões de navegação - Desktop */
.desktop-carousel .carousel-control-prev,
.desktop-carousel .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.desktop-carousel .carousel-control-prev {
  left: 20px;
}

.desktop-carousel .carousel-control-next {
  right: 20px;
}

.desktop-carousel .carousel-control-prev:hover,
.desktop-carousel .carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transform: translateY(-50%) scale(1.1);
}

.desktop-carousel .carousel-control-prev-icon,
.desktop-carousel .carousel-control-next-icon {
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Botões de navegação - Mobile */
.mobile-carousel .carousel-control-prev,
.mobile-carousel .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.mobile-carousel .carousel-control-prev {
  left: 10px;
}

.mobile-carousel .carousel-control-next {
  right: 10px;
}

.mobile-carousel .carousel-control-prev:hover,
.mobile-carousel .carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transform: translateY(-50%) scale(1.1);
}

.mobile-carousel .carousel-control-prev-icon,
.mobile-carousel .carousel-control-next-icon {
  width: 16px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* ===== MEDIA QUERIES PARA MOSTRAR/ESCONDER CARROSSÉIS ===== */

/* Desktop - Mostrar carrossel desktop, esconder mobile */
@media (min-width: 769px) {
  .desktop-carousel {
    display: block;
  }
  
  .mobile-carousel {
    display: none;
  }
}

/* Mobile - Esconder carrossel desktop, mostrar mobile */
@media (max-width: 768px) {
  .desktop-carousel {
    display: none;
  }
  
  .mobile-carousel {
    display: block;
    max-width: 90%;
    margin: 20px auto 0;
  }
  
  .mobile-carousel .carousel-image-item img {
    height: 350px;
    width: 100%;
  }
}

/* Telas muito pequenas */
@media (max-width: 360px) {
  .mobile-carousel {
    max-width: 85%;
  }
  
  .mobile-carousel .carousel-image-item img {
    height: 320px;
    width: 100%;
  }
  
  .mobile-carousel .carousel-control-prev,
  .mobile-carousel .carousel-control-next {
    width: 35px;
    height: 35px;
  }
  
  .mobile-carousel .carousel-control-prev {
    left: 8px;
  }
  
  .mobile-carousel .carousel-control-next {
    right: 8px;
  }
  
  .mobile-carousel .carousel-control-prev-icon,
  .mobile-carousel .carousel-control-next-icon {
    width: 14px;
    height: 14px;
  }
}

.section-depoimentos::before {
  display: none; /* Remove o degradê do topo para unir com a seção anterior */
}

.section-depoimentos::after {
  display: none; /* Remove gradiente extra */
}

.depoimentos-content {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  position: relative;
  z-index: 2;
}


.image-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  background: white;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Responsividade para imagens */
@media(max-width: 900px) {
  .card img {
    height: 200px;
  }
  
  
  /* Specialties Grid Responsive */
  .specialties-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  
  .specialty-card {
    height: 280px;
  }
  
  .card-content {
    padding: 0px 18px 20px 18px;
  }
  
  .card-content h3 {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.1;
    min-height: 55px;
  }
  
  .card-content ul {
    gap: 11px;
    padding: 0 15px;
  }
  
  .card-content li {
    max-width: 250px;
  }
  
  .card-content li {
    font-size: 13px;
    line-height: 1.2;
  }
  
  /* Advantages Section Responsive */
  .advantages-section {
    padding: 60px 0;
  }
  
  .advantages-section .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  /* How to Hire Section Responsive */
  .how-to-hire-section {
    padding: 80px 0 60px;
  }
  
  .how-to-hire-title {
    font-size: 2rem !important;
    margin-bottom: 60px;
  }
  
  .process-cards {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px;
    margin-bottom: 40px;
  }
  
  /* Remove gradientes em tablet */
  .process-cards::before,
  .process-cards::after {
    display: none;
  }
  
  .process-card {
    padding: 30px 20px;
    min-height: 200px;
  }
  
  .card-number {
    font-size: 2.5rem;
    top: 15px;
    left: 25px;
  }
  
  .card-content {
    margin-top: 45px;
    height: calc(100% - 45px);
  }
  
  .card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .card-content p {
    font-size: 0.9rem;
    line-height: 1.3;
  }
  
  .advantage-card {
    padding: 25px;
    gap: 15px;
  }
  
  .advantage-content h3 {
    font-size: 1.1rem;
  }
  
  .advantage-content p {
    font-size: 0.9rem;
  }
}

/* Advantages Section */
.advantages-section {
  padding: 80px 0;
  background-color: #ffffff;
  width: 100%;
}

.advantages-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: block !important;
}

.advantages-section .section-title {
    text-align: center;
  font-size: 2.5rem !important;
  font-weight: 700;
  color: #4a2e75;
  margin-bottom: 60px;
  font-family: 'Poppins', sans-serif;
}

.advantages-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px;
  margin-bottom: 50px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
  
.advantage-card {
    display: flex !important;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 120px;
  width: 100%;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
    justify-content: center;
  background-color: rgba(153, 102, 153, 0.1);
  border-radius: 8px;
}

.advantage-icon svg {
  width: 20px;
  height: 20px;
}

.advantage-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #4a2e75;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.advantage-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666666;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.advantages-cta {
  text-align: center;
}

.cta-button {
  display: inline-flex;
    align-items: center;
  gap: 12px;
  background-color: #4CAF50;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.cta-button:hover {
  background-color: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.cta-button svg {
  width: 20px;
  height: 20px;
}

/* How to Hire Section */
.how-to-hire-section {
  position: relative;
  padding: 100px 0 0;
  background: linear-gradient(180deg, #F0F8F2 0%, #E8E0F0 100%);
  overflow: hidden;
  width: 100%;
  margin-bottom: 0;
}

/* Degradê no início da seção (topo) */
.how-to-hire-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.7) 30%, rgba(255, 255, 255, 0.3) 70%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Remove o degradê do final para encaixar com a próxima seção */
.how-to-hire-section::after {
  display: none;
}

.how-to-hire-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3;
  display: block !important;
}

.how-to-hire-section .main-title {
  text-align: center;
  font-size: 2.5rem !important;
  font-weight: 700;
  color: #1f7157;
  margin-bottom: 80px;
  line-height: 1.2;
}

.process-cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Removido gradientes entre os cards para ficar igual à imagem de referência */

/* Força o layout desktop para telas maiores que 900px */
@media (min-width: 901px) {
  .how-to-hire-section .process-cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    width: 100% !important;
  }
  
  .how-to-hire-section .process-card {
    display: block !important;
    width: 100% !important;
  }
}

.process-card {
  background-color: white;
  border-radius: 0;
  padding: 35px 25px;
  box-shadow: none;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 220px;
  width: 100%;
  display: block;
  border-left: 4px solid #4a2e75;
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.card-number {
  position: absolute;
  top: 20px;
  left: 30px;
  background-color: transparent;
  color: #4a2e75;
  font-size: 3rem;
  font-weight: 700;
  width: auto;
  height: auto;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: 'Poppins', sans-serif;
  border: none;
  box-shadow: none;
}

.card-content {
  margin-top: 50px;
  padding-left: 0;
  padding-right: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(100% - 50px);
}

.card-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.3;
  word-wrap: break-word;
}

/* Garantir que os títulos dos cards de especialidades sejam brancos */
.specialty-card .card-content h3 {
  color: white !important;
}

.card-content p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #555555;
  margin: 0;
  font-family: 'Inter', sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.how-to-hire-cta {
  text-align: center;
  margin-top: 40px;
}

@media(max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .about-text {
    padding-right: 0;
  }
  
  /* Título da seção sobre agora está centralizado por padrão */
  
  .about-description {
    text-align: center;
    font-size: 1rem;
  }
  
  .about-features li {
    text-align: left;
    font-size: 0.95rem;
  }
  
  .about-image .image-circle {
    width: 300px;
    height: 300px;
  }
  
  /* Reorganizar elementos no mobile */
  .about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .about-text {
    order: 1;
    width: 100%;
  }
  
  .about-image {
    order: 2;
    margin: 20px 0;
  }
  
  .about-features {
    order: 3;
    width: 100%;
    grid-column: unset;
    margin-top: 0;
  }
  
  .image-circle {
    width: 250px;
    height: 250px;
  }
  
  /* Responsividade para a seção de trabalhos */
  .section-works {
    padding: 60px 0;
  }
  
  
/* Media queries do carrossel removidas */
  
  /* Responsividade para a seção de contato */
  #contato .grid-3 {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  #contato .card {
    margin-bottom: 0;
  }
  
  /* Ajuste para o card de informações no mobile */
  #contato .card:last-child {
    margin-top: 0;
  }
  
  /* Advantages Section Mobile */
  .advantages-section {
    padding: 40px 0;
  }
  
  .advantages-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .advantage-card {
    padding: 20px;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .advantage-icon {
    width: 40px;
    height: 40px;
  }
  
  .advantage-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .advantage-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .advantage-content p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .cta-button svg {
    width: 18px;
    height: 18px;
  }
  
  /* How to Hire Section Mobile */
  .how-to-hire-section {
    padding: 60px 0 40px;
  }
  
  .how-to-hire-title {
    font-size: 1.5rem !important;
    margin-bottom: 40px;
  }
  
  .process-cards {
    grid-template-columns: 1fr !important;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Remove gradientes em mobile */
  .process-cards::before,
  .process-cards::after {
    display: none;
  }
  
  .process-card {
    padding: 25px 20px;
    min-height: 180px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .card-number {
    font-size: 2rem;
    top: 15px;
    left: 20px;
  }
  
  .card-content {
    margin-top: 45px;
    padding-right: 5px;
    height: calc(100% - 45px);
  }
  
  .card-content h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  
  .card-content p {
    font-size: 0.85rem;
    line-height: 1.3;
  }
}

/* Seção de Vídeos - Mais Clientes Satisfeitos */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 177.78%; /* Proporção 9:16 (vertical) */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #000;
}

.video-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

/* Responsividade para vídeos */
@media (max-width: 1024px) {
  .videos-grid {
    gap: 20px;
    max-width: 750px;
  }
}

@media (max-width: 768px) {
  .videos-grid {
    gap: 18px;
    margin-top: 30px;
    max-width: 600px;
  }
  
  .video-container {
    border-radius: 12px;
  }
  
  .video-container iframe {
    border-radius: 12px;
  }
}

@media (max-width: 600px) {
  .videos-grid {
    gap: 15px;
    max-width: 500px;
  }
}

@media (max-width: 480px) {
  .about-content {
    gap: 30px;
  }
  
  /* Título da seção sobre agora está centralizado por padrão */
  
  .about-description {
    font-size: 0.95rem;
  }
  
  .about-features li {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  
  .about-features li::before {
    width: 20px;
    height: 20px;
    font-size: 1rem;
  }
  
  .about-image .image-circle {
    width: 250px;
    height: 250px;
  }
  
  .about-image {
    margin: 15px 0;
  }
  
  .videos-grid {
    gap: 12px;
    margin-top: 24px;
    max-width: 350px;
  }
  
  .video-container {
    border-radius: 8px;
  }
  
  .video-container iframe {
    border-radius: 8px;
  }
}

/* ===== ESTILOS DO FORMULÁRIO ===== */
form label {
  display: block !important;
  margin-bottom: 12px !important;
  font-weight: 600 !important;
  color: #193056 !important;
  font-size: 14px !important;
}

form input,
form textarea {
  width: 100% !important;
  padding: 12px !important;
  border: 1px solid #d7dee6 !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-family: inherit !important;
  box-sizing: border-box !important;
  background-color: #fff !important;
  color: #193056 !important;
}

form input {
  margin-bottom: 24px !important;
}

form textarea {
  margin-bottom: 32px !important;
  min-height: 100px !important;
  resize: none !important;
}

form button[type="submit"] {
  width: 100% !important;
  padding: 14px 16px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  background: #4A306D !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  margin-top: auto !important;
}

/* ===== ESTILOS DO MAPA ===== */
.map-container {
  margin-top: 24px !important;
  padding-top: 20px !important;
  border-top: 1px solid #e9eef3 !important;
}

.map-container h4 {
  margin: 0 0 16px 0 !important;
  color: var(--ast-global-color-0) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

.map-container iframe {
  width: 100% !important;
  height: 200px !important;
  border: 0 !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  margin-bottom: 16px !important;
}

.map-info {
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: #475569 !important;
}

.map-info b {
  color: var(--ast-global-color-0) !important;
}

/* ===== ESTILOS DAS REDES SOCIAIS ===== */
.social-media {
  display: flex !important;
  gap: 16px !important;
  margin: 20px 0 !important;
  justify-content: flex-start !important;
}

.social-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
}

.social-btn::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  border-radius: 50% !important;
  transition: transform 0.3s ease !important;
  z-index: 1 !important;
}

.social-btn svg {
  position: relative !important;
  z-index: 2 !important;
  transition: transform 0.3s ease !important;
}

.social-btn:hover {
  transform: translateY(-4px) scale(1.1) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
}

.social-btn:hover svg {
  transform: scale(1.1) !important;
}

/* WhatsApp */
.social-btn.whatsapp {
  background: #25D366 !important;
  color: white !important;
}

.social-btn.whatsapp::before {
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
}

.social-btn.whatsapp:hover {
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4) !important;
}

/* Instagram */
.social-btn.instagram {
  background: linear-gradient(135deg, #E4405F, #C13584, #833AB4) !important;
  color: white !important;
}

.social-btn.instagram::before {
  background: linear-gradient(135deg, #E4405F, #C13584, #833AB4, #5851DB) !important;
}

.social-btn.instagram:hover {
  box-shadow: 0 8px 20px rgba(228, 64, 95, 0.4) !important;
}

/* YouTube */
.social-btn.youtube {
  background: #FF0000 !important;
  color: white !important;
}

.social-btn.youtube:hover {
  background: #CC0000 !important;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4) !important;
}

/* Rodapé */
.footer {
  background: #ffffff;
  color: #666666;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #e9eef3;
}

.footer-text {
  margin: 0;
  font-size: 14px;
  color: #666666;
  font-family: 'Poppins', sans-serif;
}

.footer-link {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #2980b9;
  text-decoration: underline;
}

/* Responsividade do rodapé */
@media (max-width: 768px) {
  .footer {
    padding: 15px 0;
  }
  
  .footer-text {
    font-size: 13px;
  }
}

/* Ocultar formulário do hero em mobile */
@media (max-width: 768px) {
  .hero-form {
    display: none !important;
  }
  
  /* Ajustar observação sobre convênio em mobile */
  .convenio-info {
    margin-top: 8px;
  }
  
  .convenio-info p {
    font-size: 11px;
  }
  
  /* Forçar grid de vantagens em 1 coluna em mobile */
  .advantages-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Forçar grid de especialidades em 1 coluna em mobile */
  .specialties-grid {
    grid-template-columns: 1fr !important;
  }
}
