/* ========================================
   QUATTEO - OVERWATCH BOOST
   Design Gaming Futurista - Fiel à Imagem
======================================== */

:root {
  --orange-primary: #ff8c00;
  --orange-light: #ffb347;
  --orange-glow: rgba(255, 140, 0, 0.6);
  --blue-accent: #00d4ff;
  --blue-glow: rgba(0, 212, 255, 0.4);
  --dark-bg: #0a0a12;
  --dark-card: rgba(10, 10, 20, 0.75);
  --text-white: #ffffff;
  --text-gray: #b0b0b0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--dark-bg);
  color: var(--text-white);
}

/* Container Principal - Proporção similar a story/mobile */
.container {
  position: relative;
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
}

/* Background Image - Cobre toda a área */
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Overlay escuro para legibilidade - mais forte à esquerda */
.background-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.5) 45%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

/* Content Overlay - Posicionado à esquerda */
.content {
  position: relative;
  z-index: 1;
  padding: 25px 20px;
  padding-right: 40%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  margin-bottom: 20px;
}

.title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-white);
  text-shadow: 
    0 0 10px var(--orange-glow),
    0 0 25px var(--orange-glow),
    2px 2px 4px rgba(0, 0, 0, 0.9);
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 12px;
}

/* Estilo "BOOST" diferenciado */
.title .boost-text {
  display: block;
  font-size: 2.2rem;
  background: linear-gradient(180deg, #fff 40%, var(--orange-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 140, 0, 0.5);
  border-radius: 20px;
  padding: 6px 14px;
  font-weight: 600;
}

.lock-icon {
  font-size: 0.85rem;
}

.badge-text {
  font-size: 0.8rem;
  color: var(--text-white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Sections */
.section {
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--orange-light);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 0 8px var(--orange-glow);
}

.icon {
  font-size: 0.9rem;
}

/* Service Lists */
.service-list {
  list-style: none;
  background: var(--dark-card);
  border-radius: 10px;
  padding: 10px 14px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 140, 0, 0.15);
}

/* Listas com scroll (serviços adicionais e personalizados) */
.service-list.scrollable {
  max-height: 150px;
  overflow-y: auto;
}

/* Scrollbar estilizada */
.service-list.scrollable::-webkit-scrollbar {
  width: 6px;
}

.service-list.scrollable::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}

.service-list.scrollable::-webkit-scrollbar-thumb {
  background: var(--orange-primary);
  border-radius: 3px;
}

.service-list.scrollable::-webkit-scrollbar-thumb:hover {
  background: var(--orange-light);
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-item:last-child {
  border-bottom: none;
}

.service-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}

.bullet {
  color: var(--orange-primary);
  font-size: 1rem;
}

.arrow {
  color: var(--orange-primary);
  font-weight: bold;
  margin: 0 3px;
}

.service-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange-primary);
  text-shadow: 0 0 6px var(--orange-glow);
  white-space: nowrap;
}

.price-unit {
  font-size: 0.75rem;
  color: var(--text-gray);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
}

/* Custom Services (sem preço) */
.service-list.custom .service-item {
  justify-content: flex-start;
}

/* Additional Services - Layout melhorado */
.additional-item {
  flex-wrap: nowrap;
}

.additional-item .service-name {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.additional-item .name-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.additional-item .service-price {
  flex-shrink: 0;
  text-align: right;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.additional-item .price-unit {
  font-size: 0.7rem;
  color: var(--orange-primary);
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 6px var(--orange-glow);
  margin-top: 2px;
}

/* Footer */
.footer {
  margin-top: auto;
  padding-top: 15px;
}

/* Contact Section */
.contact-section {
  margin-bottom: 15px;
}

.contact-label {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 0 0 8px var(--orange-glow);
}

/* Contact Buttons - Gaming Style */
.contact-buttons {
  display: flex;
  gap: 12px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--dark-card);
  border: 2px solid var(--orange-primary);
  border-radius: 8px;
  color: var(--orange-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.3), transparent);
  transition: left 0.5s ease;
}

.contact-btn:hover::before {
  left: 100%;
}

.contact-btn svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}

.contact-btn:hover {
  background: var(--orange-primary);
  color: white;
  box-shadow: 0 0 15px var(--orange-glow);
  transform: translateY(-2px);
}

/* Discord */
.contact-btn.discord {
  border-color: #5865F2;
  color: #5865F2;
}

.contact-btn.discord:hover {
  background: #5865F2;
  color: white;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.6);
}

/* Instagram */
.contact-btn.instagram {
  border-color: #E1306C;
  color: #E1306C;
}

.contact-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(225, 48, 108, 0.6);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  font-size: 1.3rem;
  color: var(--orange-primary);
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-white);
}

/* Responsive - Desktop */
@media (min-width: 768px) {
  .container {
    max-width: 480px;
  }
}

/* Mobile pequeno */
@media (max-width: 400px) {
  .title {
    font-size: 1.5rem;
  }
  
  .title .boost-text {
    font-size: 1.8rem;
  }
  
  .content {
    padding: 20px 15px;
    padding-right: 35%;
  }
  
  .service-name, .service-price {
    font-size: 0.85rem;
  }
}

/* Loading State */
.loading {
  text-align: center;
  padding: 15px;
  color: var(--text-gray);
}

/* Animação de glow no título */
@keyframes glow {
  from {
    text-shadow: 
      0 0 10px var(--orange-glow),
      0 0 20px var(--orange-glow);
  }
  to {
    text-shadow: 
      0 0 15px var(--orange-glow),
      0 0 30px var(--orange-glow),
      0 0 45px var(--orange-glow);
  }
}

.title {
  animation: glow 2s ease-in-out infinite alternate;
}

/* Skeleton Loading */
.loading-skeleton {
  height: 28px;
  background: linear-gradient(
    90deg,
    var(--dark-card) 0%,
    rgba(255, 140, 0, 0.15) 50%,
    var(--dark-card) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  margin: 6px 0;
  list-style: none;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
