/*
 * Rede de Proteção SP — Main CSS
 * Layout: baseado no site original + modernizações
 * Cores: Vermelho (#ff5151), Preto (#111), Branco, Cinza
 */

/* ============================================================
   Variáveis
   ============================================================ */
:root {
  --default-font: "Roboto", system-ui, -apple-system, sans-serif;
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;

  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #111111;
  --accent-color: #ff5151;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  --nav-color: #222222;
  --nav-hover-color: #ff5151;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-color: #333333;
  --nav-dropdown-hover-color: #ff5151;

  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

.gray-background {
  --background-color: #f5f5f5;
  --surface-color: #ffffff;
}

.red-background {
  --background-color: #ff5151;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(255, 255, 255, 0.12);
  --contrast-color: #ffffff;
}

/* ============================================================
   Geral
   ============================================================ */
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

a:hover {
  color: #aa0000;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 72px 0;
  overflow: clip;
}

/* ============================================================
   Header
   ============================================================ */
.header {
  background-color: #ffffff;
  padding: 12px 0;
  transition: box-shadow 0.3s;
  z-index: 997;
  border-bottom: 1px solid #e8e8e8;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Logo */
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

/* Botão WhatsApp header */
.header .btn-header-wa {
  background-color: #25d366;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--nav-font);
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.header .btn-header-wa:hover {
  background-color: #1da851;
  color: #fff;
}

/* ============================================================
   Navegação Desktop
   ============================================================ */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 13px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: 0.3s;
    border-radius: 3px;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
  }

  /* Dropdown desktop */
  .navmenu li.dropdown {
    position: relative;
  }

  .navmenu li.dropdown > a .toggle-dropdown {
    font-size: 11px;
    margin-left: 3px;
    transition: transform 0.25s;
  }

  .navmenu li.dropdown:hover > a .toggle-dropdown {
    transform: rotate(180deg);
  }

  .navmenu li.dropdown > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
    border: 1px solid #ebebeb;
    z-index: 999;
  }

  .navmenu li.dropdown:hover > ul {
    display: block;
  }

  .navmenu li.dropdown > ul li a {
    padding: 9px 18px;
    font-size: 16px;
    color: #333333;
    border-radius: 0;
    display: block;
  }

  .navmenu li.dropdown > ul li a:hover {
    color: #ff5151;
    background-color: #fff5f5;
  }

  .navmenu li.dropdown > ul li a.active {
    color: var(--accent-color);
    font-weight: 600;
    background-color: #fff5f5;
  }
}

/* ============================================================
   Navegação Mobile
   ============================================================ */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 0;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    top: 62px;
    left: 15px;
    right: 15px;
    padding: 8px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #ffffff;
    overflow-y: auto;
    z-index: 9998;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    border: 1px solid #e8e8e8;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 12px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: block;
    transition: 0.3s;
    border-bottom: 1px solid #f0f0f0;
  }

  .navmenu ul li:last-child a {
    border-bottom: none;
  }

  .navmenu a:hover {
    color: var(--accent-color);
    background-color: #fff5f5;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: fixed;
    font-size: 28px;
    top: 16px;
    right: 20px;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9996;
  }

  .mobile-nav-active .navmenu ul {
    display: block;
    top: 70px;
  }

  /* Dropdown mobile */
  .navmenu li.dropdown > ul {
    display: none;
    position: static;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f9f9f9;
    box-shadow: none;
    border: none;
    border-radius: 0;
  }

  .navmenu li.dropdown > ul li a {
    padding: 10px 30px;
    font-size: 16px;
    color: #555555;
    border-bottom: 1px solid #eeeeee;
  }

  .navmenu li.dropdown > ul li a.active {
    color: var(--accent-color);
    font-weight: 600;
  }

  .navmenu li.dropdown > a .toggle-dropdown {
    float: right;
    font-size: 11px;
    transition: transform 0.25s;
  }

  .navmenu li.dropdown.dropdown-open > a .toggle-dropdown {
    transform: rotate(180deg);
  }
}

/* ============================================================
   Labels de seção
   ============================================================ */
.content-heading {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 14px;
  line-height: 1.3;
}

.content-lead {
  font-size: 16px;
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ============================================================
   Botões globais
   ============================================================ */
.btn-cta-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25d366;
  color: #ffffff;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--nav-font);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: 0.3s;
}

.btn-cta-green:hover {
  background-color: #1da851;
  color: #ffffff;
}

.btn-cta-outline-red {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #ff5151;
  color: #ff5151;
  border-radius: 50px;
  font-family: var(--nav-font);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: 0.3s;
}

.btn-cta-outline-red:hover {
  background: #ff5151;
  color: #ffffff;
}

.btn-link-red {
  font-family: var(--nav-font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-color);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.btn-link-red:hover {
  gap: 10px;
  color: #aa0000;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 130px 0 110px;
  position: relative;
  background-image: url('../img/rede-de-protecao-em-sp-banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 520px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  color: #ff5555;
}

.hero-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  line-height: 1.75;
  max-width: 520px;
}

@media (max-width: 991px) {
  .hero { padding: 80px 0 70px; }
}

@media (max-width: 767px) {
  .hero {
    background-image: url('../img/rede-de-protecao-em-sp-banner-mobile.jpg');
    text-align: center;
  }
  .hero .hero-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================================
   Sobre / About
   ============================================================ */
.about-img-box {
  border-radius: 10px;
  overflow: hidden;
}

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

.quality-img-box {
  border-radius: 10px;
  overflow: hidden;
}

.quality-img-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-banner {
  padding: 60px 0;
}

.cta-banner h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.3;
}

.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq .accordion-item {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0 !important;
  background: transparent;
}

.faq .accordion-button {
  font-family: var(--nav-font);
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  padding: 18px 0;
  background: transparent;
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--accent-color);
  background: transparent;
  box-shadow: none;
}

.faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23cc0000' d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
}

.faq .accordion-body {
  padding: 0 0 18px 0;
  font-size: 16px;
  color: var(--default-color);
  line-height: 1.7;
  background: transparent;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background-color: #2d2d2d;
  color: #999999;
  padding: 55px 0 0;
  font-size: 16px;
}

.footer-logo-img {
  height: 46px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-about {
  color: #888888;
  line-height: 1.7;
  font-size: 16px;
  margin-top: 12px;
}

.footer-heading {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #3d3d3d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-links li {
  padding: 6px 0;
}

.footer-links a {
  color: #888888;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: 0.3s;
}

.footer-links a i {
  color: var(--accent-color);
  font-size: 11px;
}

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

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

.footer-contact-list li {
  padding: 6px 0;
  color: #888888;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
}

.footer-contact-list li i {
  color: var(--accent-color);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: #888888;
  transition: 0.3s;
}

.footer-contact-list a:hover {
  color: var(--accent-color);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #444444;
  color: #888888;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer-bottom {
  margin-top: 44px;
  padding: 18px 0;
  border-top: 1px solid #3d3d3d;
  text-align: center;
  color: #555555;
  font-size: 16px;
}

.footer-bottom p {
  margin-bottom: 6px;
}

.footer-bottom p:last-child {
  margin-bottom: 0;
}

.footer-credit {
  font-size: 16px;
}

.footer-credit a {
  color: #888888;
  font-weight: 600;
  transition: 0.3s;
}

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

/* ============================================================
   Scroll Top
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  transition: 0.3s;
}

.whatsapp-float:hover {
  background-color: #1da851;
  color: #ffffff;
  transform: scale(1.06);
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 29px;
  bottom: 90px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 2px 12px rgba(204,0,0,0.35);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

.scroll-top:hover {
  background-color: #aa0000;
  color: #fff;
}

/* ============================================================
   Preloader
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

#preloader::before {
  content: "";
  width: 46px;
  height: 46px;
  border: 4px solid #e0e0e0;
  border-top-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   Largura máxima global
   ============================================================ */
.container {
  max-width: 1200px;
}

/* ============================================================
   Callout de introdução
   ============================================================ */
.intro-callout {
  padding: 16px 20px;
  background: #fff5f5;
  border-left: 3px solid var(--accent-color);
  border-radius: 6px;
  font-size: 16px;
}

/* ============================================================
   Listas de verificação (checklists)
   ============================================================ */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.check-list li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 16px;
  color: var(--default-color);
  line-height: 1.6;
}

.check-list li::before {
  content: "\f26b";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--accent-color);
  font-size: 14px;
}

/* ============================================================
   Soluções / Cards de serviço
   ============================================================ */
.solution-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.08);
  background: #ffffff;
  border: 1px solid #ececec;
  transition: box-shadow 0.3s, transform 0.3s;
}

.solution-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.solution-card-img {
  height: 190px;
  overflow: hidden;
}

.solution-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.solution-card:hover .solution-card-img img {
  transform: scale(1.06);
}

.solution-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.solution-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  line-height: 1.35;
}

.solution-card-body p {
  font-size: 16px;
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

/* ============================================================
   Como funciona / Steps
   ============================================================ */
.step-item {
  height: 100%;
  padding: 24px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #ececec;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #ffffff;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
}

.step-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 16px;
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   Por que escolher
   ============================================================ */
.why-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.why-grid li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: var(--default-color);
  line-height: 1.4;
}

.why-grid li i {
  color: var(--accent-color);
  font-size: 17px;
  margin-top: 1px;
  flex-shrink: 0;
}

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

/* ============================================================
   Avaliações - cards de tópicos
   ============================================================ */
.topic-card {
  height: 100%;
  text-align: center;
  padding: 24px 14px;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}

.topic-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.topic-card i {
  display: block;
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.topic-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.4;
}

/* ============================================================
   Elfsight Google Reviews - ocultar título padrão do widget
   Obs.: se o widget renderizar em Shadow DOM, isso não terá
   efeito; nesse caso remova o título direto no editor Elfsight.
   ============================================================ */
[class^="elfsight-app-"] .eapps-widget-header-title,
[class^="elfsight-app-"] .eapps-widget-header {
  display: none !important;
}

/* ============================================================
   CTA final - lista de orçamento
   ============================================================ */
.orcamento-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  row-gap: 10px;
  column-gap: 22px;
  text-align: left;
}

.orcamento-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
}

.orcamento-list li i {
  color: #ffffff;
}

/* ============================================================
   Breadcrumb (Quem Somos)
   ============================================================ */
.breadcrumb-bar {
  background-color: #f7f7f7;
  border-bottom: 1px solid #ececec;
  padding: 12px 0;
}

.breadcrumb-bar ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: var(--nav-font);
  color: #777777;
}

.breadcrumb-bar li {
  display: flex;
  align-items: center;
}

.breadcrumb-bar li:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: #cccccc;
}

.breadcrumb-bar a {
  color: var(--accent-color);
}

.breadcrumb-bar li[aria-current="page"] {
  color: #555555;
  font-weight: 600;
}

/* ============================================================
   Chips de especialização
   ============================================================ */
.tag-chip-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 22px;
}

.tag-chip-list li {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 16px;
  color: var(--default-color);
}

/* ============================================================
   Missão, visão e valores
   ============================================================ */
.value-card {
  height: 100%;
  padding: 28px 24px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #ececec;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.value-card i {
  display: block;
  font-size: 30px;
  color: var(--accent-color);
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.value-card p {
  font-size: 16px;
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
}

.value-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: var(--default-color);
  line-height: 1.8;
}

.value-card ul li {
  position: relative;
  padding-left: 18px;
}

.value-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* ============================================================
   Conheça nossas soluções (links)
   ============================================================ */
.solutions-link-grid {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 12px;
  padding: 0;
  margin: 0;
}

.solutions-link-grid li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  transition: 0.3s;
}

.solutions-link-grid li a i {
  color: var(--accent-color);
  font-size: 15px;
  transition: 0.3s;
}

.solutions-link-grid li a:hover {
  background: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
}

.solutions-link-grid li a:hover i {
  color: #ffffff;
}

.solutions-link-grid li.text-only {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f5;
  border: 1px dashed #dddddd;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 16px;
  color: #888888;
}

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 768px) {
  .cta-banner {
    padding: 50px 0;
  }

  .hero-title {
    font-size: 30px;
  }
}

