:root {
  --primary-color: #16293d;
  --secondary-color: #ff4500;
  --dark-blue: #16293d;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --text-dark: #16293d;
  --text-light: #ffffff;
  --orange: #ff6a00;
  --blue: #0066cc;
}
  
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', Arial, sans-serif;
}

body {
  overflow-x: hidden;
  color: var(--text-dark);
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
header {
  background-color: var(--white);
  padding: 5px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-container {
  display: flex;
  align-items: center;
}

.header-actions {
  margin-left: auto;   /* empurra pro canto direito */
  display: flex;
  align-items: center;
  gap: 12px;           /* espaço entre botões */
}

.logo {
  padding-right: 60px;  /* afasta o menu da logo */
}

.logo img {
  width: 200px;
  height: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin-left: 100px;
}

.nav-menu li + li {
  margin-left: 20px;
}

.nav-menu a {
  font-size: 16px;
  font-weight: 650;
  text-transform: uppercase;
  color: #16293d;
  transition: color 0.3s;
}

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

/* Ajustes da navbar para mobile */
@media (max-width: 768px) {
  header {
    padding: 6px 0 !important;           /* menos espaçamento vertical */
  }
  .header-container {
    padding: 0 12px;                     /* menos espaçamento lateral */
  }
  .logo img {
    max-width: 140px;                    /* logo menor */
  }
  .menu-toggle {
    top: 14px;
    right: 12px;
  }
  .nav-menu a {
    font-size: 14px;                     /* texto menor */
    padding: 6px 0;                      /* menos área clicável */
  }
  .nav-menu li + li {
    margin-left: 10px;                   /* menos espaço entre itens */
  }
  .header-actions .btn-ocorrencia {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/* Se quiser ainda mais compacto em telas muito pequenas */
@media (max-width: 576px) {
  header {
    padding: 4px 0 !important;
  }
  .logo img {
    max-width: 120px;
  }
  .nav-menu a {
    font-size: 13px;
    padding: 4px 0;
  }
  .menu-toggle {
    width: 26px;
    height: 18px;
  }
}

/* 1) Esconde o botão fora do menu no mobile */
@media (max-width: 768px) {
  .header-actions {
    display: none !important;
  }
}
/* 2) Esconde o novo item no desktop */
.menu-boleto-mobile {
  display: none;
}

/* 3) Mostra o novo item apenas no mobile */
@media (max-width: 768px) {
  .menu-boleto-mobile {
    display: block;
    width: 100%;
    text-align: center;
    margin: 12px 0;
  }
  .menu-boleto-mobile .btn-ocorrencia {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 10px 0;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .menu-boleto-mobile .btn-ocorrencia {
    color: #fff !important;
  }
}

/* ===== HERO ESTÁTICO (FORÇA SEM DISTORÇÃO NO DESKTOP) ===== */

/* Base: nada de cortes/distorção por padrão */
.hero{
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Elementos do <picture> preenchem corretamente */
.hero > picture,
.hero > picture > img{
  display: block;
  width: 100%;
}

/* DESKTOP / TELAS GRANDES: mantém 16:9 sem cortar NADA */
@media (min-width: 701px){
  /* Contêiner com 16:9 para evitar salto e nunca distorcer */
  .hero{
    aspect-ratio: 16 / 9;
    max-height: 90vh;          /* não excede a janela */
  }
  .hero > picture > img{
    height: auto !important;   /* chave para não distorcer */
    object-fit: contain !important; /* mostra 100% da imagem */
    object-position: center;
  }
}

/* MOBILE: pode preencher a área (aceitando corte leve) */
@media (max-width: 700px){
  .hero{
    height: min(55vh, 520px);  /* área menor no celular */
  }
  .hero > picture > img{
    height: 100% !important;
    object-fit: cover !important;   /* preenche a área */
    object-position: center;        /* mude para 'center top' se quiser priorizar o topo */
  }
}

/* ===== HERO SLIDER (fade) ===== */
.hero-slider{
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
  will-change: opacity;
}

.hero-slide.active{
  opacity: 1;
  z-index: 1;
}

/* garante que picture/img ocupem a área do slide */
.hero-slide > picture,
.hero-slide > picture > img{
  width: 100%;
  height: 100%;
  display: block;
}

/* Importante:
   Mantemos seu comportamento atual:
   - desktop: contain (sem corte) (você já tem isso no @media min-width:701px)
   - mobile: cover (preenche) (você já tem isso no @media max-width:700px)
   Então aqui NÃO forçamos object-fit; deixamos suas regras existentes mandarem.
*/

/* Acessibilidade: se usuário prefere menos animação, remove transição */
@media (prefers-reduced-motion: reduce){
  .hero-slide{ transition: none; }
}

.btn {
  display: block;
  margin: 0 auto;      
  padding: 10px 10px;
  background-color: var(--dark-blue);
  color: var(--white);
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  width: fit-content;  
}

.btn:hover {
  background-color: #0f1c2a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: var(--dark-blue);
}

.btn-hero {
  background-color: var(--orange);
}

/* Seções */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-blue);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.section-title p {
  font-size: 18px;
  color: #16293d;
  max-width: 700px;
  margin: 0 auto;
}

/* Cards de Coberturas */
.coverage-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.coverage-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.coverage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.coverage-card-content {
  padding: 25px;
}

.coverage-card-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.coverage-card-icon img {
  width: 40px;
  height: 40px;
}

.coverage-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.coverage-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Seção Sobre */
.about {
  background-color: var(--white);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-bg {
  background: url('../images/fundo1.png') no-repeat center center/cover;
  color: var(--orange);
  position: relative;
  z-index: 1;
}

.about-bg .about-text p {
  color: white;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

/* Seção Depoimentos */
.testimonials {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: transform 0.3s ease;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.review-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
}

.stars {
  color: #f5b301; /* amarelo Google Stars */
  font-size: 20px;
  margin-bottom: 10px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #333;
}

.google-icon {
  width: 20px;
  height: 20px;
}

/* Seção FAQ */
.faq {
  background-color: var(--light-gray);
}

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

.faq-list {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  background-color: var(--white);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.8;
  color: #16293d;
}

/* contato */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', Arial, sans-serif;
}

body {
  overflow-x: hidden;
  color: var(--text-dark);
  background-color: var(--white);
}

.contato-pagina {
  background: url('../images/fundo1.png') no-repeat center center/cover;
  background-attachment: fixed;
}

.contato-pagina .contact-header h1,
.contato-pagina .contact-header p,
.contato-pagina .map-info {
  color: white !important;
}

.contato-pagina .contact-form-container {
  background-color: white;
  color: var(--text-dark);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contato-pagina .contact-form-container h2,
.contato-pagina .form-control,
.contato-pagina .form-group label {
  color: var(--dark-blue);
}

.trabalho-conosco {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.trabalho-conosco .section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.trabalho-conosco .section-title h2::before {
  display: none;
}

.trabalho-conosco .section-title p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #444;
}

/* contato fim*/

/* Footer */
footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.footer-social a:hover {
  background-color: var(--primary-color);
}

.footer-social img {
  width: 20px;
  height: 20px;
}

.footer-links h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 16px;
  color: #ffffff;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  color: #ffffff;
}

/* WhatsApp Flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-float a {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 100px;
  height: 100px;
}
/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 42, 58, 0.95);
  color: var(--white);
  padding: 15px 0;
  z-index: 1000;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cookie-accept {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
}

.cookie-accept:hover {
  background-color: var(--secondary-color);
}

.cookie-decline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

 .formulario-cliente {
    padding: 100px 0;
    color: var(--text-light);
  }

  .formulario .form-group {
    margin-bottom: 20px;
  }

  .formulario .form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: border-color 0.3s, background-color 0.3s;
  }

  .formulario .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }

  .formulario .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.2);
  }

  .formulario-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .icon-branco {
  filter: brightness(0) invert(1);
  width: 40px;
  height: 40px;
}

.coverage-card .btn {
  background-color: var(--orange);
}
.coverage-card .btn:hover {
  background-color: var(--dark-blue);
}

/* BLOG


        /* Banner Principal */
        .hero-banner {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 60px 0;
            margin-bottom: 40px;
            background-image: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.8)), url('images/protecao_vs_seguro.jpeg');
            background-size: cover;
            background-position: center;
        }

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

        .hero-content h1 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .search-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }

        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 16px;
        }

        .search-form button {
            background-color: var(--accent-color);
            color: var(--text-color);
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: 500;
        }

        /* Categorias */
        .categories {
            background-color: var(--white);
            padding: 15px 0;
            margin-bottom: 40px;
            box-shadow: var(--shadow);
        }

        .categories-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

        .category-item {
            margin: 0 15px;
            padding: 8px 0;
            position: relative;
            font-weight: 500;
        }

        .category-item.active {
            color: var(--secondary-color);
        }

        .category-item.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--secondary-color);
        }

        /* Grid de Notícias */
        .featured-posts {
            margin-bottom: 60px;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        .posts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .post-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .post-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .post-image {
            height: 200px;
            overflow: hidden;
        }

        .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .post-card:hover .post-image img {
            transform: scale(1.05);
        }

        .post-content {
            padding: 20px;
        }

        .post-category {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--text-color);
            font-size: 0.8rem;
            padding: 4px 10px;
            border-radius: 20px;
            margin-bottom: 10px;
        }

        .post-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 700;
            line-height: 1.4;
        }

        .post-excerpt {
            color: var(--dark-gray);
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .post-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--dark-gray);
        }

        .read-more {
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }

        .read-more span {
            margin-left: 5px;
            transition: var(--transition);
        }

        .read-more:hover span {
            transform: translateX(3px);
        }

        /* Notícias Recentes */
        .recent-posts {
            margin-bottom: 60px;
        }

        .recent-posts-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .recent-post-item {
            display: flex;
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .recent-post-image {
            width: 120px;
            min-width: 120px;
        }

        .recent-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .recent-post-content {
            padding: 15px;
        }

        .recent-post-title {
            font-size: 1rem;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .recent-post-meta {
            font-size: 0.8rem;
            color: var(--dark-gray);
        }

        /* Sidebar */
        .sidebar {
            background-color: var(--white);
            border-radius: 8px;
            padding: 25px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }

        .sidebar-title {
            font-size: 1.2rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--medium-gray);
        }

        .popular-posts-list {
            list-style: none;
        }

        .popular-post-item {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--medium-gray);
        }

        .popular-post-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .popular-post-image {
            width: 80px;
            height: 80px;
            margin-right: 15px;
        }

        .popular-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 4px;
        }

        .popular-post-content {
            flex: 1;
        }

        .popular-post-title {
            font-size: 0.9rem;
            margin-bottom: 5px;
            font-weight: 600;
            line-height: 1.4;
        }

        .popular-post-meta {
            font-size: 0.8rem;
            color: var(--dark-gray);
        }

        .newsletter-form {
            margin-top: 20px;
        }

        .newsletter-form input {
            width: 100%;
            padding: 10px 15px;
            margin-bottom: 10px;
            border: 1px solid var(--medium-gray);
            border-radius: 4px;
        }

        .newsletter-form button {
            width: 100%;
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 12px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            background-color: #004494;
        }

        .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag-item {
            background-color: var(--medium-gray);
            color: var(--text-color);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            transition: var(--transition);
        }

        .tag-item:hover {
            background-color: var(--primary-color);
            color: var(--white);
        }

        /* CTA Banner */
        .cta-banner {
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 40px 0;
            margin-bottom: 60px;
            text-align: center;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-family: var(--font-heading);
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .cta-content p {
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .cta-button-large {
            background-color: var(--white);
            color: var(--secondary-color);
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-block;
        }

        .cta-button-large:hover {
            background-color: var(--accent-color);
            color: var(--text-color);
        }

      
        /* Layout Responsivo */
        @media (max-width: 1024px) {
            .posts-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }

            .nav-menu {
                margin-top: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .nav-menu li {
                margin: 5px 10px;
            }

            .posts-grid,
            .recent-posts-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .search-form {
                flex-direction: column;
            }

            .search-form input {
                border-radius: 4px;
                margin-bottom: 10px;
            }

            .search-form button {
                border-radius: 4px;
                padding: 12px;
            }

            .category-item {
                margin: 0 10px;
                font-size: 0.9rem;
            }

            .recent-post-item {
                flex-direction: column;
            }

            .recent-post-image {
                width: 100%;
                height: 150px;
            }
        }

        /* Estilos para página individual de notícia */

        /* Layout de duas colunas */
        .two-columns {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        @media (max-width: 768px) {
            .two-columns {
                grid-template-columns: 1fr;
            }
        }

      /* Contact */

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

        body {
            font-family: var(--font-main);
            color: var(--text-color);
            line-height: 1.6;
            background-color: var(--background-color);
        }

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

        a:hover {
            opacity: 0.85;
        }

        /* Seção de Contato */
        .contact-section {
  background: url('../images/fundo1.png') no-repeat center center/cover;
  position: relative;
  z-index: 1;
  padding: 80px 0;
  color: white;
}

        .contact-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .contact-header h1 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--text-color);
        }

        .contact-header p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
            color: var(--dark-blue);
        }

        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .maps-container {
            flex: 1;
            min-width: 300px;
        }

        .map-item {
            height: 250px;
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--dark-blue);
        }

        .map-item iframe {
            width: 100%;
            height: 100%;
            border: none;
            border: 1px solid var(--dark-blue);
        }

        .map-info {
            background-color: var(--white);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid var(--dark-blue);
        }

        .map-info h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--dark-blue);
        }

        .map-info p {
          margin-bottom: 5px;
          font-size: 0.95rem;
          color: var(--dark-blue);
}

        .map-info i {
            color: var(--accent-color);
            margin-right: 8px;
            width: 16px;
            text-align: center;
        }

        .contact-form-container {
            flex: 1;
            min-width: 300px;
            background-color: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            border: 1px solid var(--dark-blue);
        }

        .contact-form-container h2 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--accent-color);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--dark-blue);
            border-radius: 4px;
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--text-color);
            font-family: var(--font-main);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--dark-blue);
            box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.2);
        }

        .form-control::placeholder {
            color: var(--dark-blue)
        }

        .submit-btn {
            background-color: var(--dark-blue);
            color: var(--white);
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-block;
            text-align: center;
            width: 100%;
        }

        .submit-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .contact-content {
                flex-direction: column;
            }
            
            .maps-container, 
            .contact-form-container {
                width: 100%;
            }
            
            .contact-header h1 {
                font-size: 2rem;
            }
        }

        /* sobre */

.counters-section {
  padding: 80px 0;
  background: #16293d;
  color: #fff;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
  align-items: stretch;
}

.box {
  background: #ff6a00;
  border-radius: 18px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.13);
  text-align: center;
  padding: 32px 18px 28px 18px;
  transition: transform .25s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  height: 100%;
}

.box-destaque {
  grid-column: span 2;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.box-duplo {
  grid-column: span 2;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .box-duplo {
    grid-column: span 1;
  }
}

.box:hover {
  transform: translateY(-7px) scale(1.04);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.number {
  font-size: 2.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  transition: color .3s;
}

.label {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  margin-top: 5px;
  letter-spacing: .5px;
}

.counters-section .section-title h2,
.counters-section .section-title p {
  color: #fff;
}


.about-text p {
  font-size: 20px;   /* Pode aumentar mais se quiser! */
  color: #222;
  line-height: 1.7;
}
.about-text strong {
  color: #16293d;    /* Destaca as palavras-chave */
}

/* missao,valores */

.institucional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 32px;
  margin-top: 44px;
}

.institucional-card {
  background: #fff;
  border: none;
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(22, 41, 61, 0.10);
  padding: 36px 26px 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .24s, box-shadow .24s;
  position: relative;
  min-height: 350px;
}

.institucional-card:hover {
  transform: translateY(-6px) scale(1.035);
  box-shadow: 0 16px 42px 0 rgba(22,41,61,0.13);
}

.institucional-icon {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.institucional-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #16293d;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.institucional-card p,
.institucional-card ul {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #343a40;
  text-align: center;
}

.institucional-card ul {
  padding-left: 0;
  list-style: none;
  margin-top: 8px;
}
.institucional-card ul li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 22px;
  text-align: left;
}
.institucional-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 10px; height: 10px;
  background: #ff6a00;
  border-radius: 50%;
}

.missao-title h2 {
  color: #ff6a00;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 1px;
    text-align: center;
}

.about-bg {
  background: #16293d;
}

@media (max-width: 900px) {
  .institucional-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .institucional-card {
    min-height: 0;
  }
}


/* protecao */

.cta-sobre .btn {
  display: inline-block;
  background-color: var(--orange);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cta-sobre .btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
  header .header-container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  nav .nav-menu {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-actions {
    margin-top: 15px;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  .logo img {
    max-width: 180px;
    height: auto;
  }
}

/* Estilo do botão hambúrguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #16293d;
  transition: all 0.3s;
  border-radius: 2px;
}

/* Reset para nav-menu */
.nav-menu {
  display: flex;
  list-style: none;
  margin-left: 40px;
}

.nav-menu ul {
  display: flex;
  gap: 20px;
}

/* ---------- MOBILE STYLES ---------- */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 2001;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: white;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 10px;
  }

  .nav-menu a {
    font-size: 16px;
  }
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--dark-blue);
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px; /* Adjust based on header height */
    left: 0;
    background-color: var(--white);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    padding: 10px 20px;
    border-top: 1px solid var(--light-gray);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  .nav-menu a {
    font-size: 18px;
  }

  .menu-toggle {
    display: flex;
  }

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

  .logo {
    padding-right: 0;
  }

  .header-actions {
    margin-left: 0;
  }

  .header-actions .btn {
    font-size: 14px;
    padding: 8px 15px;
  }

  .formulario-conteudo {
    flex-direction: column;
  }

  .formulario-imagem, .formulario-box {
    min-width: 100%;
  }

  .about-content {
    flex-direction: column;
  }

   .about-text {
    flex: 1 1 100%;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

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

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

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

  .section {
    padding: 40px 0;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .section-title p {
    font-size: 14px;
  }

  .coverage-cards {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 400px;
  }

  .app-section {
    padding: 60px 0;
  }

  .app-section p {
    font-size: 16px;
  }

  .app-section img {
    height: 50px;
  }

  .faq-question {
    font-size: 16px;
    padding: 15px;
  }

  .faq-answer {
    padding: 0 15px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .whatsapp-float {
    bottom: 100px;   /* ex: sobe o botão 120px do fundo */
    right: 15px;
  }
  .whatsapp-float a {
    width: 50px;
    height: 50px;
  }
  .whatsapp-float img {
    width: 80px;
    height: 80px;
  }
}

  .whatsapp-float {
    bottom: 100px;   /* ex: sobe o botão 120px do fundo */
    right: 15px;
  }
  .whatsapp-float a {
    width: 50px;
    height: 50px;
  }
  .whatsapp-float img {
    width: 100px;
    height: 100px;
  }

.cta-center {
  text-align: center;
  margin-top: 40px;
}

.cta-center .btn {
  padding: 12px 30px;
  font-size: 16px;
  background-color: var(--orange, #f26522);
  color: white;
  border: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.cta-center .btn:hover {
  background-color: #d6531b;
}

.beneficios-section .beneficios-cards {
  margin-top: 40px;
}

.beneficio-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(22, 41, 61, 0.08);
  padding: 32px 24px 24px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border-bottom: 4px solid var(--primary-color);
}
.beneficio-card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 10px 32px rgba(22,41,61,0.15);
  border-bottom: 4px solid var(--orange);
}
.beneficio-card h3 {
  color: var(--text-dark);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
}
.beneficio-card p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}
.beneficio-icone img {
  background: var(--orange);
  border-radius: 50%;
  padding: 12px;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 8px rgba(22,41,61,0.08);
}

.btn-cotar {
  background: var(--orange);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 30px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(255,106,0,0.18);
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.btn-cotar:hover {
  background: #ff8000;
  transform: scale(1.04);
}

.btn-pulse {
  animation: pulse 1.25s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,106,0,0.38); }
  70% { box-shadow: 0 0 0 14px rgba(255,106,0,0.04); }
  100% { box-shadow: 0 0 0 0 rgba(255,106,0,0.00); }
}

.blog-section {
  padding: 80px 0;
  background: var(--white);
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 32px;
  margin-top: 45px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(22,41,61,0.10);
  overflow: hidden;
  transition: transform 0.23s, box-shadow 0.23s;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-bottom: 4px solid var(--primary-color);
}

.blog-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 32px rgba(22,41,61,0.18);
  border-bottom: 4px solid var(--orange);
}

.blog-image-link, .blog-card img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 22px 20px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  margin-top: 0;
}

.blog-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card h3 a:hover {
  color: var(--orange);
  text-decoration: underline;
}

.blog-summary {
  font-size: 15px;
  color: #444;
  margin-bottom: 16px;
}

.blog-card time {
  font-size: 14px;
  color: #888;
  margin-top: auto;
  display: block;
}

@media (max-width: 768px) {
  .blog-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .blog-card img {
    height: 170px;
  }
}

/* Sobe o selo do reCAPTCHA acima do WhatsApp */
.grecaptcha-badge {
  bottom: 20px !important;  /* Aumente se o botão do Whats for maior */
  z-index: 9999 !important;
}

/* ===== Seção de Selos ===== */
.section.seals .section-title p{
  max-width: 720px;
  margin-left:auto;
  margin-right:auto;
}

.seals-grid{
  display:grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap:18px;
  align-items:stretch;
  margin-top:18px;
}

.seal-card{
  background:#fff;
  border:1px solid rgba(22,41,61,.12);
  border-radius:16px;
  box-shadow:0 10px 26px rgba(22,41,61,.06);
  padding:14px 16px;
  display:flex;
  flex-direction:column;
  min-height: 140px;
}

.seal-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(22,41,61,.08);
}

.seal-label{
  font-weight:800;
  color:#16293d;
}

.seal-link{
  color:#ff6a00;
  text-decoration:none;
  font-weight:800;
}

.seal-body{
  padding-top:12px;
  display:flex;
  justify-content:center;
  align-items:center;
  flex:1;
}

/* Google */
.seal-google-body{
  justify-content:flex-start;
  gap:12px;
}

.seal-icon{
  width:28px;
  height:28px;
}

.seal-title{
  font-weight:900;
  color:#16293d;
  line-height:1.1;
}

.seal-sub{
  margin-top:4px;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  color:#16293d;
  opacity:.92;
}

.seal-rating{
  font-weight:900;
  font-size:1.25rem;
}

.seal-stars{
  letter-spacing:2px;
  font-size:1.05rem;
}

.seal-total{
  opacity:.85;
}

/* SUSEP (reforço) */
.seal-susep .seal-susep-body{
  flex-direction: column;
  text-align: center;
}

.seal-susep .susep-badge{
  width: 90px !important;
  max-width: 90px !important;
  height: auto !important;
  display: block;
}

.seal-susep .susep-note{
  margin: 0;
  font-size: .92rem;
  font-weight: 700;
  color: #16293d;
}


/* Reclame Aqui: centraliza o selo gerado */
.seal-ra #reputation-ra{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
}

/* Responsivo */
@media (max-width: 980px){
  .seals-grid{
    grid-template-columns: 1fr;
  }
  .seal-card{
    min-height: auto;
  }
  .seal-google-body{
    justify-content:center;
    text-align:center;
  }
  .seal-google-body{
    flex-direction:column;
  }
}
