/* GANTRY5 DEVELOPMENT MODE ENABLED.
 *
 * WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!
 *
 * For more information on modifying CSS, please read:
 *
 * http://docs.gantry.org/gantry5/configure/styles
 * http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

@charset "UTF-8";
html {
  scroll-behavior: smooth;
}
/*VARS*/
:root {
  --primary-osteo: #1088A3;
  --secondary-osteo: #64CAD9;
  --text-copy: #475467;
}
h2, h3, h4, h5, h6, strong {
  color: #1088A3 !important;
}
/* Forçando a hierarquia para o título e o destaque */
.section-planos .section-title, .section-faq .section-title, .section-nicho .section-title, h2.section-title {
  color: #1088A3 !important;
  font-weight: 800 !important;
  display: block !important;
}
/* O segredo para o strong funcionar sempre */
.section-title strong, h2.section-title strong, .section-planos h2 strong, .section-faq h2 strong {
  color: #64CAD9 !important;
  font-weight: 800 !important;
}
/* Estilo do texto destacado */
.osteo-underline {
  position: relative;
  display: inline-block;
  color: #64CAD9 !important;
  /* A cor que você pediu */
  font-weight: 800 !important;
}
/* Criando a linha "SVG" via CSS */
.osteo-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  /* Ajuste para descer a linha */
  width: 100%;
  height: 4px;
  /* Espessura da linha */
  background-color: #64CAD9;
  border-radius: 10px;
  /* Configuração da Animação */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
  box-shadow: 0 2px 10px rgba(100, 202, 217, 0.3);
}
/* Quando o título entra no viewport, a linha "corre" */
.osteo-trigger.is-active .osteo-underline::after {
  transform: scaleX(1);
}
/* Classe Utilitária para Respiro das Seções */
.padding-geral {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  max-width: 1200px;
  /* Garante que o conteúdo não espalhe demais em monitores UltraWide */
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100%;
}
/* Ajuste para Mobile (Ninguém merece 90px de respiro no celular) */
@media (max-width: 768px) {
  .padding-geral {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}
/*-----------------------------------------------------------------------------HEADER*/
/*NAV*/
#g-header {
  border-bottom: 1px solid #64CAD9;
}
#g-header .g-main-nav .g-toplevel {
  display: flex;
  flex-flow: row wrap;
  margin-top: -8px;
}
.g-toplevel {
  display: flex;
  align-items: center;
}
.g-menu-item-title {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
  color: #008fa1;
}
.g-offcanvas-toggle {
  color: #008fa1;
}
.g-menu-item-title {
  position: relative;
  padding-bottom: 6px;
  display: inline-block;
}
.g-menu-item-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #64CAD9;
  transition: width 0.3s ease, left 0.3s ease;
}
.g-menu-item-title:hover::after {
  width: 100%;
  left: 0;
}
@media (max-width: 768px) {
  .g-toplevel {
    display: block;
    align-items: left;
  }
  .g-menu-item-title {
    color: #FFFFFF !important;
  }
}
/* BTN-ENTRAR */
.btn-entrar .g-menu-item-container {
  background-color: #00bcd4;
  border-radius: 33px;
  padding: 0px 30px 10px 30px !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 4px;
}
.btn-entrar .g-menu-item-title {
  color: #ffffff !important;
  letter-spacing: 1px;
  font-weight: 800;
}
.btn-entrar .g-menu-item-container:hover {
  background-color: #00acc1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}
/* SOCIAL */
#g-header .g-main-nav .g-toplevel > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module):hover {
  background: #ffffff;
  color: #64CAD9 !important;
}
/*NAV*/
/*-----------------------------------------------------------------------HOME*/
/*HERO*/
/* --- 1. CONTAINER E BACKGROUND IMERSIVO --- */
.hero-osteomedic-bg {
  position: relative !important;
  background-image: url('//osteomedicsolution.com.br/wp-content/uploads/2026/05/banner-home.webp') !important;
  /* Caminho da sua imagem wide */
  background-size: cover !important;
  background-position: center bottom !important;
  background-repeat: no-repeat !important;
  min-height: 85vh !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 100px 20px !important;
  overflow: hidden !important;
}
/* Camada de leitura (Overlay) */
.hero-osteomedic-bg::before {
  content: "" !important;
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, white 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.4) 100%) !important;
  z-index: 1;
}
/* Garante que o conteúdo (texto/botão) flutue sobre o fundo */
.hero-osteomedic-bg > * {
  position: relative !important;
  z-index: 2;
}
/* --- 2. TIPOGRAFIA GERAL --- */
.hero-title, .hero-subtitle, .hero-badge {
  text-align: center;
  margin-left: auto !important;
  margin-right: auto !important;
}
.hero-badge {
  display: table !important;
  background: #f0fbfc !important;
  color: #1088A3 !important;
  padding: 6px 14px !important;
  border-radius: 40px;
  margin-bottom: 25px !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem !important;
  letter-spacing: 1px;
}
.hero-title {
  font-size: 3.8rem !important;
  font-weight: 800 !important;
  letter-spacing: -1.5px;
  color: #1088A3 !important;
  line-height: 1.1;
  margin-bottom: 20px !important;
  text-shadow: 0 4px 16px rgba(16, 136, 163, 0.15) !important;
}
.hero-subtitle {
  color: #475467 !important;
  max-width: 650px;
  margin-bottom: 35px !important;
  font-size: 1.25rem;
}
/* --- 3. ÁREA ANIMADA (SVG) --- */
.hero-title svg.animated-care-line {
  width: 440px;
  /* Largura suficiente para o texto não encolher */
  height: 1.2em;
  /* Altura proporcional ao H1 */
  display: inline-block;
  vertical-align: middle;
  margin-top: -5px;
}
/* Texto dentro do SVG (Igual ao H1, mas na cor secundária) */
.hero-title svg text {
  fill: #64CAD9 !important;
  /* Azul Glow Osteomed */
  font-weight: 800;
  font-family: inherit;
  /* Herda a fonte do site */
  text-shadow: 0 4px 12px rgba(100, 202, 217, 0.2) !important;
}
/* O Traço (Sublinhado Reto) */
#path-care {
  fill: none;
  stroke: #64CAD9;
  stroke-width: 4;
  /* Espessura do sublinhado */
  stroke-linecap: round;
  /* Configuração da animação de desenho */
  stroke-dasharray: 450;
  stroke-dashoffset: 450;
  animation: drawLine 2s ease-in-out forwards;
  animation-delay: 0.8s;
}
@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}
/* --- 4. BOTÃO --- */
.wp-block-buttons {
  justify-content: center !important;
  display: flex;
}
.btn-hero .wp-block-button__link {
  background-color: #1088A3 !important;
  color: #ffffff !important;
  border-radius: 33px !important;
  padding: 15px 45px !important;
  font-weight: 800;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  box-shadow: 0 4px 15px rgba(16, 136, 163, 0.2);
}
.btn-hero .wp-block-button__link:hover {
  background-color: #64CAD9 !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(100, 202, 217, 0.3);
}
/* --- 5. RESPONSIVO --- */
@media (max-width: 768px) {
  .hero-osteomed-bg {
    min-height: 60vh !important;
    padding: 60px 20px !important;
    background-position: 70% bottom !important;
  }
  .hero-title {
    font-size: 2.5rem !important;
  }
  .hero-title svg.animated-care-line {
    width: 290px;
    /* Reduz para caber no mobile */
  }
}
/*HERO*/
/*ÁREA 1*/
.section-features-split {
  background: #ffffff;
  padding: 6% !important;
  width: 100%;
}
.section-features-split .wp-block-columns {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 6%;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto !important;
}
.feature-badge-icon {
  display: inline-flex;
  align-items: center;
  background: #f0fbfc;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 25px !important;
}
.feature-badge-icon i {
  color: #64CAD9;
  font-size: 0.9rem;
  margin-right: 10px;
}
.feature-badge-icon span {
  color: #1088A3;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.section-title-small {
  font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
  color: #1088A3 !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  margin-bottom: 20px !important;
}
.section-title-small strong {
  color: #64CAD9 !important;
}
.feature-intro {
  color: #475467;
  font-size: 1.1rem;
  margin-bottom: 40px !important;
}
.feature-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.feature-list li {
  margin-bottom: 25px !important;
  display: flex;
  align-items: flex-start;
}
.feature-list li i {
  color: #64CAD9;
  font-size: 1.2rem;
  margin-right: 18px;
  margin-top: 5px;
  flex-shrink: 0;
}
.feature-list li strong {
  color: #1088A3;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 2px;
}
.feature-list li em {
  color: #667085;
  font-size: 0.95rem;
  font-style: italic;
  display: block;
  line-height: 1.4;
}
.img-floating img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}
.btn-feature-link {
  margin-top: 40px !important;
  justify-content: flex-start !important;
}
.btn-feature-link .wp-block-button__link {
  background-color: #1088A3 !important;
  color: #ffffff !important;
  border-radius: 33px !important;
  padding: 15px 40px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(16, 136, 163, 0.15) !important;
}
.btn-feature-link .wp-block-button__link:hover {
  background-color: #64CAD9 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(100, 202, 217, 0.3) !important;
}
@media (max-width: 991px) {
  .section-features-split .wp-block-columns {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .column-image-feature {
    order: 2;
  }
  .column-text-feature {
    order: 1;
    text-align: left;
  }
}
/*ÁREA 1*/
/*PLANOS*/
.section-planos {
  background: #FAF9F8 !important;
  padding: 8% 6% !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.section-planos .feature-badge-icon {
  margin-bottom: 20px !important;
}
.section-planos .section-title {
  font-size: clamp(2rem, 4vw, 2.8rem) !important;
  color: #1088A3 !important;
  font-weight: 800 !important;
  margin-bottom: 15px !important;
  letter-spacing: -1px;
  line-height: 1.1;
}
.section-planos .section-title strong {
  color: #64CAD9 !important;
}
.planos-subtitle {
  color: #475467;
  font-size: 1.1rem;
  margin-bottom: 60px !important;
  max-width: 600px;
}
.grid-pricing {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  align-items: center;
  margin: 0 auto !important;
}
.card-pricing {
  background: #ffffff;
  padding: 50px 40px !important;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(16, 136, 163, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  border: none !important;
}
.card-pricing:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(16, 136, 163, 0.1);
}
.card-pricing.featured {
  background: #1088A3;
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(16, 136, 163, 0.25);
  z-index: 2;
}
.card-pricing.featured:hover {
  transform: scale(1.07) translateY(-5px);
}
.badge-featured {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #64CAD9;
  color: #1088A3;
  padding: 6px 22px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card-pricing h3 {
  font-size: 1.6rem !important;
  color: #1088A3;
  font-weight: 700;
  margin-bottom: 20px !important;
}
.card-pricing.featured h3 {
  color: #ffffff !important;
}
.price {
  font-size: 3.2rem;
  font-weight: 800;
  color: #1088A3;
  margin-bottom: 35px !important;
}
.card-pricing.featured .price {
  color: #ffffff !important;
}
.price span {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.8;
}
.pricing-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 45px 0 !important;
  text-align: left;
}
.pricing-features li {
  margin-bottom: 15px !important;
  font-size: 0.95rem;
  color: #475467;
  display: flex;
  align-items: center;
}
.card-pricing.featured .pricing-features li {
  color: #ffffff !important;
}
.pricing-features li i {
  color: #64CAD9;
  margin-right: 12px;
  font-size: 0.9rem;
}
.card-pricing.featured .pricing-features li i {
  color: #64CAD9;
  filter: brightness(1.5);
}
.btn-pricing-sec .wp-block-button__link {
  background: #f1f4f8 !important;
  color: #1088A3 !important;
  border-radius: 33px !important;
  padding: 12px 30px !important;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none !important;
}
.btn-pricing-main .wp-block-button__link {
  background: #64CAD9 !important;
  color: #1088A3 !important;
  border-radius: 33px !important;
  padding: 15px 35px !important;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(100, 202, 217, 0.3) !important;
}
@media (max-width: 991px) {
  .grid-pricing {
    grid-template-columns: 1fr !important;
    gap: 50px;
    padding: 0 10%;
  }
  .card-pricing.featured {
    transform: scale(1);
  }
}
/*PLANOS*/
/*PORQUE*/
.section-nicho {
  background-image: linear-gradient(to right, rgba(16, 136, 163, 0.2), rgba(255, 255, 255, 0)), url('../images/porque-site.webp') !important;
  background-size: cover !important;
  background-position: center !important;
  padding: 10% 6% !important;
  width: 100vw !important;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  display: flex;
  align-items: center;
}
.nicho-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.nicho-overlay-card {
  background: #1088A3;
  /* Azul Dominante */
  padding: 50px;
  border-radius: 30px;
  max-width: 550px;
  color: #ffffff;
  box-shadow: 0 30px 60px rgba(16, 136, 163, 0.3);
}
.nicho-overlay-card .feature-badge-icon {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px !important;
}
.nicho-overlay-card .feature-badge-icon i, .nicho-overlay-card .feature-badge-icon span {
  color: #ffffff;
}
.nicho-overlay-card h2 {
  color: #ffffff !important;
  font-size: 2.2rem !important;
  margin-bottom: 20px !important;
}
.nicho-overlay-card h2 strong {
  color: #64CAD9 !important;
}
.nicho-overlay-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px !important;
  opacity: 0.9;
}
.nicho-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 40px 0 !important;
}
.nicho-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-weight: 600;
}
.nicho-list li i {
  margin-right: 12px;
  color: #64CAD9;
}
.btn-nicho .wp-block-button__link {
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
  border-radius: 33px !important;
  padding: 12px 30px !important;
  font-weight: 700;
  transition: all 0.3s ease;
  background: #1088A3 !important;
}
.btn-nicho .wp-block-button__link:hover {
  background: #64CAD9 !important;
  color: #ffffff !important;
}
@media (max-width: 768px) {
  .nicho-overlay-card {
    padding: 30px;
    text-align: center;
  }
  .nicho-list li {
    justify-content: left;
  }
}
/*PORQUE*/
/*FAQ*/
.section-faq {
  padding: 8% 6% !important;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.faq-container {
  max-width: 800px;
  width: 100%;
  margin-top: 40px;
}
.faq-item {
  background: #FAF9F8;
  border-radius: 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.faq-item[open] {
  background: #ffffff;
  border-color: #64CAD9;
  box-shadow: 0 10px 30px rgba(16, 136, 163, 0.08);
}
summary {
  padding: 22px 30px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #1088A3;
  cursor: pointer;
  font-size: 1.1rem;
  outline: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary i {
  font-size: 0.9rem;
  color: #64CAD9;
  transition: transform 0.3s ease;
}
.faq-item[open] summary i {
  transform: rotate(180deg);
}
.faq-content {
  padding: 0 30px 25px 30px;
  color: #475467;
  line-height: 1.6;
  font-size: 1rem;
}
/* Ajuste mobile */
@media (max-width: 768px) {
  summary {
    font-size: 1rem;
    padding: 18px 20px;
  }
}
/*FAQ*/
/*ECOSISTEMA*/
.section-ecosystem {
  padding: 100px 0;
  background-color: #f9fbfc;
  /* Fundo suave para dar contraste */
}
.ecosystem-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}
.ecosystem-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #eef2f6;
  box-shadow: 0 10px 40px rgba(16, 136, 163, 0.05);
  transition: all 0.4s ease;
}
.ecosystem-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(16, 136, 163, 0.12);
  border-color: #1088A3;
}
.ecosystem-card i {
  font-size: 45px;
  color: #1088A3;
  margin-bottom: 25px;
  display: block;
}
.ecosystem-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #001f3f;
  margin-bottom: 15px;
}
.ecosystem-card p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}
/* --- BOX DE FECHAMENTO DO ECOSSISTEMA --- */
.ecosystem-footer {
  margin-top: 80px;
  text-align: left;
  /* Alinhamento solicitado */
}
/* --- BOX DE FECHAMENTO AJUSTADO --- */
.footer-cta-box {
  background: #1088A3;
  /* Cor sólida conforme o print */
  padding: 50px 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  /* Centraliza verticalmente */
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 15px 45px rgba(16, 136, 163, 0.2);
}
.footer-cta-box .cta-content p {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  /* Garante que não haja margem empurrando o texto */
  line-height: 1.4;
  max-width: 650px;
}
/* BOTÃO ESTILO OUTLINE (Fundo igual da caixa + Borda Branca) */
.footer-cta-box .wp-block-button__link {
  background-color: transparent !important;
  /* Fundo transparente para herdar a cor da caixa */
  color: #ffffff !important;
  /* Texto em branco */
  border: 2px solid #ffffff !important;
  /* Borda branca */
  font-weight: 700;
  padding: 18px 35px;
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
/* Efeito de hover opcional para ficar chique */
.footer-cta-box .wp-block-button__link:hover {
  background-color: #ffffff !important;
  color: #1088A3 !important;
}
@media (max-width: 768px) {
  .footer-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
}
/*BLOG*/
/* 1. CONTAINER PAI (GRUPO OSTEOBLOG) */
.wp-block-group.osteoblog {
  padding: 100px 6% !important;
  /* Espaço elegante em cima e embaixo */
  background: #FAF9F8 !important;
  display: block !important;
  clear: both;
  margin-bottom: -3%;
}
/* 2. CABEÇALHO (TAG + TÍTULO) */
.intelligence-header-wrapper {
  margin-bottom: 50px !important;
  text-align: left;
}
.intelligence-header-wrapper .section-title {
  color: #1088A3 !important;
  font-size: clamp(2rem, 4vw, 2.8rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  margin-top: 15px !important;
}
.intelligence-header-wrapper .section-title strong {
  color: #64CAD9 !important;
}
/* 1. O CARD (LI) */
.wp-block-latest-posts.wp-block-latest-posts__list li {
  background: #ffffff !important;
  border-radius: 40px !important;
  box-shadow: 0 20px 50px rgba(16, 136, 163, 0.08) !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin-bottom: 40px !important;
  min-height: 400px !important;
  position: relative !important;
  /* Base para a foto colar */
  display: block !important;
  /* Mata o flex que está fatiando o card */
}
/* 2. A FOTO (COLADA NA ESQUERDA) */
.wp-block-latest-posts__featured-image {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 40% !important;
  /* Ocupa 40% da largura */
  height: 100% !important;
  margin: 0 !important;
}
.wp-block-latest-posts__featured-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
/* 3. EMPURRANDO O TEXTO PARA A DIREITA */
/* Como a foto é absolute, o texto "nasce" embaixo dela. Vamos empurrá-lo 40% para o lado */
.wp-block-latest-posts__list li > a.wp-block-latest-posts__post-title, .wp-block-latest-posts__post-excerpt {
  margin-left: 40% !important;
  /* Exatamente a largura da foto */
  display: block !important;
  padding-left: 50px !important;
  padding-right: 50px !important;
  box-sizing: border-box !important;
}
/* Ajuste do Título */
a.wp-block-latest-posts__post-title {
  padding-top: 60px !important;
  padding-bottom: 10px !important;
  color: #1088A3 !important;
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}
/* Ajuste do Resumo */
.wp-block-latest-posts__post-excerpt {
  color: #475467 !important;
  font-size: 1.1rem !important;
  line-height: 1.6 !important;
  padding-bottom: 60px !important;
}
/* Botão "Leia Mais" */
a.wp-block-latest-posts__read-more {
  display: inline-block !important;
  background: #1088A3 !important;
  color: #fff !important;
  padding: 12px 35px !important;
  border-radius: 50px !important;
  margin-top: 20px !important;
  font-weight: 700 !important;
}
/* RESPONSIVO (DESLIGA A FORÇA BRUTA NO MOBILE) */
@media (max-width: 800px) {
  .wp-block-latest-posts.wp-block-latest-posts__list li {
    min-height: auto !important;
    position: static !important;
  }
  .wp-block-latest-posts__featured-image {
    position: static !important;
    width: 100% !important;
    height: 250px !important;
  }
  .wp-block-latest-posts__list li > a.wp-block-latest-posts__post-title, .wp-block-latest-posts__post-excerpt {
    margin-left: 0 !important;
    padding: 30px !important;
  }
}
/*BLOG*/
/*-----------------------------------------------------------------------HOME*/
/*-----------------------------------------------------------------------HEADER PÁGINAS*/
.hero-internas-master {
  position: relative;
  padding: 90px 0 120px 0 !important;
  background: linear-gradient(180deg, #FAF9F8 0%, #FFFFFF 100%) !important;
  overflow: hidden;
  width: 100%;
}
/* O Container do SVG */
.hero-svg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Fica no fundo */
  pointer-events: none;
  opacity: 0.8;
}
.hero-content {
  position: relative;
  z-index: 10;
  /* Fica na frente de tudo */
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}
/* Garante que o texto seja legível */
.hero-title, .hero-subtitle, .hero-badge {
  position: relative;
  z-index: 11;
}
/*-----------------------------------------------------------------------HEADER PÀGINAS*/
/*-----------------------------------------------------------------------SOBRE*/
/* Container que envolve as duas colunas */
.secao-essencia-container {
  display: flex;
  align-items: flex-start;
  /* Alinha o topo das duas colunas */
  gap: 60px;
  /* Espaço generoso entre o texto e a lista */
  padding: 80px 0;
}
/* Coluna da Esquerda (Onde está o seu H2 e o texto maior) */
.essencia-texto {
  flex: 1;
  /* Ocupa metade do espaço ou 60% */
}
.essencia-texto h2 {
  margin-bottom: 30px !important;
}
/* Coluna da Direita (A lista que acabamos de fazer) */
.osteo-essencia-lista {
  flex: 1;
  /* Ocupa a outra metade */
  border-left: 1px solid rgba(100, 202, 217, 0.2);
  /* Uma linha vertical bem sutil separando as colunas */
  padding-left: 50px;
}
.essencia-icon {
  width: 32px;
  height: 32px;
  color: #64CAD9;
  /* O nosso azul glow */
  display: flex;
  align-items: center;
  justify-content: center;
}
.essencia-icon svg {
  width: 100%;
  height: 100%;
  /* Aqui você controla a "finura" do ícone */
  stroke-width: 1.2px;
  filter: drop-shadow(0 0 5px rgba(100, 202, 217, 0.4));
}
.essencia-titulo {
  font-size: 1.1rem !important;
  letter-spacing: 2px !important;
  color: #1088A3 !important;
  /* Azul Osteomed mais escuro para contraste */
}
/*------------------------------------------------------------------------SOBRE*/
/*----------------------------------------------------------------SEJA PIONEIRO*/
.seja-pioneiro-premium {
  max-width: 800px;
  margin: 60px auto 40px auto;
  padding: 0 20px;
  text-align: center;
  font-family: "Lato", sans-serif;
}
.seja-pioneiro-premium .badge-pioneiro {
  display: inline-block;
  background-color: rgba(16, 136, 163, 0.1);
  color: #1088A3;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 25px;
  border: 1px solid rgba(16, 136, 163, 0.2);
}
.seja-pioneiro-premium h1 {
  font-family: "Lato", sans-serif !important;
  font-size: 42px !important;
  font-weight: 300 !important;
  color: #1088A3 !important;
  line-height: 1.25 !important;
  margin: 0 auto 30px auto !important;
  max-width: 700px;
  letter-spacing: -1px;
}
.seja-pioneiro-premium p {
  font-family: "Lato", sans-serif !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: #64748b !important;
  max-width: 650px;
  margin: 0 auto 20px auto !important;
}
.seja-pioneiro-premium .slogan-destaque {
  font-size: 15px !important;
  font-style: italic;
  color: #475569 !important;
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
  margin-top: 25px !important;
}
.seja-pioneiro-premium .slogan-destaque strong {
  color: #1088A3;
  font-style: normal;
}
.gatilho-pioneiro {
  max-width: 650px;
  margin: 40px auto;
  background-color: #1088A3;
  padding: 14px 28px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(16, 136, 163, 0.2);
}
.gatilho-pioneiro p {
  font-family: "Lato", sans-serif !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  margin: 0 !important;
  padding: 0 !important;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .gatilho-pioneiro {
    max-width: 100%;
    margin: 30px 20px;
    padding: 12px 20px;
    border-radius: 12px;
  }
  .gatilho-pioneiro p {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }
}
@media (max-width: 768px) {
  .seja-pioneiro-premium h1 {
    font-size: 32px !important;
  }
  .seja-pioneiro-premium p {
    font-size: 15px !important;
  }
}
/*----------------------------------------------------------------SEJA PIONEIRO*/
/*-----------------------------------------------------------------------FOOTER*/
/* 1. FORÇANDO O ALINHAMENTO À ESQUERDA */
.footer-brand-info {
  text-align: left !important;
  display: block !important;
}
/* 2. LOGO */
.footer-logo img {
  margin: 0 0 30px 0 !important;
  /* Remove o auto do centro */
  max-width: 150px !important;
}
/* 3. A LISTA */
/* --- CONTAINER DOS ÍCONES --- */
.footer-contact-boxes {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}
/* --- ESTILO DA CAIXINHA --- */
.contact-box {
  width: 45px;
  height: 45px;
  background-color: #1088A3;
  /* Nosso azul oficial */
  color: #ffffff !important;
  display: flex;
  border: 1px solid #fff;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  /* Cantos levemente arredondados */
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(16, 136, 163, 0.15);
}
/* --- EFEITO AO PASSAR O MOUSE --- */
.contact-box:hover {
  background-color: #0d6e83;
  /* Um tom mais escuro para o hover */
  transform: translateY(-5px);
  /* Levanta a caixinha */
  box-shadow: 0 8px 15px rgba(16, 136, 163, 0.3);
  color: #ffffff !important;
}
/* Ajuste do ícone para garantir centralização */
.contact-box i {
  line-height: 0;
}
/* Responsivo: centraliza no mobile se necessário */
@media (max-width: 768px) {
  .footer-brand-info {
    text-align: center;
  }
  .footer-contact-boxes {
    justify-content: center;
  }
  .footer-logo {
    margin-bottom: 20px;
  }
  .btn-hero .wp-block-button__link {
    font-size: 14px;
  }
  .btn-feature-link .wp-block-button__link {
    font-size: 14px;
  }
  .btn-pricing-main .wp-block-button__link {
    font-size: 14px;
    padding: 15px 10px !important;
  }
  .btn-pricing-sec .wp-block-button__link {
    font-size: 13px;
    padding: 15px 12px !important;
  }
  .btn-nicho .wp-block-button__link {
    font-size: 13px;
    padding: 15px 12px !important;
  }
  .footer-cta-box .wp-block-button__link {
    font-size: 13px;
    padding: 15px 12px !important;
  }
}
/* 1. CONTAINER DO FORM */
.footer-form-title {
  color: #ffffff !important;
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  margin-bottom: 25px !important;
  text-transform: none;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
/* Um detalhe chique: uma linha pequena azul clara embaixo do título */
.footer-form-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #64CAD9;
  margin-top: 10px;
  border-radius: 2px;
}
.wpcf7-form {
  display: flex !important;
  flex-direction: column !important;
}
/* Remove o espaço extra dos <p> que o plugin cria sozinho */
.wpcf7-form p {
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
  /* Espaço entre os campos */
}
/* 2. ESTILIZAÇÃO DOS CAMPOS (INPUTS E TEXTAREA) */
.wpcf7-form-control.wpcf7-text, .wpcf7-form-control.wpcf7-textarea {
  width: 100% !important;
  background: rgba(16, 136, 163, 0.05) !important;
  /* Azul Osteomed bem clarinho */
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 15px !important;
  color: #ffffff !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
}
/* --- AJUSTE CONTACT FORM 7: TEXTAREA --- */
.wpcf7-form textarea, .wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="tel"] {
  background-color: #1088A3 !important;
  /* Fundo branco */
  color: #fff !important;
  /* Texto cinza escuro para contraste */
  border: 1px solid #e2e8f0 !important;
  /* Borda suave */
  padding: 15px !important;
  border-radius: 8px !important;
  font-family: inherit !important;
}
/* Placeholder */
.wpcf7-form-control::placeholder {
  color: #ffffff !important;
}
/* Foco no campo */
.wpcf7-form-control:focus {
  background: #1088A3 !important;
  border-color: #fff !important;
  box-shadow: 0 0 0 4px rgba(16, 136, 163, 0.1) !important;
  outline: none !important;
}
/* 3. BOTÃO DE ENVIO */
.btn-enviar {
  width: fit-content !important;
  background-color: #1088A3 !important;
  border: 1px solid #fff !important;
  color: #ffffff !important;
  padding: 15px 40px !important;
  border-radius: 50px !important;
  font-weight: 400 !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  margin-top: 10px !important;
  -webkit-appearance: none !important;
  box-shadow: 0 10px 20px rgba(16, 136, 163, 0.2) !important;
}
.btn-enviar:hover {
  background-color: #64CAD9 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 20px rgba(16, 136, 163, 0.2) !important;
}
/* Escondendo os <br> chatos que o plugin coloca */
.wpcf7-form br {
  display: none !important;
}
.mailtel a {
  color: #ffffff;
}
/*-----------------------------------------------------------------------FOOTER*/
/*# sourceMappingURL=custom_home.css.map */