/* KRDiório Custom Colors */
:root {
  --primary-color: #2E86C1;
  --secondary-color: #1B4F72;
  --dark-color: #000000;
  --light-color: #ffffff;
}

/* Override primary colors */
.bg-primary {
  background-color: var(--primary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

/* Custom styling for KRDiório */
.masthead {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Logo estilizado em CSS */
.logo-text {
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}

.logo-text .brand-name {
  font-size: 3rem;
  letter-spacing: 2px;
  display: block;
}

.logo-text .brand-tagline {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #87CEEB;
  display: block;
  margin-top: 0.5rem;
}

.service-icon {
  background-color: var(--light-color);
  color: var(--primary-color);
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  font-size: 1.5rem;
}

.callout {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

/* Card styling */
.card {
  border: none;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Social links */
.social-link {
  background-color: var(--primary-color);
}

.social-link:hover {
  background-color: var(--secondary-color);
}

/* Portfolio items */
.portfolio-item .caption {
  background-color: rgba(46, 134, 193, 0.9);
}

.portfolio-item:hover .caption {
  background-color: rgba(27, 79, 114, 0.9);
}

/* Contact Section Height Adjustment */
#contact.content-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Contact info section */
.contact-info {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  padding: 3rem 0;
  color: white;
}

.contact-info h3 {
  color: white;
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-item i {
  color: white;
  margin-right: 1rem;
  width: 20px;
}

.contact-item a {
  color: white;
  text-decoration: none;
}

.contact-item a:hover {
  color: #87CEEB;
  text-decoration: none;
}

/* Botão Voltar ao Topo Customizado */
.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: none;
  width: 50px;
  height: 50px;
  text-align: center;
  color: white;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  line-height: 50px;
  font-size: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top:hover {
  color: white;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.scroll-to-top.show {
  display: inline-block !important;
}

/* Seção QR Code */
.qr-code-section {
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
  padding: 3rem 0;
  text-align: center;
}

.qr-code-container {
  max-width: 300px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border: 3px solid var(--primary-color);
}

.qr-code-container img {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: block;
}

.qr-code-text {
  margin-top: 1rem;
  color: var(--secondary-color);
  font-weight: 600;
}

/* Logo da empresa */
.company-logo {
  max-height: 80px;
  width: auto;
  margin-bottom: 1rem;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .service-icon {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    font-size: 1.2rem;
  }
  
  .logo-text .brand-name {
    font-size: 2rem;
  }
  
  .logo-text .brand-tagline {
    font-size: 0.9rem;
  }
  
  .masthead h1 {
    font-size: 2.5rem;
  }
  
  .masthead h3 {
    font-size: 1.2rem;
  }
  
  .scroll-to-top {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
    right: 15px;
    bottom: 15px;
  }
  
  .qr-code-container {
    max-width: 250px;
    padding: 1.5rem;
  }
  
  .qr-code-container img {
    width: 150px;
    height: 150px;
  }
}

/* =========================
   SEÇÃO DE PRODUTOS COMPLETA
   ========================= */

/* Product Filters */
.product-filters {
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 24px;
  margin: 5px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 134, 193, 0.3);
}

/* Product Cards */
.product-card {
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  transition: all 0.3s ease;
}

.product-card:hover .product-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-content h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.product-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.product-features {
  margin-bottom: 25px;
}

.product-features span {
  display: block;
  font-size: 12px;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-weight: 500;
}

.btn-product {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: auto;
}

.btn-product:hover {
  background: var(--secondary-color);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 134, 193, 0.4);
}

/* Products CTA */
.products-cta {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  border: 2px dashed var(--primary-color);
}

.products-cta h3 {
  color: var(--dark-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.products-cta .lead {
  color: #666;
  font-size: 18px;
  margin-bottom: 25px;
}

/* Responsive Design for Products */
@media (max-width: 768px) {
  .filter-btn {
    padding: 10px 18px;
    font-size: 14px;
    margin: 3px;
  }
  
  .product-card {
    padding: 25px 15px;
  }
  
  .product-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .product-content h5 {
    font-size: 18px;
  }
  
  .product-content p {
    font-size: 13px;
  }
  
  .product-features span {
    font-size: 11px;
  }
  
  .products-cta {
    padding: 30px 20px;
  }
  
  .products-cta h3 {
    font-size: 24px;
  }
  
  .products-cta .lead {
    font-size: 16px;
  }
}

/* Product Filter Animation */
[data-category] {
  transition: all 0.3s ease;
}

[data-category].hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

/* Estilos para os botões de navegação do carrossel */
.carousel-control-prev, 
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 50px;
  height: 50px;
  background-color: rgba(52, 58, 64, 0.8);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-prev:hover, 
.carousel-control-next:hover {
  background-color: rgba(52, 58, 64, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev {
  left: -25px;
}

.carousel-control-next {
  right: -25px;
}

.carousel-control-prev i, 
.carousel-control-next i {
  font-size: 18px;
}

/* Responsividade para os botões do carrossel */
@media (max-width: 768px) {
  .carousel-control-prev, 
  .carousel-control-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .carousel-control-prev {
    left: -20px;
  }
  
  .carousel-control-next {
    right: -20px;
  }
  
  .carousel-control-prev i, 
  .carousel-control-next i {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .carousel-control-prev, 
  .carousel-control-next {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .carousel-control-prev {
    left: -15px;
  }
  
  .carousel-control-next {
    right: -15px;
  }
  
  .carousel-control-prev i, 
  .carousel-control-next i {
    font-size: 12px;
  }
}

/* =========================
   BOTÃO NOSSOS PRODUTOS CUSTOMIZADO
   ========================= */

/* Override do botão hero secondary para "Nossos Produtos" */
.btn-hero-secondary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 1rem 2.5rem !important;
  border-radius: 50px !important;
  font-size: 1.1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  text-decoration: none !important;
  display: inline-block !important;
  box-shadow: 0 8px 25px rgba(46, 134, 193, 0.3) !important;
  transform: translateY(0) !important;
}

.btn-hero-secondary::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent) !important;
  transition: left 0.6s ease !important;
}

.btn-hero-secondary::after {
  content: '🚀' !important;
  position: absolute !important;
  right: 1rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 1.2rem !important;
  opacity: 0 !important;
  transition: all 0.3s ease !important;
}

.btn-hero-secondary:hover {
  transform: translateY(-5px) scale(1.05) !important;
  box-shadow: 0 15px 35px rgba(46, 134, 193, 0.4) !important;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: white !important;
  text-decoration: none !important;
}

.btn-hero-secondary:hover::before {
  left: 100% !important;
}

.btn-hero-secondary:hover::after {
  opacity: 1 !important;
  transform: translateY(-50%) translateX(5px) !important;
}

.btn-hero-secondary:active {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 8px 20px rgba(46, 134, 193, 0.4) !important;
}

/* Responsividade para o botão nossos produtos */
@media (max-width: 768px) {
  .btn-hero-secondary {
    width: 100% !important;
    max-width: 280px !important;
    padding: 0.9rem 2rem !important;
    font-size: 1rem !important;
    letter-spacing: 1px !important;
  }
  
  .btn-hero-secondary::after {
    right: 0.8rem !important;
    font-size: 1.1rem !important;
  }
}

@media (max-width: 576px) {
  .btn-hero-secondary {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.5px !important;
  }
  
  .btn-hero-secondary::after {
    right: 0.6rem !important;
    font-size: 1rem !important;
  }
}

/* =========================
   MELHORIAS NO LAYOUT DOS BOTÕES HERO
   ========================= */

/* Container dos botões hero melhorado */
.hero-buttons {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 1.5rem !important;
  flex-wrap: wrap !important;
  margin-bottom: 2rem !important;
}

/* Melhorias nos botões CTA hero */
.btn-hero-cta {
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-hero-cta:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 30px rgba(46, 134, 193, 0.3) !important;
}

/* Responsividade melhorada para o container dos botões */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: stretch !important;
  }
  
  .hero-buttons .btn {
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    gap: 0.8rem !important;
  }
  
  .hero-buttons .btn {
    max-width: 260px !important;
    font-size: 0.95rem !important;
  }
}

/* ===== SALES PITCH SECTION ===== */
.sales-pitch-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 50%, #f0f9ff 100%);
  position: relative;
  overflow: hidden;
}

.pitch-wrapper {
  position: relative;
  z-index: 10;
}

/* Background Elements */
.pitch-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(46, 134, 193, 0.1), rgba(27, 79, 114, 0.05));
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: -2s;
}

.circle-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation-delay: -4s;
}

.circle-3 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 30%;
  animation-delay: -1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Content Styling */
.pitch-content {
  padding: 2rem 0;
}

.pitch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(46, 134, 193, 0.3);
}

.pitch-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.highlight-text {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pitch-description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Benefits */
.pitch-benefits {
  margin-bottom: 2.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.benefit-item span {
  font-weight: 500;
  color: var(--dark-color);
}

/* Spotlight Button */
.btn-spotlight {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 1.5rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(46, 134, 193, 0.4);
  transition: all 0.3s ease;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-spotlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(46, 134, 193, 0.6);
  color: white;
  text-decoration: none;
}

.btn-text {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.btn-subtext {
  display: block;
  font-size: 0.85rem;
  opacity: 0.9;
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-spotlight:hover .btn-glow {
  left: 100%;
}

/* Visual Section */
.pitch-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-showcase-grid {
  position: relative;
  width: 340px;
  height: 280px;
}

.tech-item {
  position: absolute;
  background: white;
  border-radius: 20px;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid rgba(46, 134, 193, 0.1);
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.tech-item i {
  font-size: 1.3rem;
  color: var(--primary-color);
}

.tech-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark-color);
  text-align: center;
  line-height: 1.1;
}

.tech-pulse {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 12px;
  height: 12px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
  }
}

/* Tech Items Positioning - Grid 4x3 perfeitamente alinhado */
.tech-item-1 {
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
}

.tech-item-2 {
  top: 0;
  left: 90px;
  width: 70px;
  height: 70px;
}

.tech-item-3 {
  top: 0;
  left: 180px;
  width: 70px;
  height: 70px;
}

.tech-item-4 {
  top: 0;
  left: 270px;
  width: 70px;
  height: 70px;
}

.tech-item-5 {
  top: 90px;
  left: 0;
  width: 70px;
  height: 70px;
}

.tech-item-6 {
  top: 90px;
  left: 90px;
  width: 70px;
  height: 70px;
}

.tech-item-7 {
  top: 90px;
  left: 180px;
  width: 70px;
  height: 70px;
}

.tech-item-8 {
  top: 90px;
  left: 270px;
  width: 70px;
  height: 70px;
}

.tech-item-9 {
  top: 180px;
  left: 30px;
  width: 70px;
  height: 70px;
}

.tech-item-10 {
  top: 180px;
  left: 120px;
  width: 70px;
  height: 70px;
}

.tech-item-11 {
  top: 180px;
  left: 210px;
  width: 70px;
  height: 70px;
}

/* Stats Overlay */
.stats-overlay {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
}

.stat-bubble {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(46, 134, 193, 0.3);
  animation: bob 3s ease-in-out infinite;
}

.stat-bubble:nth-child(2) {
  animation-delay: -1s;
}

.stat-bubble:nth-child(3) {
  animation-delay: -2s;
}

@keyframes bob {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.stat-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 991px) {
  .pitch-title {
    font-size: 2rem;
  }
  
  .pitch-visual {
    margin-top: 3rem;
    height: 320px;
  }
  
  .tech-showcase-grid {
    width: 300px;
    height: 250px;
  }
  
  .tech-item {
    width: 60px !important;
    height: 60px !important;
    padding: 0.5rem;
  }
  
  .tech-item i {
    font-size: 1.1rem;
  }
  
  .tech-item span {
    font-size: 0.65rem;
  }
  
  /* Grid 4x3 ajustado para tablet */
  .tech-item-1 { top: 0; left: 0; }
  .tech-item-2 { top: 0; left: 75px; }
  .tech-item-3 { top: 0; left: 150px; }
  .tech-item-4 { top: 0; left: 225px; }
  .tech-item-5 { top: 75px; left: 0; }
  .tech-item-6 { top: 75px; left: 75px; }
  .tech-item-7 { top: 75px; left: 150px; }
  .tech-item-8 { top: 75px; left: 225px; }
  .tech-item-9 { top: 150px; left: 25px; }
  .tech-item-10 { top: 150px; left: 100px; }
  .tech-item-11 { top: 150px; left: 175px; }
  
  .stats-overlay {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .sales-pitch-section {
    padding: 60px 0;
  }
  
  .pitch-title {
    font-size: 1.8rem;
  }
  
  .btn-spotlight {
    padding: 1.2rem 2rem;
  }
  
  .pitch-visual {
    height: 280px;
  }
  
  .tech-showcase-grid {
    width: 260px;
    height: 220px;
  }
  
  .tech-item {
    width: 50px !important;
    height: 50px !important;
    padding: 0.4rem;
  }
  
  .tech-item i {
    font-size: 1rem;
  }
  
  .tech-item span {
    font-size: 0.6rem;
  }
  
  /* Grid móvel alinhado */
  .tech-item-1 { top: 0; left: 0; }
  .tech-item-2 { top: 0; left: 65px; }
  .tech-item-3 { top: 0; left: 130px; }
  .tech-item-4 { top: 0; left: 195px; }
  .tech-item-5 { top: 65px; left: 0; }
  .tech-item-6 { top: 65px; left: 65px; }
  .tech-item-7 { top: 65px; left: 130px; }
  .tech-item-8 { top: 65px; left: 195px; }
  .tech-item-9 { top: 130px; left: 22px; }
  .tech-item-10 { top: 130px; left: 87px; }
  .tech-item-11 { top: 130px; left: 152px; }
}

@media (max-width: 576px) {
  .tech-showcase-grid {
    width: 220px;
    height: 200px;
  }
  
  .tech-item {
    width: 42px !important;
    height: 42px !important;
    padding: 0.3rem;
  }
  
  .tech-item i {
    font-size: 0.9rem;
  }
  
  .tech-item span {
    font-size: 0.55rem;
  }
  
  /* Grid extra pequeno */
  .tech-item-1 { top: 0; left: 0; }
  .tech-item-2 { top: 0; left: 55px; }
  .tech-item-3 { top: 0; left: 110px; }
  .tech-item-4 { top: 0; left: 165px; }
  .tech-item-5 { top: 55px; left: 0; }
  .tech-item-6 { top: 55px; left: 55px; }
  .tech-item-7 { top: 55px; left: 110px; }
  .tech-item-8 { top: 55px; left: 165px; }
  .tech-item-9 { top: 110px; left: 18px; }
  .tech-item-10 { top: 110px; left: 73px; }
  .tech-item-11 { top: 110px; left: 128px; }
}
