/* ============================================
   Front Page Styles - Virtua Tecnologia
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --primary-color: #2A7DE1;
  --secondary-color: #6bdad5;
  --dark-bg: #0F2C3E;
  --darker-bg: #000F18;
  --darkest-bg: #080D16;
  --text-white: #FFFFFF;
  --text-light: rgba(255, 255, 255, 0.80);
  --border-color: rgba(42, 125, 225, 0.20);
  --border-light: rgba(255, 255, 255, 0.35);
  --font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container-max-width: 1250px;
  --container-sized: 600px;
  --spacing-xs: 10px;
  --spacing-sm: 15px;
  --spacing-md: 20px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;
  --spacing-xxl: 80px;
  --border-radius: 10px;
  --border-radius-lg: 15px;
  --border-radius-xl: 30px;
  --transition: all 0.3s ease;
  --badge-bg: rgba(22, 112, 202, 0.20);
  
  /* Background Images */
  --bg-hero: url('uploads/Banner-7.webp');
  --bg-solucoes: url('uploads/Group-5-1.svg');
  --bg-cases-blog: url('uploads/Group-6-17.png');
  --bg-cta: url('uploads/Group-6-13.png');
  --bg-faq: url('uploads/Group-6-14.png');
}

/* ============================================
   BASE STYLES
   ============================================ */
body {
  font-family: var(--font-family);
  color: var(--text-white);
  background-color: var(--darker-bg);
  overflow-x: hidden;
}

.fp-page-wrapper {
  position: relative;
}

/* ============================================
   SECTION BASE
   ============================================ */
section {
  position: relative;
  display: block;
}

/* Classe utilitária para padding padrão das sections */
.section-padding {
  padding: var(--spacing-xxl) 0;
}

/* ============================================
   COMPONENTES REUTILIZÁVEIS
   ============================================ */

/* Badge Base - Usado em todas as seções */
.section-badge {
  display: inline-block;
  padding: 5px 15px;
  background: var(--badge-bg);
  border: 1px solid var(--badge-bg);
  border-radius: var(--border-radius);
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: var(--spacing-md);
}

/* Header Base - Estrutura comum para headers de seções */
.section-header {
  text-align: center;
  margin-bottom: 35px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  line-height: 30px;
  color: var(--text-light);
  margin: 0;
}

.fp-section-bg,
.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ============================================
   LAYOUT COMPONENTS
   ============================================ */

/* Container */
.container {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  z-index: 2;
}

.container.full {
  max-width: 100%;
}

.container.sized {
  max-width: var(--container-sized);
  margin: 0 auto;
}

/* Columns Layout */
.columns {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(-1 * var(--spacing-md));
}

.column {
  flex: 1;
  padding: 0 var(--spacing-md);
  min-width: 0;
}

.column-content {
  height: 100%;
}

/* Layout Variants */
section.horizontal .columns {
  flex-direction: row;
  align-items: center;
}

section.horizontal .columns .column + .column {
  margin-left: var(--spacing-md);
}

section.vertical .columns {
  flex-direction: column;
  align-items: flex-start;
}

section.vertical .columns .column + .column {
  margin-top: var(--spacing-md);
  margin-left: 0;
}

section.normal {
  display: flex;
  align-items: center;
  gap: 12px;
}

section.normal aside {
  flex-shrink: 0;
  width: 14%;
}

section.normal > div {
  flex-grow: 1;
}

section.normal figure {
  width: 100%;
}

section.normal figure img {
  width: 100%;
  height: auto;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--spacing-md) 0;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 29px;
}

p {
  margin: 0 0 var(--spacing-md) 0;
  color: var(--text-light);
  font-size: 20px;
  line-height: 1.6;
}

/* Links */
.fp-page-wrapper a {
  color: var(--text-white);
  text-decoration: none;
  transition: var(--transition);
}

.fp-page-wrapper a:hover {
  opacity: 0.8;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 18px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-light);
  background: var(--primary-color);
  color: var(--text-white);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-badge {
  background: var(--badge-bg);
  border-color: var(--badge-bg);
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 400;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
}

.btn-icon i {
  margin-right: 15px;
  display: inline-flex;
  align-items: center;
}

.btn-icon i img,
.btn-icon img {
  max-width: 30px;
  max-height: 30px;
}

.btn-submit-mix {
  padding: 12px 30px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  background: var(--darker-bg);
  min-height: 50vh;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  z-index: 0;
}

.hero-section .container.sized {
  margin-top: 200px;
  margin-bottom: 250px;
  margin-left: auto;
  margin-right: auto;
}

/* Ajuste responsivo para Hero - será sobrescrito por media queries */
@media (max-width: 1199px) {
  .hero-section .container.sized {
    margin-top: 120px;
    margin-bottom: 150px;
  }
}

@media (max-width: 767px) {
  .hero-section .container.sized {
    margin-top: 80px;
    margin-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .hero-section .container.sized {
    margin-top: 100px;
    margin-bottom: 80px;
  }
}

.hero-section .section-bg {
  background-image: url('uploads/Banner-7.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 1;
  z-index: 0;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 630px;
  margin-left: 0;
}

.hero-text-content {
  margin-bottom: var(--spacing-lg);
}

.hero-text-content h1 {
  margin-bottom: var(--spacing-md);
  font-family: "Mulish", sans-serif;
  font-size: 56px;
  line-height: 61.6px;
  font-weight: 400;
  letter-spacing: normal;
  color: #FFFFFF;
}

.hero-text-content p {
  margin-bottom: 0;
  font-family: "Mulish", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: normal;
  color: #FFFFFF;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.hero-buttons .btn {
  padding: 12px 24px;
  width: auto;
  max-width: 400px;
  border: 1px solid transparent;
  font-size: 18px;
  line-height: 27px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 8px 16px;
  background: var(--badge-bg);
  border: 1px solid var(--badge-bg);
  border-radius: var(--border-radius);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--text-white);
}

.hero-feature-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-feature-item span {
  white-space: nowrap;
}

/* ============================================
   SOLUÇÕES SECTION
   ============================================ */
.solucoes-section {
  margin-top: -20px;
  padding-bottom: 80px;
  background: var(--bg-solucoes) no-repeat center top;
  background-size: 1000% 100%;
  position: relative;
  z-index: 1;
}

.solucoes-section .container.sized {
  padding-top: 80px;
}

/* Header - Usa classes base .section-header e .section-badge */
.solucoes-header {
  /* Herda estilos de .section-header */
}

/* Cards Grid */
.solucoes-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

/* Card */
.solucoes-card {
  background: #0D1722;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.solucoes-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.solucoes-card-image {
  width: 100%;
  height: auto;
  padding: 0px 0px;
  border-radius: 0 0 30px 30px;
  border: 1px solid rgba(42, 125, 225, 0.20);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto 32px auto;
}

.solucoes-card-image img {
  width: 100%;
  height: 200px;
  max-height: 200px;
  display: block;
  object-fit: cover;
}

.solucoes-card-content {
  padding: 0 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-tag {
  display: inline-block;
  padding: 5px 15px;
  background: var(--badge-bg);
  border: 1px solid var(--badge-bg);
  border-radius: var(--border-radius);
  font-size: 10px;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 22px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.solucoes-card h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  text-align: center;
}

.solucoes-card .card-description {
  font-size: 14px;
  line-height: 24px;
  color: var(--text-light);
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: center;
}

/* Features Grid */
.solucoes-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.solucoes-feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 0px 10px 20px;
}

.solucoes-feature-item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.solucoes-feature-item span {
  font-size: 13px;
  color: var(--text-light);
  white-space: nowrap;
}

.solucoes-card .btn {
  margin-top: auto;
  margin-bottom: 25px;
  width: 100%;
  text-align: center;
  align-self: center;
}

/* ============================================
   DIFERENCIAIS SECTION
   ============================================ */
.diferenciais-section {
  background: #000F18;
  padding: var(--spacing-xxl) 0;
}

.diferenciais-section .container.sized {
  max-width: var(--container-max-width);
}

/* Header */
/* Header - Usa classes base .section-header e .section-badge */
.diferenciais-header {
  /* Herda estilos de .section-header */
}

.diferenciais-header h2 {
  /* Herda estilos de .section-header h2 */
}

.diferenciais-header h2 span {
  color: #2A7DE1;
}

/* Items Grid */
.diferenciais-items {
  display: grid;
  grid-template-columns: repeat(5, 235px);
  gap: var(--spacing-md);
  align-items: stretch;
  justify-content: center;
}

.diferenciais-item {
  --innerPadding: 0px 10px;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 235px;
  height: 100%;
  padding-bottom: 10px;
  background: #0D1722;
  border: 1px solid rgba(42, 125, 225, 0.20);
  border-radius: 10px;
}

.diferenciais-item-image {
  width: 46px;
  height: 46px;
  margin: -1px 0 var(--spacing-md) 0;
  object-fit: contain;
}

.diferenciais-item-subtitle {
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  color: var(--text-white);
  margin: 0 0 var(--spacing-sm) 0;
  padding: var(--innerPadding);
}

.diferenciais-item-text {
  font-size: 16px;
  color: #ccc;
  padding: var(--innerPadding);
  white-space: nowrap;
}

/* ============================================
   CASES E BLOG WRAPPER
   ============================================ */
.cases-blog-wrapper {
  background: var(--bg-cases-blog) no-repeat center;
  background-size: cover;
  position: relative;
}

/* ============================================
   CASES DE SUCESSO SECTION
   ============================================ */
.cases-section {
}

.cases-section .container.sized {
  max-width: var(--container-max-width);
}

/* Header - Usa classes base .section-header e .section-badge */
.cases-header {
  /* Herda estilos de .section-header */
}

/* Cards */
.cases-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cases-card {
  background: #0D1722;
  border: 1px solid rgba(42, 125, 225, 0.20);
  border-radius: 30px;
  padding: 0 30px 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cases-card-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.cases-card-category img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.cases-card-category span {
  font-size: 10px;
  line-height: 15px;
  color: var(--text-white);
  padding: 10px 20px;
  background: rgba(22,112,202,0.20);
  border-radius: 0px 0px 10px 10px;
  margin-top: -22px;
}

.cases-card h3 {
  font-size: 24px;
  line-height: 26.4px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--spacing-md);
}

.cases-card-description {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

.cases-card-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.cases-card-item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.cases-card-item span {
  font-size: 13px;
  line-height: 19.5px;
  color: var(--text-light);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
  padding: 0 0 80px 0;
}

.blog-section .container.sized {
  max-width: var(--container-max-width);
}

/* Header - Usa classes base .section-header e .section-badge */
.blog-header {
  /* Herda estilos de .section-header */
}

/* Cards */
.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  max-width: 100%;
}

.blog-card {
  background: #0D1722;
  border: 1px solid rgba(42, 125, 225, 0.20);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  max-width: 420px;
  max-height: 420px;
  width: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-card-image {
  width: 100%;
  max-height: 160px;
  height: auto;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-card-image img {
  width: 100%;
  max-height: 160px;
  height: auto;
  object-fit: cover;
}

.blog-card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.blog-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  line-height: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-white);
}

.blog-card-excerpt {
  font-size: 14px;
  line-height: 21px;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-card-meta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  align-items: center;
}

.blog-card-reading-time,
.blog-card-author {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 18px;
  color: var(--text-light);
}

.blog-card-reading-time span,
.blog-card-author span {
  font-size: 12px;
  line-height: 18px;
}

.blog-card-icon {
  width: 12px;
  height: 12px;
  object-fit: contain;
  flex-shrink: 0;
}

.blog-card-read-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  font-size: 12px;
  line-height: 18px;
  color: #1670CA;
  background-color: rgba(22, 112, 202, 0.20);
  border: 1px solid rgba(22, 112, 202, 0.20);
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: var(--transition);
  margin-left: auto;
}

.blog-card-read-more:hover {
  background-color: rgba(22, 112, 202, 0.30);
}

.blog-card-read-more span {
  color: #1670CA;
}

.blog-card-read-more-icon {
  width: 11px;
  height: 11px;
  object-fit: contain;
  flex-shrink: 0;
}


/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--bg-cta) no-repeat center;
  background-size: cover;
  padding: var(--spacing-xxl) 0;
  position: relative;
}

.cta-section .container.sized {
  max-width: var(--container-max-width);
}

.cta-content {
  background: #ffffff;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xxl);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 40px;
  font-weight: 700;
  color: #131E29;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.cta-description {
  font-size: 18px;
  line-height: 30px;
  color: #131E29;
  margin-bottom: var(--spacing-xl);
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color, #2A7DE1);
  color: var(--text-white, #ffffff);
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-family);
}

.cta-button:hover {
  background: var(--header-accent, #1e6bc7);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 125, 225, 0.3);
}

/* ============================================
   WHATSAPP MODAL
   ============================================ */
.whatsapp-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.whatsapp-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.whatsapp-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.whatsapp-modal-content {
  position: relative;
  z-index: 2;
  background: var(--darkest-bg) url('uploads/Group-6-17.png') no-repeat center;
  background-size: cover;
  border-radius: var(--border-radius-lg);
  padding: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.whatsapp-modal.active .whatsapp-modal-content {
  transform: scale(1);
}

.whatsapp-modal-close {
  position: absolute;
  top: 5px;
  right: 5px;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  z-index: 10;
}

.whatsapp-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.whatsapp-modal-title {
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 var(--spacing-sm) 0;
  text-align: center;
}

.whatsapp-modal-subtitle {
  font-size: 18px;
  line-height: 27px;
  color: var(--text-light);
  margin-bottom: 15px;
  text-align: center;
}

.whatsapp-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.whatsapp-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.whatsapp-form-group label {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--text-white);
}

.whatsapp-form-group input,
.whatsapp-form-group select {
  padding: 12px 15px;
  background: var(--darker-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-white);
  font-size: 20px;
  line-height: 30px;
  font-family: var(--font-family);
  transition: var(--transition);
}

.whatsapp-form-group input:focus,
.whatsapp-form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(42, 125, 225, 0.1);
}

.whatsapp-form-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  line-height: 30px;
}

.whatsapp-form-group select {
  cursor: pointer;
}

.whatsapp-form-group select option {
  background: var(--darker-bg);
  color: var(--text-white);
}

.whatsapp-submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: #25D366;
  color: var(--text-white);
  border: none;
  border-radius: var(--border-radius);
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-family);
  margin-top: var(--spacing-sm);
}

.whatsapp-submit-button:disabled {
  background: rgba(37, 211, 102, 0.5);
  cursor: not-allowed;
  opacity: 0.6;
}

.whatsapp-submit-button:not(:disabled):hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-submit-button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  background: var(--bg-faq) no-repeat center;
  background-size: cover;
  padding: var(--spacing-xxl) 0;
  position: relative;
}

.faq-section .container.sized {
  max-width: var(--container-max-width);
}

/* Header - Usa classes base .section-header e .section-badge */
.faq-header {
  /* Herda estilos de .section-header */
}

.faq-title {
  /* Herda estilos de .section-header h2 */
}

.faq-subtitle {
  /* Herda estilos de .section-header p */
}

.faq-container {
  max-width: 100%;
  margin: 0 auto;
}

.faq-item {
  background: var(--darkest-bg, #080D16);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 15px 20px;
  margin-bottom: var(--spacing-md);
  cursor: pointer;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(42, 125, 225, 0.40);
}

.faq-question {
  font-size: 16px;
  line-height: 19.2px;
  font-weight: 600;
  color: var(--text-white);
  margin: 0;
  padding-right: 30px;
  position: relative;
  transition: var(--transition);
}

.faq-question::before {
  content: '';
  position: absolute;
  top: calc(50% - 5px);
  right: 0;
  border-right: 2px solid var(--text-white);
  border-bottom: 2px solid var(--text-white);
  width: 10px;
  height: 10px;
  transform: rotate(-45deg);
  transition: 0.3s;
}

.faq-item.active .faq-question::before {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 14px;
  line-height: 16.8px;
  color: var(--text-white);
  margin: 0;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  margin-top: var(--spacing-sm);
}

/* ============================================
   SECTION BACKGROUNDS & PADDING
   ============================================ */
/* Nota: Evitar usar section:nth-of-type() - usar classes específicas quando necessário */

/* Backgrounds específicos por classe de seção */
.diferenciais-section {
  background: #000F18;
}

/* ============================================
   COMPONENTS
   ============================================ */

/* Images */
figure {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
}

figure img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Box with Background */
.fp-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--border-color);
}

.fp-box-bg {
  width: 100%;
  padding-bottom: 33%;
  background: url('uploads/0_Smart_Home_Home_Automation_3840x2160-high-2.gif') no-repeat center;
  background-size: auto;
}

/* Spacer Sections */
section:has(.fp-section-bg:only-child) {
  height: 0;
}

/* FAQ Styles */
section.arrow {
  position: relative;
}

.fp-faq-question {
  padding: var(--spacing-md);
  background: var(--darkest-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-md);
}

.fp-faq-question h3 {
  font-size: 18px;
  margin-bottom: var(--spacing-sm);
  color: var(--text-white);
}

.fp-faq-question p {
  font-size: 16px;
  color: var(--text-light);
  margin: 0;
}

/* Blog Cards */
.column-content figure {
  margin-bottom: var(--spacing-md);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.column-content figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.column-content section {
  background: var(--darkest-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
}

.column-content section h3 {
  font-size: 18px;
  margin-bottom: var(--spacing-sm);
}

.column-content section h3 a {
  color: var(--text-white);
}

.column-content section p {
  font-size: 14px;
  margin-bottom: var(--spacing-md);
}

/* Menu Styles */
.fp-menu {
  position: relative;
}

.fp-menu-content {
  position: relative;
}

.fp-toggle-menu,
.fp-close-menu {
  display: none;
}

/* Modal Styles */
#modal-orcamento {
  display: none;
}

#modal-orcamento:target {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 1050;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: calc(100vh - 40px);
  background-color: var(--darkest-bg);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
  border-radius: var(--border-radius);
  margin: 20px;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  padding: var(--spacing-lg);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  background: var(--text-white);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
  color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.modal-content h2 {
  color: var(--text-white);
  margin-bottom: var(--spacing-md);
}

.modal-content p {
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
}

/* Form Styles */
.form-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
}

.form-control::placeholder {
  color: var(--text-light);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-md { margin-top: var(--spacing-md); }
.mb-md { margin-bottom: var(--spacing-md); }

.fp-mobile-only {
  display: none;
}

.fp-divider {
  height: 1px;
  background: #000000;
  width: 80vw;
  display: inline-block;
}

/* ============================================
   RESPONSIVE - Media Queries
   ============================================ */

/* Desktop - Mantém estilos padrão */
@media (min-width: 1200px) {
  .container.sized {
    max-width: var(--container-max-width);
  }
}

/* Tablet - 768px a 1199px */
@media (max-width: 1199px) and (min-width: 768px) {
  /* Container */
  .container {
    padding: 0 var(--spacing-md);
  }
  
  .container.sized {
    max-width: 100%;
  }
  
  /* Border Radius - Reduzido para tablet */
  .solucoes-card {
    border-radius: 20px;
  }
  
  .solucoes-card-image {
    border-radius: 0 0 20px 20px;
  }
  
  .cases-card {
    border-radius: 20px;
  }
  
  .diferenciais-item {
    border-radius: 8px;
  }
  
  .cta-content {
    border-radius: 12px;
  }
  
  .whatsapp-modal-content {
    border-radius: 12px;
  }
  
  /* Hero Section */
  .hero-section .container.sized {
    margin-top: 120px;
    margin-bottom: 150px;
  }
  
  .hero-text-content h1 {
    font-size: 48px;
    line-height: 52px;
  }
  
  .hero-text-content p {
    font-size: 18px;
    line-height: 28px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .hero-buttons .btn {
    flex: 1;
    max-width: none;
  }
  
  /* Soluções Section */
  .solucoes-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
  
  /* Diferenciais Section */
  .diferenciais-items {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    justify-content: center;
  }
  
  .diferenciais-item {
    width: 100%;
    max-width: 100%;
  }
  
  /* Cases Section */
  .cases-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Blog Section */
  .blog-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
  
  /* Typography */
  .section-header h2 {
    font-size: 36px;
  }
  
  h1 {
    font-size: 48px;
  }
  
  h2 {
    font-size: 36px;
  }
  
  h3 {
    font-size: 26px;
  }
}

/* Mobile Grande - 576px a 767px */
@media (max-width: 767px) and (min-width: 576px) {
  /* Container & Layout */
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .container.sized {
    max-width: 100%;
  }
  
  /* Border Radius - Reduzido para mobile grande */
  .solucoes-card {
    border-radius: 15px;
  }
  
  .solucoes-card-image {
    border-radius: 0 0 15px 15px;
  }
  
  .cases-card {
    border-radius: 15px;
  }
  
  .diferenciais-item {
    border-radius: 8px;
  }
  
  .cta-content {
    border-radius: 10px;
  }
  
  .whatsapp-modal-content {
    border-radius: 10px;
  }
  
  /* Hero Section */
  .hero-section .container.sized {
    margin-top: 80px;
    margin-bottom: 100px;
  }
  
  .hero-text-content h1 {
    font-size: 36px;
    line-height: 40px;
  }
  
  .hero-text-content p {
    font-size: 16px;
    line-height: 24px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  /* Soluções Section - Features */
  .solucoes-features {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  /* Diferenciais Section */
  .diferenciais-items {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }
  
  /* Blog Section */
  .blog-cards {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  /* Typography */
  .section-header h2 {
    font-size: 28px;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
}

/* Mobile Pequeno - até 575px */
@media (max-width: 575px) {
  /* Container & Layout */
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .container.sized {
    max-width: 100%;
  }
  
  .columns {
    flex-direction: column;
    margin: 0;
  }
  
  .column {
    padding: 0;
    margin-bottom: var(--spacing-md);
    width: 100%;
  }
  
  /* Layout Variants */
  section.vertical .columns {
    align-items: center;
  }
  
  section.horizontal .columns {
    flex-direction: column;
  }
  
  section.horizontal .columns .column + .column {
    margin-left: 0;
    margin-top: var(--spacing-md);
  }
  
  section.normal {
    flex-wrap: wrap;
  }
  
  section.normal aside {
    width: 100%;
    margin-bottom: var(--spacing-sm);
  }
  
  /* Typography */
  .section-header h2 {
    font-size: 24px;
  }
  
  h1 {
    font-size: 32px;
    line-height: 36px;
    text-align: left;
  }
  
  h2 {
    font-size: 24px;
    text-align: center;
  }
  
  h3 {
    font-size: 20px;
  }
  
  p {
    font-size: 14px;
    line-height: 22px;
    text-align: left;
  }
  
  /* Buttons */
  .btn {
    font-size: 16px;
    padding: 14px 18px;
    width: 100%;
    text-align: center;
  }
  
  /* Hero Section */
  section:not(.solucoes-section) {
    padding: var(--spacing-md) 0;
  }
  
  .hero-section {
    min-height: auto;
    padding: var(--spacing-md) 0;
  }
  
  .hero-section .section-bg {
    background-size: cover;
    background-position: center;
    opacity: 0.7;
  }
  
  .hero-content-wrapper {
    max-width: 100%;
  }
  
  .hero-text-content h1 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: var(--spacing-md);
  }
  
  .hero-text-content p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: var(--spacing-md);
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
  }
  
  .hero-buttons .btn {
    max-width: 100%;
    width: 100%;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
  }
  
  .hero-feature-item {
    width: 100%;
    font-size: 14px;
  }
  
  /* Border Radius - Reduzido para mobile pequeno */
  .solucoes-card {
    border-radius: 12px;
  }
  
  .solucoes-card-image {
    border-radius: 0 0 12px 12px;
  }
  
  .cases-card {
    border-radius: 12px;
  }
  
  .diferenciais-item {
    border-radius: 8px;
  }
  
  .blog-card {
    border-radius: 8px;
  }
  
  .cta-content {
    border-radius: 8px;
  }
  
  .whatsapp-modal-content {
    border-radius: 8px;
  }
  
  .faq-item {
    border-radius: 8px;
  }
  
  .section-badge {
    border-radius: 8px;
  }
  
  .card-tag {
    border-radius: 8px;
  }
  
  /* Soluções Section */
  .solucoes-section {
    padding-bottom: var(--spacing-md);
    background: var(--bg-solucoes) no-repeat top;
  }
  
  .solucoes-section .container.sized {
    padding-top: var(--spacing-lg);
  }
  
  .solucoes-header h2 {
    font-size: 24px;
  }
  
  .solucoes-header p {
    font-size: 14px;
    line-height: 22px;
  }
  
  .solucoes-cards {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
  }
  
  .solucoes-card {
    padding: var(--spacing-md);
  }
  
  .solucoes-card-content {
    padding: 0 var(--spacing-md);
  }
  
  .solucoes-card h3 {
    font-size: 20px;
  }
  
  .solucoes-card .card-description {
    font-size: 13px;
    line-height: 20px;
  }
  
  .solucoes-features {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  .solucoes-feature-item {
    padding: 0 0 var(--spacing-md) 0;
  }
  
  /* Diferenciais Section */
  .diferenciais-section {
    padding: var(--spacing-md) 0;
  }
  
  .diferenciais-header h2 {
    font-size: 24px;
  }
  
  .diferenciais-items {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  .diferenciais-item {
    width: 100%;
    padding: var(--spacing-md);
  }
  
  .diferenciais-item-subtitle {
    font-size: 16px;
    line-height: 24px;
  }
  
  .diferenciais-item-text {
    font-size: 14px;
    white-space: normal;
  }
  
  /* Cases de Sucesso Section */
  .cases-section {
    padding: var(--spacing-md) 0;
  }
  
  .cases-header h2 {
    font-size: 24px;
  }
  
  .cases-header p {
    font-size: 14px;
    line-height: 22px;
  }
  
  .cases-cards {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .cases-card {
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-md);
  }
  
  .cases-card h3 {
    font-size: 20px;
    line-height: 24px;
  }
  
  .cases-card-description {
    font-size: 14px;
    line-height: 20px;
  }
  
  /* Blog Section */
  .blog-section {
    padding: 0 0 var(--spacing-md) 0;
  }
  
  .blog-header h2 {
    font-size: 24px;
  }
  
  .blog-header p {
    font-size: 14px;
    line-height: 22px;
  }
  
  .blog-cards {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .blog-card {
    max-width: 100%;
    max-height: none;
  }
  
  .blog-card-content {
    padding: var(--spacing-md);
  }
  
  .blog-card-title {
    font-size: 18px;
    line-height: 22px;
  }
  
  .blog-card-excerpt {
    font-size: 13px;
    line-height: 19px;
  }
  
  .blog-card-image {
    max-height: 140px;
  }
  
  /* CTA Section */
  .cta-section {
    padding: var(--spacing-md) 0;
  }
  
  .cta-content {
    padding: var(--spacing-md);
  }
  
  .cta-title {
    font-size: 24px;
    line-height: 28px;
  }
  
  .cta-description {
    font-size: 14px;
    line-height: 22px;
  }
  
  .cta-button {
    font-size: 16px;
    padding: 12px 20px;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: var(--spacing-md) 0;
  }
  
  .faq-header h2 {
    font-size: 24px;
  }
  
  .faq-header p {
    font-size: 14px;
    line-height: 22px;
  }
  
  .faq-item {
    padding: 12px 15px;
    margin-bottom: var(--spacing-sm);
  }
  
  .faq-question {
    font-size: 14px;
    line-height: 18px;
    padding-right: 25px;
  }
  
  .faq-answer {
    font-size: 12px;
    line-height: 16px;
  }
  
  /* WhatsApp Modal */
  .whatsapp-modal-content {
    padding: var(--spacing-md);
    max-width: 95%;
    width: 95%;
  }
  
  .whatsapp-modal-title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: var(--spacing-sm);
  }
  
  .whatsapp-modal-subtitle {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: var(--spacing-md);
  }
  
  .whatsapp-form {
    gap: var(--spacing-sm);
  }
  
  .whatsapp-form-group {
    gap: 8px;
  }
  
  .whatsapp-form-group label {
    font-size: 16px;
    line-height: 24px;
  }
  
  .whatsapp-form-group input,
  .whatsapp-form-group select {
    font-size: 16px;
    line-height: 24px;
    padding: 10px 12px;
  }
  
  .whatsapp-form-group input::placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  
  .whatsapp-submit-button {
    font-size: 16px;
    line-height: 24px;
    padding: 12px 18px;
    margin-top: var(--spacing-sm);
  }
  
  /* Components */
  .fp-box-bg {
    padding-bottom: 67%;
  }
  
  .fp-mobile-only {
    display: block;
  }
  
  /* Menu */
  .fp-toggle-menu {
    display: inline-block;
    color: var(--text-white);
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
    width: 1em;
    text-align: center;
    z-index: 3;
  }
  
  .fp-close-menu {
    display: block;
    max-width: 30px;
    max-height: 30px;
    position: absolute;
    z-index: 1;
    cursor: pointer;
  }
  
  .fp-menu-content {
    display: none;
    position: fixed;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 2;
    right: 0;
    left: -100vw;
    padding: 0;
    transform: translateY(30px);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
  }
  
  .fp-menu.active .fp-menu-content {
    display: block;
    opacity: 1;
    left: 0;
  }
  
  /* Modal */
  .modal-dialog {
    max-width: calc(100vw - 40px);
    margin: 20px;
  }
}

/* Breakpoint geral para tablets e mobile - 768px a 991px */
@media (max-width: 991px) and (min-width: 768px) {
  /* Ajustes adicionais se necessário */
  .hero-section .container.sized {
    margin-top: 100px;
    margin-bottom: 120px;
  }
}
