.elementor-kit-12{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-12 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* =========================================================
   1. RESET & BASE
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 700;
  color: #1A2E40;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p, li {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

/* =========================================================
   2. TIPOGRAFIA
========================================================= */

.claro-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* =========================================================
   3. LAYOUT GLOBAL
========================================================= */

.claro-bg-branco {
  background: #FFFFFF;
}

.claro-bg-azul {
  background: #F7F9FB;
  border-radius: 12px;
}

/* =========================================================
   4. MENU CLARO (versão correta)
========================================================= */

.claro-menu {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}

.claro-menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.claro-logo img {
  height: 100px;
  width: auto;
  display: block;
}

.claro-menu-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.claro-menu-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.2s;
}

.claro-menu-links a:hover {
  color: #000;
}

/* Mobile menu */
.claro-burger {
  width: 28px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.claro-burger span {
  height: 3px;
  background: #333;
  border-radius: 3px;
}

.claro-mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 20px;
  border-top: 1px solid #eee;
}

.claro-mobile-menu a {
  padding: 12px 0;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  border-bottom: 1px solid #f0f0f0;
}

.menu-open .claro-mobile-menu {
  display: flex;
}

@media (max-width: 768px) {
  .claro-menu-links {
    display: none;
  }
  .claro-burger {
    display: flex;
  }
  .claro-logo img {
    height: 70px;
  }
}

/* =========================================================
   5. HERO PRINCIPAL
========================================================= */

.claro-hero {
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F8FC 100%);
}

.claro-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.claro-hero p {
  font-size: 1.3rem;
  color: #555;
}

/* =========================================================
   6. HEROS ARTIGOS
   ========================================================= */
   
   .claro-hero-side {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.claro-hero-side img {
  width: 45%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.claro-hero-side-text {
  flex: 1;
}

/* HERO LADO A LADO — MOBILE AJUSTADO */
@media (max-width: 768px) {

  .claro-hero-side {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    margin-bottom: 40px;
  }

  .claro-hero-side img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
  }

  .claro-hero-side-text h1 {
    font-size: 1.9rem;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .claro-hero-side-text p {
    font-size: 1.05rem;
    margin-bottom: 12px;
  }

  .claro-hero-side-text .claro-article-meta {
    font-size: 0.9rem;
  }
}


/* =========================================================
   7. ARTIGOS
========================================================= */

.claro-article-section {
  margin-bottom: 60px;
}

.claro-article-section h2 {
  font-size: 1.9rem;
  margin-bottom: 18px;
}

.claro-article-section p {
  margin-bottom: 18px;
  color: #3A4A5A;
  line-height: 1.75;
  font-size: 1.15rem;
}

.claro-article-section ul {
  padding-left: 22px;
  margin-bottom: 25px;
}

.claro-article-section ul li {
  margin-bottom: 10px;
  color: #2F3E4E;
}

.claro-article-section ul li::marker {
  color: #007BFF;
}

.claro-article-section a {
  color: #007BFF;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,123,255,0.3);
}

.claro-article-section a:hover {
  color: #1A2E40;
  border-bottom-color: #1A2E40;
}

/* CTA final do artigo */
.claro-article-cta {
  background: #F4F8FF;
  padding: 50px 30px;
  border-radius: 14px;
  text-align: center;
  margin-top: 80px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.claro-article-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.claro-article-cta p {
  font-size: 1.15rem;
  color: #3A4A5A;
  margin-bottom: 25px;
}

.claro-cta-note {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #6A7A8A;
}

/* Artigos relacionados */
.claro-article-related {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e6e6e6;
}

.claro-article-related h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
}

.claro-article-related ul {
  list-style: none;
  padding: 0;
}

.claro-article-related li {
  margin-bottom: 12px;
}

.claro-article-related a {
  color: #007BFF;
  font-size: 1.1rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,123,255,0.3);
}

.claro-article-related a:hover {
  color: #1A2E40;
  border-bottom-color: #1A2E40;
}

/* =========================================================
   8. BOTÕES
========================================================= */

.claro-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
  margin: 8px;
}

.claro-btn-primary {
  background: #4DA3FF;
  color: #fff;
  padding: 18px 40px;
  border-radius: 10px;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(77,163,255,0.25);
}

.claro-btn-primary:hover {
  background: #1A2E40;
  transform: translateY(-3px);
}

.claro-btn-secondary {
  background: #f2f2f2;
  color: #111;
}

.claro-btn-secondary:hover {
  background: #e6e6e6;
}

/* =========================================================
   9. CARDS, TESTEMUNHOS, CTA FINAL
========================================================= */

.claro-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.claro-cards div {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.claro-testimonials div {
  background: #F0F6FF;
  padding: 20px;
  border-left: 4px solid #4DA3FF;
  margin-bottom: 20px;
  border-radius: 8px;
  font-style: italic;
  font-size: 1.2rem;
}

.claro-final-cta {
  text-align: center;
  padding: 100px 20px;
  background: #EAF3FF;
  border-radius: 16px;
}

/* =========================================================
   10. PLANOS (versão nova)
========================================================= */

.claro-planos-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.claro-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.claro-card-destaque {
  border: 2px solid #4DA3FF;
}

.claro-card-info {
  margin-bottom: 20px;
}

/* =========================================================
   11. RODAPÉ CLARO (versão final)
========================================================= */

.claro-footer {
  background: #f8f8f8;
  padding: 60px 0 30px;
  margin-top: 60px;
  border-top: 1px solid #e0e0e0;
}

.claro-footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}

.claro-footer-logo {
  height: 40px;
  margin-bottom: 15px;
}

.claro-footer-col h4 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
}

.claro-footer-col ul {
  list-style: none;
}

.claro-footer-col ul li {
  margin-bottom: 8px;
}

.claro-footer-col a {
  text-decoration: none;
  color: #333;
  transition: 0.2s;
}

.claro-footer-col a:hover {
  color: #007BFF;
}

.claro-footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: #666;
}


/* =========================================================
   12. BLOG — Página de Artigos
========================================================= */

.claro-blog-hero {
  text-align: center;
  padding: 80px 20px 40px;
}

.claro-blog-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.claro-blog-hero p {
  font-size: 1.2rem;
  color: #4A5A6A;
}

.claro-blog-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.claro-blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.25s ease;
}

.claro-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.claro-blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.claro-blog-card h3 {
  font-size: 1.4rem;
  padding: 20px 20px 10px;
}

.claro-blog-card p {
  padding: 0 20px 20px;
  color: #4A5A6A;
  font-size: 1rem;
}

.claro-blog-pagination {
  text-align: center;
  padding-bottom: 60px;
}

.claro-blog-pagination a {
  display: inline-block;
  padding: 10px 16px;
  margin: 0 5px;
  border-radius: 8px;
  background: #f2f2f2;
  text-decoration: none;
  color: #333;
  transition: 0.2s;
}

.claro-blog-pagination a:hover {
  background: #e6e6e6;
}

.claro-blog-pagination .active {
  background: #4DA3FF;
  color: #fff;
}

/* BLOG — Mobile Premium */
@media (max-width: 768px) {

  .claro-blog-hero {
    padding: 60px 20px 20px;
  }

  .claro-blog-hero h1 {
    font-size: 2.2rem;
  }

  .claro-blog-hero p {
    font-size: 1.05rem;
  }

  .claro-blog-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 20px 20px 60px;
  }

  .claro-blog-card img {
    height: 160px;
  }

  .claro-blog-card h3 {
    font-size: 1.25rem;
  }

  .claro-blog-pagination a {
    padding: 8px 14px;
    font-size: 0.95rem;
  }
}


/* =========================================================
   13. RESPONSIVO
========================================================= */

@media (max-width: 768px) {

  .claro-hero-minimal img {
    width: 120px;
  }

  .claro-article-title {
    font-size: 2.2rem;
  }

  .claro-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .claro-footer-logo {
    margin: 0 auto 10px;
  }
}/* End custom CSS */