/* ===== DEPOIMENTOS SECTION ===== */

.depoimentos-section {
  padding: 5rem 0;
  background: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 400;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.section-title .highlight {
  font-weight: 800;
  color: #f97316;
}

.avatars-group {
  display: inline-flex;
  align-items: center;
  gap: -0.5rem;
}

.avatar-icon {
  font-size: 2.5rem;
  color: #004968;
  margin: 0 -0.25rem;
}

.avatar-icon:nth-child(2) {
  color: #f97316;
  transform: scale(1.1);
  z-index: 2;
}

.depoimentos-slider-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5rem;
}

.depoimentos-swiper {
  overflow: hidden;
  padding: 1rem 0;
}

.swiper-slide {
  height: auto;
}

.depoimento-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.depoimento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.depoimento-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cliente-avatar {
  width: 60px;
  height: 60px;
  background: #004968;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cliente-avatar i {
  font-size: 2rem;
  color: white;
}

.cliente-info {
  flex: 1;
}

.cliente-nome {
  font-size: 1.1rem;
  font-weight: 700;
  color: #004968;
  margin: 0 0 0.25rem;
}

.cliente-badge {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.depoimento-body {
  flex: 1;
}

.depoimento-texto {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
  margin: 0;
}

.depoimento-footer {
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.rating {
  display: flex;
  gap: 0.25rem;
}

.rating i {
  font-size: 1.25rem;
  color: #fbbf24;
}

/* Swiper Navigation */
.depoimentos-nav-btn {
  width: 56px;
  height: 56px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.depoimentos-prev {
  left: 0;
}

.depoimentos-next {
  right: 0;
}

.depoimentos-nav-btn:hover {
  background: #f97316;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

.depoimentos-nav-btn i {
  font-size: 1.75rem;
  color: #004968;
}

.depoimentos-nav-btn:hover i {
  color: white;
}

.depoimentos-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.depoimentos-nav-btn:disabled:hover {
  background: white;
  transform: translateY(-50%);
}

/* Swiper Pagination */
.depoimentos-pagination {
  margin-top: 2.5rem;
  position: relative;
  text-align: center;
}

.depoimentos-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d1d5db;
  opacity: 1;
  transition: all 0.3s;
}

.depoimentos-pagination .swiper-pagination-bullet-active {
  background: #f97316;
  width: 32px;
  border-radius: 6px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .depoimentos-slider-wrapper {
    padding: 0 4rem;
  }

  .depoimentos-nav-btn {
    width: 48px;
    height: 48px;
  }

  .depoimentos-nav-btn i {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .depoimentos-section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 1.5rem;
    flex-direction: column;
  }

  .avatar-icon {
    font-size: 2rem;
  }

  .depoimentos-slider-wrapper {
    padding: 0 3rem;
  }

  .depoimento-card {
    padding: 1.5rem;
  }

  .depoimentos-nav-btn {
    width: 44px;
    height: 44px;
  }

  .depoimentos-nav-btn i {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .depoimentos-section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .depoimentos-slider-wrapper {
    padding: 0 2.5rem;
  }

  .cliente-avatar {
    width: 50px;
    height: 50px;
  }

  .cliente-avatar i {
    font-size: 1.75rem;
  }

  .cliente-nome {
    font-size: 1rem;
  }

  .depoimento-texto {
    font-size: 0.9rem;
  }

  .depoimentos-nav-btn {
    width: 40px;
    height: 40px;
  }

  .depoimentos-prev {
    left: 0;
  }

  .depoimentos-next {
    right: 0;
  }

  .depoimentos-nav-btn i {
    font-size: 1.2rem;
  }

  .depoimentos-pagination {
    margin-top: 2rem;
  }
}

/* hero section */

/* ===== HERO STATS SECTION ===== */

.hero-stats-section {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(0, 73, 104, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.stats-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* Título */
.stats-title {
  font-size: 2rem;
  font-weight: 400;
  color: #1f2937;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stats-title .highlight {
  font-weight: 800;
  color: #f97316;
  position: relative;
  display: inline-block;
}

.stats-title .highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
  border-radius: 2px;
}

.stats-title .highlight-blue {
  font-weight: 700;
  color: #004968;
  display: inline-block;
}

/* Cards de Stats */
.stats-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #004968 0%, #0077aa 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.stat-card:hover::before {
  transform: scaleY(1);
}

.stat-card:hover {
  border-color: #004968;
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 73, 104, 0.15);
}

/* Ícone do Card */
.stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  background: linear-gradient(135deg, #004968 0%, #0077aa 100%);
  transform: scale(1.1) rotate(-5deg);
}

.stat-icon i {
  font-size: 2.25rem;
  color: #004968;
  transition: color 0.3s ease;
}

.stat-card:hover .stat-icon i {
  color: white;
}

/* Info do Card */
.stat-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #004968;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.95rem;
  color: #6b7280;
  font-weight: 500;
}

/* Animação de Entrada */
.stat-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.stat-card:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .hero-stats-section {
    padding: 3.5rem 0;
  }

  .stats-title {
    font-size: 1.75rem;
  }

  .stats-cards {
    gap: 1.5rem;
  }

  .stat-card {
    padding: 1.75rem 1.5rem;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
  }

  .stat-icon i {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-stats-section {
    padding: 3rem 0;
  }

  .stats-title {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .stats-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
  }

  .stat-icon i {
    font-size: 1.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .hero-stats-section {
    padding: 2.5rem 0;
  }

  .stats-title {
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .stat-card {
    padding: 1.25rem;
    gap: 1rem;
  }

  .stat-icon {
    width: 55px;
    height: 55px;
  }

  .stat-icon i {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 1.35rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }
}

/* Variante: Cards Horizontais Compactos (Opcional) */
@media (min-width: 1200px) {
  .stats-cards {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== APPS SECTION - MINIMALISTA ===== */

.apps-section {
  padding: 5rem 0;
  background: white;
}

.apps-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

/* Header */
.apps-header {
  margin-bottom: 3rem;
}

.apps-main-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.apps-main-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  max-width: 600px;
  margin: 0;
}

/* Cards Grid */
.apps-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Card */
.app-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.app-card:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

/* Card Header */
.app-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.app-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.app-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.app-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

/* Card Text */
.app-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 1.5rem;
}

/* Card Footer */
.app-card-footer {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.app-badge {
  display: block;
  transition: all 0.3s ease;
  background-color: #1f2937;
  border-radius: 6px;
}

.app-badge img {
  height: 40px;
  width: auto;
  display: block;
}

.app-badge:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .apps-wrapper {
    flex-direction: column;
  }
  .apps-section {
    padding: 4rem 0;
  }

  .apps-header {
    margin-bottom: 2.5rem;
  }

  .apps-main-title {
    font-size: 1.75rem;
  }

  .apps-main-description {
    font-size: 0.95rem;
  }

  .apps-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .app-card {
    padding: 1.75rem;
  }

  .app-card-footer {
    flex-direction: column;
  }

  .app-badge {
    width: 100%;
  }

  .app-badge img {
    height: 44px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .apps-section {
    padding: 3rem 0;
  }

  .apps-main-title {
    font-size: 1.5rem;
  }

  .app-card {
    padding: 1.5rem;
  }

  .app-card-icon {
    width: 44px;
    height: 44px;
  }

  .app-card-title {
    font-size: 1.15rem;
  }

  .app-card-text {
    font-size: 0.9rem;
  }
}

.apps-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Conteúdo à esquerda */
.apps-content {
  color: white;
}

.apps-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.apps-badge i {
  font-size: 1.15rem;
}

.apps-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.apps-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

/* Botões de download */
.apps-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-store-btn {
  background: #1f2937;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
  min-width: 160px;
}

.app-store-btn:hover {
  background: #374151;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.app-store-btn img {
  height: 40px;
  width: auto;
  display: block;
}

/* Visual à direita */
.apps-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-mockup {
  text-align: center;
  animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.app-icon-large {
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
}

.app-icon-large::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -1;
}

.app-icon-large img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.app-info {
  color: white;
}

.app-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.app-info p {
  font-size: 1rem;
  opacity: 0.8;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .apps-section {
    padding: 5rem 0;
  }

  .apps-layout {
    gap: 4rem;
  }

  .apps-title {
    font-size: 2.75rem;
  }

  .apps-description {
    font-size: 1.1rem;
  }

  .app-icon-large {
    width: 160px;
    height: 160px;
  }

  .app-info h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .apps-section {
    padding: 4rem 0;
  }

  .apps-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .apps-content {
    text-align: center;
  }

  .apps-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .apps-title {
    font-size: 2.5rem;
  }

  .apps-description {
    font-size: 1rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .apps-buttons {
    justify-content: center;
  }

  .app-store-btn {
    min-width: 150px;
  }

  .app-store-btn img {
    height: 36px;
  }

  .app-icon-large {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 576px) {
  .apps-section {
    padding: 3rem 0;
  }

  .apps-title {
    font-size: 2rem;
  }

  .apps-title br {
    display: none;
  }

  .apps-description {
    font-size: 0.95rem;
  }

  .apps-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .app-store-btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .app-icon-large {
    width: 120px;
    height: 120px;
  }

  .app-info h3 {
    font-size: 1.35rem;
  }

  .app-info p {
    font-size: 0.9rem;
  }
}

.apps-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Conteúdo à esquerda */
.apps-content {
  padding-right: 2rem;
}

.apps-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  color: #004968;
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(0, 73, 104, 0.1);
}

.apps-badge i {
  font-size: 1.15rem;
}

.apps-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.apps-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}

/* Card à direita */
.apps-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.apps-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 73, 104, 0.15);
  border-color: #004968;
}

.app-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.75rem;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  box-shadow: 0 8px 25px rgba(0, 73, 104, 0.15);
  transition: all 0.3s ease;
}

.apps-card:hover .app-icon {
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 12px 35px rgba(0, 73, 104, 0.25);
}

.app-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.app-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #004968;
  margin-bottom: 0.75rem;
}

.app-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 2rem;
}

.app-card-buttons {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
}

.app-download-btn {
  display: block;
  transition: all 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

.app-download-btn img {
  height: 50px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}

.app-download-btn:hover {
  transform: translateY(-4px);
}

.app-download-btn:hover img {
  filter: brightness(1.1);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .apps-section {
    padding: 4rem 0;
  }

  .apps-layout {
    gap: 3rem;
  }

  .apps-title {
    font-size: 2.25rem;
  }

  .apps-description {
    font-size: 1.05rem;
  }

  .apps-card {
    padding: 2.5rem 2rem;
  }

  .app-icon {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .apps-section {
    padding: 3rem 0;
  }

  .apps-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .apps-content {
    padding-right: 0;
    text-align: center;
  }

  .apps-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .apps-title {
    font-size: 2rem;
  }

  .apps-description {
    font-size: 1rem;
  }

  .apps-card {
    padding: 2rem 1.5rem;
  }

  .app-card-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .app-download-btn img {
    height: 46px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .apps-section {
    padding: 2.5rem 0;
  }

  .apps-title {
    font-size: 1.75rem;
  }

  .apps-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .app-icon {
    width: 90px;
    height: 90px;
  }

  .app-card-title {
    font-size: 1.25rem;
  }

  .app-card-text {
    font-size: 0.9rem;
  }

  .app-download-btn img {
    height: 44px;
  }
}

/* Animação de entrada */
.apps-card {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
