/*
Theme Name: F5 Tema
Theme URI: https://f5solucoes.com.br
Author: Mauro Juliani
Description: Tema personalizado baseado no HTML da F5
Version: 1.0
Text Domain: f5-tema
*/

/* ===================== */
/* VARIÁVEIS */
/* ===================== */
:root {
  --azul-primario: #080A2B;
  --azul-hover: #1a1f4d;
  --cinza-claro: #D2D2D4;
  --cinza-bg: #f5f5f7;
  --branco: #ffffff;
  --accent: #4169E1;
  --gradient: linear-gradient(135deg, #080A2B 0%, #1a1f4d 100%);
}

/* ===================== */
/* RESET */
/* ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background-color: var(--branco);
  color: var(--azul-primario);
}

/* ===================== */
/* CONTAINERS */
/* ===================== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===================== */
/* HEADER */
/* ===================== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 10px rgba(8, 10, 43, 0.06);
  transition: box-shadow 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo img {
  height: 50px;
}

nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

nav a {
  text-decoration: none;
  color: var(--azul-primario);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  position: relative;
}

nav a:hover {
  color: var(--accent);
}

.btn-header {
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-header:hover {
  background: var(--accent);
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(65, 105, 225, 0.25);
}

/* ===================== */
/* MOBILE MENU */
/* ===================== */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu span {
  height: 2px;
  width: 25px;
  background: var(--azul-primario);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ===================== */
/* HERO */
/* ===================== */
.hero {
  background: linear-gradient(135deg, #080A2B 0%, #0d1142 35%, #1a1f4d 70%, #2a3464 100%);
  color: var(--branco);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(65, 105, 225, 0.2) 0%, transparent 60%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 31, 77, 0.6) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1 1 500px;
}

.hero-content h1 {
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.hero-badges .badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  opacity: 0.95;
  font-weight: 500;
}

.hero-badges .badge i {
  color: var(--accent);
  font-size: 1.2rem;
}

.hero-image {
  flex: 1 1 400px;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================== */
/* BOTÕES */
/* ===================== */
.btn-primary,
.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-primary:hover,
.btn-secondary:hover {
  background-color: var(--accent);
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(65, 105, 225, 0.25);
}

.btn-filled {
  background: var(--accent);
  color: var(--branco);
  border-color: var(--accent);
}

.btn-filled:hover {
  background: var(--azul-hover);
  border-color: var(--azul-hover);
}

/* ===================== */
/* SEÇÕES GERAIS */
/* ===================== */
section {
  padding: 5rem 2rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--azul-primario);
  text-align: center;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--azul-hover);
  text-align: center;
  max-width: 850px;
  margin: 0 auto 4rem;
  line-height: 1.7;
  font-weight: 400;
}

/* ===================== */
/* PROBLEMAS */
/* ===================== */
#problemas {
  background: linear-gradient(135deg, #1a1f4d 0%, #080A2B 100%);
  color: var(--branco);
  padding: 5rem 2rem;
}

#problemas h2 {
  color: var(--branco);
}

.card-problema {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
  border-top: 4px solid var(--accent);
  backdrop-filter: blur(10px);
}

.card-problema:hover {
  transform: translateY(-5px);
}

.card-problema h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  color: var(--branco);
  font-weight: 700;
  text-align: center;
}

.card-problema p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #eee;
  opacity: 0.95;
  text-align: center;
}

/* ===================== */
/* SERVIÇOS */
/* ===================== */
#servicos {
  background: var(--branco);
  padding: 5rem 2rem;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.servico-card {
  background: var(--branco);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(8, 10, 43, 0.06);
  transition: all 0.3s ease;
  border-top: 3px solid var(--accent);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.servico-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(8, 10, 43, 0.12);
}

.servico-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.servico-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  color: var(--azul-primario);
  line-height: 1.3;
  font-weight: 700;
}

.servico-tag {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
  line-height: 1.4;
}

.servico-card ul {
  list-style: none;
  margin: 1.2rem 0;
  text-align: left;
}

.servico-card li {
  padding: 0.4rem 0;
  padding-left: 1.3rem;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--azul-hover);
}

.servico-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.servico-footer {
  margin-top: auto;
  font-style: italic;
  color: var(--azul-hover);
  padding-top: 1.2rem;
  border-top: 1px solid var(--cinza-bg);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ===================== */
/* SOBRE */
/* ===================== */
#sobre {
  background: var(--cinza-bg);
  padding: 5rem 2rem;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-content h2 {
  text-align: left;
  margin-bottom: 1.8rem;
  font-size: 2rem;
}

.sobre-content p {
  margin-bottom: 1.3rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--azul-hover);
}

.destaque-box {
  background: var(--gradient);
  color: var(--branco);
  padding: 1.8rem 2rem;
  border-radius: 10px;
  margin: 2.5rem 0;
  font-size: 1.08rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 8px 24px rgba(8, 10, 43, 0.12);
  line-height: 1.6;
}

.sobre-image {
  height: 550px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(8, 10, 43, 0.15);
}

.sobre-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================== */
/* NOSSOS NÚMEROS */
/* ===================== */
#numeros {
  background: var(--cinza-bg);
  padding: 3rem 2rem;
  text-align: center;
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.numero-card {
  background: var(--branco);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.numero-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.numero-card .numero {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

.numero-card p {
  font-size: 1rem;
  color: var(--azul-hover);
}

/* ===================== */
/* DIFERENCIAIS */
/* ===================== */
#diferenciais {
  background: var(--branco);
  padding: 5rem 2rem;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.diferencial-card {
  background: var(--cinza-bg);
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diferencial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.diferencial-card i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.diferencial-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--azul-primario);
  font-weight: 700;
}

.diferencial-card p {
  color: var(--azul-hover);
  line-height: 1.65;
  font-size: 0.98rem;
}

/* ===================== */
/* BLOG */
/* ===================== */
#blog {
  background: var(--cinza-bg);
  padding: 5rem 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--branco);
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: var(--azul-primario);
  font-weight: 700;
}

.blog-content p {
  font-size: 0.95rem;
  color: var(--azul-hover);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-link {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-link:hover {
  color: var(--azul-hover);
  gap: 1rem;
}

/* ===================== */
/* AUTOMAÇÃO */
/* ===================== */
#automacao {
  background: var(--azul-primario);
  color: var(--branco);
  padding: 5rem 2rem;
}

#automacao .section-title,
#automacao .section-subtitle {
  color: var(--branco);
}

.automacao-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.automacao-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.automacao-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.automacao-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.automacao-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--branco);
  font-weight: 700;
}

.automacao-card p {
  font-size: 0.95rem;
  color: #eee;
  line-height: 1.6;
  opacity: 0.95;
}

/* ===================== */
/* DEPOIMENTOS */
/* ===================== */
#depoimentos {
  background: var(--cinza-bg);
  padding: 5rem 2rem;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.depoimento-card {
  background: var(--branco);
  border: 1px solid #eee;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.depoimento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.depoimento-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  left: 1.8rem;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.15;
  font-family: Georgia, serif;
}

.depoimento-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--azul-hover);
  line-height: 1.7;
  font-size: 0.98rem;
  position: relative;
  z-index: 1;
}

.depoimento-author {
  font-weight: 600;
  color: var(--azul-primario);
  font-size: 0.95rem;
}

/* ===================== */
/* CONTATO */
/* ===================== */
#contato {
  background: var(--gradient);
  color: var(--branco);
  padding: 5rem 2rem;
}

#contato .section-title,
#contato .section-subtitle {
  color: var(--branco);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.contato-info h3 {
  margin-bottom: 1.5rem;
  color: var(--branco);
  font-size: 1.5rem;
  font-weight: 700;
}

.contato-info p {
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.7;
}

.contato-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contato-form {
  background: rgba(255,255,255,0.08);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.3rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.95);
  color: var(--azul-primario);
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--branco);
  box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

button[type="submit"] {
  width: 100%;
  background: var(--accent);
  color: var(--branco);
  border: none;
  padding: 0.95rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  background: var(--azul-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(65, 105, 225, 0.3);
}

/* ===================== */
/* FOOTER */
/* ===================== */
footer {
  background: var(--azul-primario);
  color: var(--branco);
  padding: 4rem 2rem 2rem 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.footer-about {
  margin-bottom: 1.5rem;
  font-size: 0.96rem;
  line-height: 1.65;
  opacity: 0.9;
}

.footer-column h4 {
  margin-bottom: 1.3rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: var(--branco);
  text-decoration: none;
  font-size: 0.93rem;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a,
.social-icon {
  color: var(--branco);
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.footer-social a:hover,
.social-icon:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-slogan {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  opacity: 0.95;
}

/* ===================== */
/* WHATSAPP FLOAT */
/* ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  color: white;
  font-size: 34px;
}

/* ===================== */
/* RESPONSIVIDADE */
/* ===================== */

/* Tablets e abaixo */
@media (max-width: 1200px) {
  .servicos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Menu Mobile */
@media (max-width: 1024px) {
  nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--branco);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(8, 10, 43, 0.1);
    gap: 0;
  }
  
  nav.active {
    display: flex;
  }
  
  nav a {
    margin-left: 0;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
  }
  
  .mobile-menu {
    display: flex;
  }
  
  .hero-container,
  .sobre-grid,
  .contato-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-image {
    height: 350px;
  }
  
  .section-title {
    font-size: 1.9rem;
  }
  
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid,
  .depoimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
 .automacao-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .numeros-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.5rem;
  }
  
  section {
    padding: 4rem 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .hero-image {
    height: 300px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-badges {
    gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .servicos-grid,
  .diferenciais-grid,
  .blog-grid,
  .depoimentos-grid,
  .automacao-grid,
  .numeros-grid {
    grid-template-columns: 1fr;
  }
  
  .sobre-image {
    height: 350px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .contato-grid {
    gap: 2rem;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-float i {
    font-size: 28px;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .header-container {
    padding: 1rem 1.5rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-header {
    padding: 0.75rem 1.2rem;
    font-size: 0.85rem;
    text-align: center;
  }
  
  .servico-card,
  .diferencial-card,
  .blog-card,
  .depoimento-card,
  .automacao-card {
    padding: 1.5rem;
  }
  
  .logo img {
    height: 40px;
  }
}

/* Ajustes para impressão */
@media print {
  header {
    position: relative;
  }
  
  .whatsapp-float,
  .mobile-menu {
    display: none;
  }
  
  section {
    page-break-inside: avoid;
  }
}
/* ===================== */
/* ESTILOS PARA POSTS */
/* ===================== */

/* Conteúdo do post */
.post-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--azul-hover);
}

.post-content h2 {
  font-size: 1.8rem;
  color: var(--azul-primario);
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.post-content h3 {
  font-size: 1.5rem;
  color: var(--azul-primario);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
  margin-bottom: 1.5rem;
  margin-left: 2rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
}

.post-content blockquote {
  background: var(--cinza-bg);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  border-radius: 8px;
}

.post-content a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.post-content a:hover {
  color: var(--azul-hover);
}

/* Paginação do Blog */
.page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.3rem;
  background: var(--branco);
  color: var(--azul-primario);
  border: 2px solid var(--accent);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--accent);
  color: var(--branco);
}

.page-numbers.dots {
  border: none;
  background: transparent;
}

ul.page-numbers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Responsivo para posts */
@media (max-width: 768px) {
  .post-content {
    font-size: 1rem;
  }
  
  .post-content h2 {
    font-size: 1.5rem;
  }
  
  .post-content h3 {
    font-size: 1.3rem;
  }
}