/**
 * DC AUDIO PRO - Rental & Technology
 * Design System & Component Styles
 * Reposicionamento corporativo de audiovisual e tecnologia para eventos
 */

:root {
  --dc-bg-deep: #0a0c10;
  --dc-bg-card: #12151d;
  --dc-bg-card-hover: #181d27;
  --dc-border: rgba(255, 255, 255, 0.08);
  --dc-border-hover: rgba(254, 185, 0, 0.35);
  --dc-gold: #feb900;
  --dc-gold-light: #ffcd38;
  --dc-gold-dark: #d99b00;
  --dc-gold-glow: rgba(254, 185, 0, 0.25);
  --dc-text-muted: #9aa3af;
  --dc-text-light: #f3f4f6;
  --dc-badge-bg: rgba(254, 185, 0, 0.12);
  --dc-badge-border: rgba(254, 185, 0, 0.3);
  --dc-radius: 14px;
  --dc-radius-sm: 8px;
  --dc-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --dc-shadow-glow: 0 0 25px rgba(254, 185, 0, 0.2);
}

/* ===================================================
   HERO RENTAL & TECHNOLOGY
   =================================================== */
.hero-tech {
  position: relative;
  background: radial-gradient(circle at top center, #1b212f 0%, #0a0c10 80%);
  padding: 100px 0 70px;
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid var(--dc-border);
}

.hero-tech::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  opacity: 0.6;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dc-badge-bg);
  border: 1px solid var(--dc-badge-border);
  color: var(--dc-gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-tech h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-tech h1 .highlight-gold {
  color: var(--dc-gold);
  text-shadow: 0 0 30px rgba(254, 185, 0, 0.35);
}

.hero-tech .lead-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #d1d5db;
  max-width: 860px;
  margin: 0 auto 28px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-tech-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
}

.btn-tech-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dc-gold);
  color: #000 !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(254, 185, 0, 0.35);
}

.btn-tech-primary:hover {
  background: var(--dc-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(254, 185, 0, 0.5);
  color: #000 !important;
}

.btn-tech-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff !important;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 13px 26px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-tech-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--dc-gold);
  color: var(--dc-gold) !important;
  transform: translateY(-2px);
}

.hero-subcard {
  background: rgba(18, 21, 29, 0.85);
  border: 1px solid var(--dc-border);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px 24px;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: var(--dc-shadow);
}

.hero-subcard-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dc-gold);
  margin-bottom: 6px;
}

.hero-subcard p {
  color: #e5e7eb;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===================================================
   TAGLINE STRIP
   =================================================== */
.tagline-strip {
  background: #0f1218;
  border-bottom: 1px solid var(--dc-border);
  padding: 18px 0;
}

.tagline-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d1d5db;
  font-size: 0.95rem;
  font-weight: 600;
}

.tagline-item i {
  color: var(--dc-gold);
  font-size: 1.25rem;
}

/* ===================================================
   MODALIDADES DE FORNECIMENTO
   =================================================== */
.section-modalidades {
  background: #0a0c10;
  padding: 80px 0;
  color: #fff;
  border-bottom: 1px solid var(--dc-border);
}

.modalidade-card {
  background: var(--dc-bg-card);
  border: 1px solid var(--dc-border);
  border-radius: var(--dc-radius);
  padding: 36px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.modalidade-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--dc-border), transparent);
  transition: all 0.35s ease;
}

.modalidade-card:hover {
  transform: translateY(-6px);
  border-color: var(--dc-border-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.modalidade-card:hover::before {
  background: linear-gradient(90deg, transparent, var(--dc-gold), transparent);
}

.modalidade-card.featured {
  border-color: rgba(254, 185, 0, 0.4);
  background: linear-gradient(180deg, #161b26 0%, #12151d 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modalidade-badge {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--dc-gold);
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modalidade-icon {
  width: 56px;
  height: 56px;
  background: rgba(254, 185, 0, 0.1);
  border: 1px solid rgba(254, 185, 0, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--dc-gold);
  margin-bottom: 22px;
}

.modalidade-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.modalidade-card p.desc {
  color: var(--dc-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

.modalidade-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
  flex-grow: 1;
}

.modalidade-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #e5e7eb;
  margin-bottom: 12px;
}

.modalidade-list li i {
  color: var(--dc-gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===================================================
   SOLUÇÕES EM KITS (REAIS NECESSIDADES)
   =================================================== */
.section-solucoes-kits {
  background: #0d1016;
  padding: 90px 0;
  color: #fff;
  border-bottom: 1px solid var(--dc-border);
}

.section-title-wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 55px;
}

.section-kicker {
  color: var(--dc-gold);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title-wrap h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-title-wrap p {
  color: var(--dc-text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.kit-card {
  background: var(--dc-bg-card);
  border: 1px solid var(--dc-border);
  border-radius: var(--dc-radius);
  padding: 26px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.kit-card:hover {
  transform: translateY(-5px);
  border-color: var(--dc-border-hover);
  background: var(--dc-bg-card-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.kit-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.kit-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(254, 185, 0, 0.1);
  border: 1px solid rgba(254, 185, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--dc-gold);
  flex-shrink: 0;
}

.kit-card h4 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.kit-card p.kit-summary {
  font-size: 0.9rem;
  color: var(--dc-text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.kit-items-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 14px;
  flex-grow: 1;
}

.kit-items-list li {
  font-size: 0.85rem;
  color: #d1d5db;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 7px;
}

.kit-items-list li i {
  color: var(--dc-gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.kit-footer-btn {
  margin-top: auto;
  padding-top: 14px;
}

.btn-kit-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--dc-border);
  color: #fff !important;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-kit-action:hover {
  background: var(--dc-gold);
  color: #000 !important;
  border-color: var(--dc-gold);
}

.btn-kit-action i {
  transition: transform 0.25s ease;
}

.btn-kit-action:hover i {
  transform: translateX(4px);
}

/* ===================================================
   6 PILARES DE EQUIPAMENTOS
   =================================================== */
.section-categorias-pro {
  background: #0a0c10;
  padding: 90px 0;
  color: #fff;
  border-bottom: 1px solid var(--dc-border);
}

.categoria-pro-card {
  background: var(--dc-bg-card);
  border: 1px solid var(--dc-border);
  border-radius: var(--dc-radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.categoria-pro-card:hover {
  transform: translateY(-6px);
  border-color: var(--dc-border-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55);
}

.categoria-pro-thumb {
  height: 190px;
  position: relative;
  overflow: hidden;
}

.categoria-pro-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.categoria-pro-card:hover .categoria-pro-thumb img {
  transform: scale(1.08);
}

.categoria-pro-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 16, 0.1) 0%, rgba(18, 21, 29, 0.95) 100%);
}

.categoria-pro-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.categoria-pro-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.categoria-pro-body h3 span.badge-pro {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(254, 185, 0, 0.15);
  color: var(--dc-gold);
  border: 1px solid rgba(254, 185, 0, 0.25);
  padding: 3px 8px;
  border-radius: 4px;
}

.categoria-pro-body p.desc {
  font-size: 0.9rem;
  color: var(--dc-text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.tags-equipamentos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.tags-equipamentos span {
  font-size: 0.76rem;
  background: rgba(255, 255, 255, 0.05);
  color: #d1d5db;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===================================================
   DESTAQUE: SEU EVENTO NÃO PODE PARAR
   =================================================== */
.section-redundancia {
  background: radial-gradient(circle at center, #1b2130 0%, #0c0f16 100%);
  padding: 95px 0;
  color: #fff;
  border-bottom: 1px solid var(--dc-border);
  position: relative;
  overflow: hidden;
}

.section-redundancia::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--dc-gold), transparent);
}

.redundancia-box {
  background: rgba(14, 17, 24, 0.85);
  border: 1px solid rgba(254, 185, 0, 0.35);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(254, 185, 0, 0.1);
  border-radius: 18px;
  padding: 50px 40px;
}

.redundancia-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.redundancia-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.redundancia-header h2 .highlight {
  color: var(--dc-gold);
}

.redundancia-header p.lead {
  font-size: 1.12rem;
  color: #d1d5db;
  line-height: 1.6;
}

.redundancia-pilares {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 35px;
}

.pilar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.pilar-card:hover {
  background: rgba(254, 185, 0, 0.05);
  border-color: rgba(254, 185, 0, 0.4);
  transform: translateY(-4px);
}

.pilar-card i {
  font-size: 2.2rem;
  color: var(--dc-gold);
  margin-bottom: 14px;
  display: inline-block;
}

.pilar-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.pilar-card p {
  font-size: 0.85rem;
  color: var(--dc-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.redundancia-banner-cta {
  background: rgba(254, 185, 0, 0.08);
  border: 1px solid rgba(254, 185, 0, 0.25);
  border-radius: 10px;
  padding: 20px 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.redundancia-banner-cta h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px 0;
}

.redundancia-banner-cta p {
  font-size: 0.9rem;
  color: #d1d5db;
  margin: 0;
}

/* ===================================================
   SEÇÃO ESTRATÉGICA: DC LIVE PRODUÇÕES
   =================================================== */
.section-dc-live {
  background: #080a0d;
  padding: 70px 0;
  color: #fff;
  border-bottom: 1px solid var(--dc-border);
}

.dc-live-box {
  background: linear-gradient(135deg, #161a24 0%, #0e1118 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.dc-live-box::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(254, 185, 0, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.dc-live-content {
  max-width: 680px;
}

.dc-live-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dc-gold);
  background: rgba(254, 185, 0, 0.12);
  border: 1px solid rgba(254, 185, 0, 0.25);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.dc-live-box h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.dc-live-box p {
  color: #d1d5db;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.btn-dc-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff !important;
  border: 1px solid var(--dc-gold);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-dc-live:hover {
  background: var(--dc-gold);
  color: #000 !important;
  box-shadow: 0 4px 15px rgba(254, 185, 0, 0.3);
  transform: translateY(-2px);
}

/* ===================================================
   PÚBLICO PRIORITÁRIO B2B
   =================================================== */
.section-publico-alvo {
  background: #0a0c10;
  padding: 70px 0;
  color: #fff;
  border-bottom: 1px solid var(--dc-border);
}

.publico-item {
  background: var(--dc-bg-card);
  border: 1px solid var(--dc-border);
  border-radius: 10px;
  padding: 20px 18px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.publico-item:hover {
  border-color: var(--dc-border-hover);
  background: var(--dc-bg-card-hover);
  transform: translateY(-4px);
}

.publico-item i {
  font-size: 1.8rem;
  color: var(--dc-gold);
  margin-bottom: 10px;
  display: inline-block;
}

.publico-item h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.publico-item p {
  font-size: 0.82rem;
  color: var(--dc-text-muted);
  line-height: 1.4;
  margin: 0;
}

/* ===================================================
   HEADER & NAVBAR CORREÇÕES VISUAIS
   =================================================== */
.logo-tagline-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--dc-gold);
  text-transform: uppercase;
  margin-top: -2px;
}

.navbar .nav-tag-badge {
  font-size: 0.65rem;
  background: var(--dc-gold);
  color: #000;
  padding: 1px 6px;
  border-radius: 10px;
  font-weight: 800;
  margin-left: 4px;
}

/* ===================================================
   RESPONSIVIDADE
   =================================================== */
@media (max-width: 991px) {
  .hero-tech {
    padding: 70px 0 50px;
  }
  .redundancia-box {
    padding: 35px 22px;
  }
  .dc-live-box {
    padding: 28px 22px;
  }
}

@media (max-width: 576px) {
  .hero-tech-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-tech-primary,
  .btn-tech-outline {
    width: 100%;
    justify-content: center;
  }
  .modalidade-card {
    padding: 26px 20px;
  }
}
