/* ==========================================
   STYLES WALKING PLATFORMS
   ========================================== */

:root {
  --red-primary: #940A37;
  --cyan-primary: #006E7F;
  --dark-primary: #242626;
  --light-gray: #ebebeb;
  --white: #fafcfc;
  --tiffany-blue: #0abab1;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  --shadow-md: 0 3px 6px rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.10);
  --shadow-xl: 0 15px 25px rgba(0,0,0,0.15), 0 5px 10px rgba(0,0,0,0.05);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================
   GLOBAL STYLES
   ========================================== */

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark-primary);
  background-color: var(--white);
}

/* ==========================================
   FOOTER - Fundo Quadriculado
   ========================================== */

footer {
  position: relative !important;
  overflow: hidden !important;
}

footer.bg-\[#242626\] {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
}

/* Aplicar fundo quadriculado usando seletor mais específico */
footer[class*="bg-"] {
  position: relative !important;
  overflow: hidden !important;
}

footer[class*="bg-"]::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: 
    /* Padrão de grade técnica */
    repeating-linear-gradient(0deg, transparent 0px, transparent 49px, rgba(0, 110, 127, 0.05) 49px, rgba(0, 110, 127, 0.05) 50px),
    repeating-linear-gradient(90deg, transparent 0px, transparent 49px, rgba(0, 110, 127, 0.05) 49px, rgba(0, 110, 127, 0.05) 50px),
    /* Base escura */
    linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

footer[class*="bg-"] > * {
  position: relative !important;
  z-index: 1 !important;
}

/* ==========================================
   NAVBAR STYLES
   ========================================== */

#header {
  backdrop-filter: blur(10px);
}

.header-logo {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
  transform-origin: center;
  will-change: transform;
}

.header-logo:hover {
  transform: scale(1.08) translateY(-2px) perspective(800px) rotateX(4deg) rotateY(-3deg);
  filter: drop-shadow(0 16px 30px rgba(0, 110, 127, 0.35)) drop-shadow(0 8px 18px rgba(148, 10, 55, 0.25));
}

.nav-link {
  color: var(--light-gray);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--cyan-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* ==========================================
   BUTTON STYLES
   ========================================== */

button {
  cursor: pointer;
  transition: all 0.3s ease;
}

.pulse-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

/* ==========================================
   PRODUCT CARDS TILT EFFECT
   ========================================== */

.product-card {
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

/* ==========================================
   LOADING SPINNER
   ========================================== */

.spinner {
  border: 3px solid #f3f4f6;
  border-top: 3px solid #940A37;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 1s linear infinite;
  display: inline-block;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

@media (max-width: 768px) {
  #header nav {
    display: none !important;
  }
}

/* ==========================================
   LOADING
   ========================================== */

.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================
   DIVISOR DE TRANSIÇÃO ENTRE SEÇÕES - TUBO DE VIDRO (REMOVIDO)
   ========================================== */
   
/* O tubo foi removido conforme solicitado */

/* ==========================================
   DATABASE STATUS COLORS
   ========================================== */

.status-blue {
  background-color: #dbeafe;
  border-color: #3b82f6;
  color: #1e40af;
}

.status-green {
  background-color: #d1fae5;
  border-color: #10b981;
  color: #065f46;
}

/* ==========================================
   TOAST NOTIFICATIONS
   ========================================== */

.toast {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  min-width: 300px;
  max-width: 500px;
  animation: slideInRight 0.3s ease-out;
  border-left: 4px solid;
}

.toast.success {
  border-left-color: #10b981;
}

.toast.error {
  border-left-color: #ef4444;
}

.toast.info {
  border-left-color: #006E7F;
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ==========================================
   NEWS CAROUSEL RESPONSIVE
   ========================================== */

@media (max-width: 1023px) {
  .news-card {
    min-width: calc((100% - 24px) / 2) !important;
  }
}

@media (max-width: 767px) {
  .news-card {
    min-width: 100% !important;
  }
}

/* ==========================================
   LINHA DIVISÓRIA ANIMADA
   ========================================== */

.animated-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #940A37 0%, #006E7F 50%, #940A37 100%);
  background-size: 200% 100%;
  animation: none;
  box-shadow: none;
}

/* Keyframes removidas - efeitos RGB removidos */

/* ==========================================
   ANIMAÇÕES AVANÇADAS PREMIUM
   ========================================== */

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 110, 127, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 110, 127, 0.8);
  }
}

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

/* Aplicar animações avançadas nas seções */
section {
  animation: fadeInUp 0.8s ease-out;
}

/* Animações para cards de produtos */
.product-card {
  animation: fadeInUp 0.6s ease-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  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;
}

.product-card:hover::before {
  left: 100%;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Animações para botões */
.hero-btn-primary,
.hero-btn-secondary {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hero-btn-secondary {
  border-color: #ffffff !important;
  color: #ffffff !important;
  opacity: 1 !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-btn-secondary.border-white {
  border-color: #ffffff !important;
}

.hero-btn-secondary:hover {
  border-color: #ffffff !important;
  color: #ffffff !important;
  opacity: 1 !important;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero-btn-primary::after,
.hero-btn-secondary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-btn-primary:hover::after,
.hero-btn-secondary:hover::after {
  width: 300px;
  height: 300px;
}

.hero-service-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-service-group {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}

.hero-secondary-buttons {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-secondary-buttons .hero-btn-option {
  white-space: nowrap;
}

.hero-secondary-buttons.hidden {
  display: none;
}

.hero-secondary-buttons.active {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .hero-secondary-buttons {
    position: absolute;
    top: 50%;
    left: calc(100% + 1rem);
    transform: translate(-12px, -50%);
  }

  .hero-secondary-buttons.active {
    transform: translate(0, -50%);
  }
}

.quem-somos-section {
  position: relative;
}

.quem-somos-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.quem-somos-title {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.05em;
  font-weight: 700;
  line-height: 1.05;
}

.quem-somos-title span {
  opacity: 0;
  transform: translateY(40px);
  display: inline-block;
  filter: drop-shadow(0 6px 12px rgba(0, 110, 127, 0.25));
}

.quem-somos-title span.space {
  width: 0.45em;
}

.quem-somos-title.is-visible span {
  animation: revealLetter 0.55s forwards cubic-bezier(0.22, 1, 0.36, 1);
}

.quem-somos-paragraph {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.quem-somos-paragraph.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.quem-somos-image-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 32px;
  padding: 14px;
  background: radial-gradient(circle at 20% -10%, rgba(148, 10, 55, 0.18), transparent 65%);
  transform-style: preserve-3d;
  box-shadow: 0 18px 45px rgba(0, 110, 127, 0.15);
}

.quem-somos-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 38px;
  background: conic-gradient(from 0deg, rgba(148, 10, 55, 0), rgba(148, 10, 55, 0.85), rgba(0, 110, 127, 0.85), rgba(250, 252, 252, 0.9), rgba(148, 10, 55, 0));
  filter: blur(0.5px) drop-shadow(0 0 18px rgba(0, 110, 127, 0.35));
  opacity: 0;
  animation: orbitGlow 1.1s linear infinite;
  animation-play-state: paused;
  pointer-events: none;
}

.quem-somos-image-wrapper.activate::before {
  opacity: 1;
  animation-play-state: running;
}

.quem-somos-image-wrapper.show-image::before {
  opacity: 0;
  animation-play-state: paused;
  transition: opacity 0.4s ease;
}

.quem-somos-image-wrapper img {
  border-radius: 24px;
  opacity: 0;
  transform: scale(0.92) translateY(16px) rotateX(-6deg);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: 0.25s;
  box-shadow: 0 22px 40px rgba(0, 110, 127, 0.18), 0 12px 25px rgba(148, 10, 55, 0.12);
}

.quem-somos-image-wrapper.show-image img {
  opacity: 1;
  transform: scale(1) translateY(0) rotateX(0deg) rotateY(0deg);
}

/* Animações para elementos de entrada */
.fadeIn {
  animation: fadeInUp 0.5s ease-out;
}

.slideInLeft {
  animation: slideInLeft 0.6s ease-out;
}

.slideInRight {
  animation: slideInRight 0.6s ease-out;
}

/* ==========================================
   CARROSSEL DE NOTÍCIAS
   ========================================== */

.carousel-container {
  position: relative;
  padding: 0 20px;
}

.carousel-track-container {
  overflow: hidden;
  padding: 10px 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.carousel-slide {
  flex-shrink: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.carousel-btn {
  opacity: 0.9;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.carousel-btn:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-indicators .indicator:hover {
  background-color: #9ca3af;
  transform: scale(1.2);
}

.carousel-indicators .indicator.active {
  background-color: #940A37;
  width: 32px;
  border-radius: 6px;
}

/* Line clamp para texto truncado */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsividade do carrossel */
@media (max-width: 767px) {
  .carousel-container {
    padding: 0 10px;
  }
  
  .carousel-track-container {
    margin: 0 40px;
  }
  
  .carousel-btn {
    padding: 8px !important;
  }
  
  .carousel-btn svg {
    width: 20px !important;
    height: 20px !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .carousel-track-container {
    margin: 0 50px;
  }
}

@media (min-width: 1024px) {
  .carousel-track-container {
    margin: 0 60px;
  }
}

/* ==========================================
   MODAL HOLOGRÁFICO DE NOTÍCIA
   ========================================== */

.news-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-modal-overlay.active {
  opacity: 1;
}

.news-modal-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 252, 252, 0.98) 100%);
  border-radius: 24px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 
    0 0 60px rgba(148, 10, 55, 0.3),
    0 0 120px rgba(0, 110, 127, 0.2),
    inset 0 0 80px rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
  background-clip: padding-box;
  transform: scale(0.8) translateY(50px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.news-modal-overlay.active .news-modal-container {
  transform: scale(1) translateY(0);
}

/* Borda gradient animada */
.news-modal-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    #940A37 0%,
    #006E7F 50%,
    #940A37 100%
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.news-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(148, 10, 55, 0.9);
  color: white;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(148, 10, 55, 0.4);
}

.news-modal-close:hover {
  background: #7a082d;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(148, 10, 55, 0.6);
}

.news-modal-content {
  padding: 40px;
}

.news-modal-image {
  width: 100%;
  height: 400px;
  margin-bottom: 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.news-modal-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(148, 10, 55, 0.1) 0%,
    transparent 50%,
    rgba(0, 110, 127, 0.1) 100%
  );
  pointer-events: none;
}

.news-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-modal-container:hover .news-modal-image img {
  transform: scale(1.05);
}

.news-modal-header {
  margin-bottom: 32px;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, #940A37, #006E7F, transparent) 1;
  padding-bottom: 20px;
}

.news-modal-title {
  font-size: 36px;
  font-weight: bold;
  color: #242626;
  margin-bottom: 12px;
  line-height: 1.2;
  background: linear-gradient(135deg, #940A37 0%, #006E7F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.news-modal-date {
  color: #006E7F;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-modal-body {
  color: #242626;
  font-size: 18px;
  line-height: 1.8;
}

.news-modal-body p {
  margin-bottom: 20px;
}

.news-modal-body a {
  color: #006E7F;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.news-modal-body a:hover {
  color: #940A37;
}

.news-modal-body h1,
.news-modal-body h2,
.news-modal-body h3 {
  color: #940A37;
  font-weight: bold;
  margin-top: 32px;
  margin-bottom: 16px;
}

.news-modal-body ul,
.news-modal-body ol {
  margin-left: 24px;
  margin-bottom: 20px;
}

.news-modal-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Scroll customizado */
.news-modal-container::-webkit-scrollbar {
  width: 10px;
}

.news-modal-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.news-modal-container::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #940A37, #006E7F);
  border-radius: 10px;
}

.news-modal-container::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #7a082d, #005a68);
}

/* Responsividade do modal */
@media (max-width: 768px) {
  .news-modal-content {
    padding: 24px;
  }
  
  .news-modal-title {
    font-size: 28px;
  }
  
  .news-modal-body {
    font-size: 16px;
  }
  
  .news-modal-image {
    height: 250px;
  }
  
  .news-modal-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }
}



/* ==========================================
   MODAL HOLOGRÁFICO DE PRODUTO
   ========================================== */

.product-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 15, 25, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.product-modal-overlay.active {
  opacity: 1;
}

.product-modal-container {
  position: relative;
  width: min(1080px, 100%);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(250, 252, 252, 0.08) 100%);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 30px 80px rgba(12, 20, 32, 0.55);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  overflow-y: auto;
  overflow-x: hidden;
  transform: scale(0.94) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-modal-overlay.active .product-modal-container {
  transform: scale(1) translateY(0);
}

.product-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 36px 12px;
}

.product-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(0, 110, 127, 0.25);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-modal-title {
  margin-top: 12px;
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.05;
}

.product-modal-subtitle {
  margin-top: 8px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
}

.product-modal-close {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(148, 10, 55, 0.85);
  color: white;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.product-modal-close:hover {
  transform: scale(1.05) rotate(6deg);
  background: rgba(148, 10, 55, 0.95);
}

.product-modal-body {
  padding: 16px 36px 36px;
  overflow-y: auto;
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .product-modal-body {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.product-modal-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.product-modal-highlight {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(148, 10, 55, 0.08), rgba(0, 110, 127, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.08);
}

.product-modal-highlight-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.product-modal-highlight-value {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.product-modal-highlight-meta {
  text-align: right;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

.product-modal-features h4,
.product-modal-extras h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
}

.product-modal-features ul {
  display: grid;
  gap: 10px;
}

.product-modal-features li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.product-modal-features li::before {
  content: '▹';
  position: absolute;
  left: 0;
  top: 0;
  color: #006E7F;
}

.product-modal-extras-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.product-modal-extras-list {
  display: grid;
  gap: 16px;
}

.product-modal-empty {
  padding: 20px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
}

.home-extra-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 20px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 16px 40px rgba(0, 110, 127, 0.18);
  cursor: pointer;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.home-extra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 110, 127, 0.22);
}

.home-extra-card.active {
  border-color: rgba(148, 10, 55, 0.55);
  background: linear-gradient(135deg, rgba(148, 10, 55, 0.16), rgba(0, 110, 127, 0.16));
  box-shadow: 0 26px 55px rgba(148, 10, 55, 0.25);
}

.home-extra-card-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.home-extra-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.home-extra-description {
  margin-top: 6px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.home-extra-price {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.home-extra-price small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.home-extra-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.product-modal-summary {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 20px 45px rgba(0, 110, 127, 0.18);
}

.product-modal-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.product-modal-summary-line strong {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.product-modal-extras-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(148, 10, 55, 0.12);
  color: #940A37;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 6px;
}

.product-modal-selected-extras ul {
  display: grid;
  gap: 10px;
}

.product-modal-selected-extras li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.product-modal-extras-empty {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  text-align: center;
}

.product-modal-total {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-modal-total span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.product-modal-total strong {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.product-modal-total small {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.product-modal-cta {
  margin-top: 8px;
  width: 100%;
  border: none;
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #940A37, #006E7F);
  box-shadow: 0 20px 40px rgba(148, 10, 55, 0.25);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-modal-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 48px rgba(148, 10, 55, 0.32);
}

.product-modal-cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (max-width: 1023px) {
  .product-modal-body {
    grid-template-columns: 1fr;
  }

  .product-modal-info {
    order: 2;
  }

  .product-modal-summary {
    order: 1;
  }
}

.product-modal-overlay::-webkit-scrollbar {
  display: none;
}

/* Scrollbar customizado para o container do modal de produtos */
.product-modal-container::-webkit-scrollbar {
  width: 10px;
}

.product-modal-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.product-modal-container::-webkit-scrollbar-thumb {
  background: rgba(0, 110, 127, 0.6);
  border-radius: 10px;
}

.product-modal-container::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 110, 127, 0.8);
}


/* ==========================================
   BANNER DE AVISO DE MANUTENCAO
   ========================================== */

#maintenance-warning-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #940A37 0%, #006E7F 100%);
  color: white;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ==========================================
   GLOWING DIVIDER (Linha Divisória Holográfica)
   ========================================== */

.glowing-divider,
div.glowing-divider {
  width: 100% !important;
  height: 4px !important;
  background: linear-gradient(90deg, 
    var(--red-primary) 0%, 
    var(--cyan-primary) 50%, 
    var(--white) 100%) !important;
  background-size: 100% 100% !important;
  background-position: 0% 0% !important;
  position: relative !important;
  margin: 0 !important;
  overflow: visible !important;
  box-shadow: none !important;
  animation: none !important;
  -webkit-animation: none !important;
  -moz-animation: none !important;
  -o-animation: none !important;
}

.glowing-divider::before,
div.glowing-divider::before {
  display: none !important;
  content: none !important;
  animation: none !important;
  background: none !important;
}

.glowing-divider::after,
div.glowing-divider::after {
  display: none !important;
  content: none !important;
  animation: none !important;
  background: none !important;
}

/* ==========================================
   PREMIUM UTILITY CLASSES
   ========================================== */

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
  background: rgba(36, 38, 38, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hover Effects */
.hover-lift {
  transition: transform var(--transition-slow), box-shadow var(--transition-normal);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.hover-scale {
  transition: transform var(--transition-normal);
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* Shine Effect */
.shine {
  position: relative;
  overflow: hidden;
}

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

.shine:hover::after {
  left: 100%;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--red-primary), var(--cyan-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================
   HOME PAGE PREMIUM REFRESH
   ========================================== */

.home-page {
  background: var(--white);
  color: var(--dark-primary);
}

.home-hero {
  position: relative;
}

.home-hero-overlay {
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.78), rgba(16, 24, 32, 0.45));
  mix-blend-mode: multiply;
}

.home-hero-shell {
  row-gap: 3.5rem;
}

.home-hero-content {
  max-width: 34rem;
}

.home-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.75rem;
}

.home-hero-title {
  line-height: 1.05;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.home-hero-title .home-hero-social {
  margin-top: 1.25rem;
}

.home-hero-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(15, 209, 193, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.home-hero-social a:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 28px rgba(15, 209, 193, 0.3);
}

.home-hero-description {
  color: rgba(235, 240, 241, 0.78);
}

.home-hero-actions .home-hero-button {
  border-radius: 999px;
  box-shadow: 0 18px 38px -20px rgba(0, 0, 0, 0.65);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.home-hero-button:hover {
  transform: translateY(-2px);
}

/* Forçar opacidade total no botão "ver serviços" */
#verServicosBtn.hero-btn-secondary,
.hero-btn-secondary.home-hero-button {
  border-color: #ffffff !important;
  color: #ffffff !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #ffffff !important;
}

#verServicosBtn.hero-btn-secondary.border-white,
.hero-btn-secondary.home-hero-button.border-white {
  border-color: #ffffff !important;
  opacity: 1 !important;
}

#verServicosBtn.hero-btn-secondary:hover,
.hero-btn-secondary.home-hero-button:hover {
  border-color: #ffffff !important;
  color: #171717 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #171717 !important;
}

/* Garantir que o texto mude para preto quando o fundo ficar branco no hover */
#verServicosBtn.hero-btn-secondary:hover.text-white,
.hero-btn-secondary.home-hero-button:hover.text-white,
#verServicosBtn.hero-btn-secondary.hover\:bg-white:hover,
.hero-btn-secondary.home-hero-button.hover\:bg-white:hover {
  color: #171717 !important;
  -webkit-text-fill-color: #171717 !important;
}

.home-hero-mockup-wrapper {
  position: relative;
  perspective: 1600px;
}

.hero-mockup {
  position: relative;
  display: inline-block;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 16 / 10;
}

.hero-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/mockup-interativo-monitor.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  transition: transform var(--transition-slow), filter var(--transition-normal);
  will-change: transform;
  filter: drop-shadow(0 24px 55px rgba(9, 22, 36, 0.55));
  z-index: 2;
}

.hero-mockup:hover::before {
  transform: translateY(-6px);
  filter: drop-shadow(0 28px 60px rgba(10, 25, 47, 0.45));
}

.hero-mockup-screen {
  position: absolute;
  top: 17.4%;
  bottom: 32.8%;
  left: 3%;
  right: 2.6%;
  overflow: hidden;
  border-radius: 0;
  background: #050c13;
  box-shadow:
    0 18px 40px rgba(6, 17, 28, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  cursor: grab;
  z-index: 1;
}

.hero-mockup-screen:active {
  cursor: grabbing;
}

.hero-mockup-screen.hero-mockup-reduced-motion {
  cursor: default;
}

.hero-mockup-screen.hero-mockup-reduced-motion .hero-mockup-screen-image {
  transition: none;
}

.hero-mockup-screen-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-width: none;
  transform-origin: top center;
  will-change: transform;
  transform: translateY(0);
  transition: transform var(--transition-fast);
  user-select: none;
  pointer-events: none;
}

.hero-mockup-glow {
  position: absolute;
  inset: auto -18% -26%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(0, 110, 127, 0.35), transparent 70%);
  z-index: -1;
  filter: blur(18px);
  opacity: 0.85;
}

@media (max-width: 1024px) {
  .hero-mockup-screen {
    top: 18.6%;
    bottom: 31.6%;
    left: 3.8%;
    right: 3.4%;
    border-radius: 0;
  }

  .hero-mockup-glow {
    inset: auto -12% -18%;
    opacity: 0.75;
  }
}

@media (max-width: 768px) {
  .hero-mockup {
    max-width: 520px;
  }

  .hero-mockup-screen {
    top: 19.7%;
    bottom: 32.8%;
    left: 3.3%;
    right: 2.9%;
    border-radius: 0;
  }
}

@media (max-width: 640px) {
  .hero-mockup {
    max-width: 440px;
  }

  .hero-mockup-screen {
    top: 20.9%;
    bottom: 33.9%;
    left: 2.7%;
    right: 2.3%;
    border-radius: 0;
  }

  .hero-mockup-glow {
    inset: auto -8% -12%;
    opacity: 0.6;
  }
}

@media (max-width: 480px) {
  .hero-mockup {
    max-width: 360px;
  }

  .hero-mockup-screen {
    top: 22.3%;
    bottom: 35.4%;
    left: 2.2%;
    right: 1.8%;
    border-radius: 0;
  }
}

.home-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.home-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

.home-section:hover::before {
  opacity: 0.45;
}

.home-section-light {
  background: linear-gradient(180deg, rgba(250, 252, 252, 0.98) 0%, rgba(240, 245, 247, 0.9) 100%);
}

.home-section-light::before {
  background: radial-gradient(circle at top left, rgba(36, 38, 38, 0.08), transparent 60%);
}

.home-section-dark {
  background: linear-gradient(180deg, rgba(100, 5, 35, 0.98) 0%, rgba(148, 10, 55, 0.92) 25%, rgba(120, 8, 45, 0.88) 50%, rgba(148, 10, 55, 0.85) 75%, rgba(100, 5, 35, 0.80) 100%);
  color: #fff4f6;
  position: relative;
  overflow: hidden;
}

.home-section-dark::before {
  background: radial-gradient(circle at bottom left, rgba(18, 26, 34, 0.55), transparent 65%);
  opacity: 0.25;
}

/* Efeito Crystal - Formas geométricas triangulares */
.home-section-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    /* Triângulos grandes - padrão repetitivo */
    repeating-linear-gradient(135deg, transparent 0px, transparent 50px, rgba(0, 0, 0, 0.12) 50px, rgba(0, 0, 0, 0.12) 52px, transparent 52px, transparent 100px),
    repeating-linear-gradient(45deg, transparent 0px, transparent 60px, rgba(0, 0, 0, 0.1) 60px, rgba(0, 0, 0, 0.1) 62px, transparent 62px, transparent 120px),
    repeating-linear-gradient(225deg, transparent 0px, transparent 40px, rgba(0, 0, 0, 0.08) 40px, rgba(0, 0, 0, 0.08) 42px, transparent 42px, transparent 80px);
  background-size: 
    300px 300px,
    250px 250px,
    200px 200px;
  background-position: 
    0% 0%,
    30% 20%,
    70% 60%;
  /* Clip-path com cortes triangulares nas bordas */
  clip-path: polygon(
    0% 0%,
    3% 0%,
    0% 3%,
    0% 0%,
    97% 0%,
    100% 3%,
    100% 0%,
    100% 97%,
    97% 100%,
    100% 100%,
    3% 100%,
    0% 97%,
    0% 100%,
    0% 0%
  );
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.home-section-contrast {
  background: linear-gradient(135deg, rgba(245, 248, 249, 0.95) 0%, rgba(234, 240, 242, 0.85) 100%);
}

.home-section-contrast::before {
  background: radial-gradient(circle at center, rgba(36, 38, 38, 0.08), transparent 70%);
}

.home-section-gradient {
  background: linear-gradient(140deg, rgba(0, 110, 127, 0.94) 0%, rgba(0, 110, 127, 0.78) 100%);
  color: #f5f9ff;
}

.home-section-gradient::before {
  background: radial-gradient(circle at 20% 20%, rgba(0, 110, 127, 0.18), transparent 55%);
  opacity: 0.45;
}

.home-section-red {
  background: linear-gradient(160deg, rgba(148, 10, 55, 0.96) 0%, rgba(148, 10, 55, 0.85) 55%, rgba(148, 10, 55, 0.75) 100%);
  color: #fff4f6;
}

.home-section-red::before {
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 70%);
  opacity: 0.28;
}

.home-section-blue {
  background: linear-gradient(160deg, rgba(0, 110, 127, 0.96) 0%, rgba(0, 110, 127, 0.84) 55%, rgba(0, 110, 127, 0.74) 100%);
  color: #f5f9ff;
}

.home-section-blue::before {
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.18), transparent 70%);
  opacity: 0.28;
}

.home-section-code {
  background: linear-gradient(148deg, rgba(0, 110, 127, 0.96) 0%, rgba(0, 110, 127, 0.84) 60%, rgba(0, 110, 127, 0.74) 100%);
  color: #f5f9ff;
}

.home-section-code::before {
  background: radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.16), transparent 60%);
  opacity: 0.32;
}

.home-section-faq {
  background: linear-gradient(170deg, rgba(148, 10, 55, 0.96) 0%, rgba(148, 10, 55, 0.82) 70%, rgba(148, 10, 55, 0.7) 100%);
  color: #fff4f6;
}

.home-section-faq::before {
  background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.18), transparent 70%);
  opacity: 0.25;
}

.home-section-glass {
  background: linear-gradient(135deg, rgba(249, 252, 252, 0.98) 0%, rgba(240, 246, 248, 0.9) 100%);
}

.home-section-glass::before {
  background: radial-gradient(circle at top right, rgba(36, 38, 38, 0.08), transparent 60%);
  opacity: 0.4;
}

.home-section-cta {
  background: linear-gradient(135deg, rgba(100, 5, 35, 0.98) 0%, rgba(148, 10, 55, 0.92) 25%, rgba(120, 8, 45, 0.88) 50%, rgba(148, 10, 55, 0.85) 75%, rgba(100, 5, 35, 0.80) 100%);
  color: #fff4f6;
  position: relative;
  overflow: hidden;
}

.home-section-cta::before {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.16), transparent 65%);
  opacity: 0.35;
}

/* Efeito Crystal - Formas geométricas triangulares */
.home-section-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    /* Triângulos grandes - padrão repetitivo */
    repeating-linear-gradient(135deg, transparent 0px, transparent 50px, rgba(0, 0, 0, 0.12) 50px, rgba(0, 0, 0, 0.12) 52px, transparent 52px, transparent 100px),
    repeating-linear-gradient(45deg, transparent 0px, transparent 60px, rgba(0, 0, 0, 0.1) 60px, rgba(0, 0, 0, 0.1) 62px, transparent 62px, transparent 120px),
    repeating-linear-gradient(225deg, transparent 0px, transparent 40px, rgba(0, 0, 0, 0.08) 40px, rgba(0, 0, 0, 0.08) 42px, transparent 42px, transparent 80px);
  background-size: 
    300px 300px,
    250px 250px,
    200px 200px;
  background-position: 
    0% 0%,
    30% 20%,
    70% 60%;
  /* Clip-path com cortes triangulares nas bordas */
  clip-path: polygon(
    0% 0%,
    3% 0%,
    0% 3%,
    0% 0%,
    97% 0%,
    100% 3%,
    100% 0%,
    100% 97%,
    97% 100%,
    100% 100%,
    3% 100%,
    0% 97%,
    0% 100%,
    0% 0%
  );
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.home-section-shell {
  position: relative;
  z-index: 2;
}

.home-section-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.home-section-title {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.home-section-subtitle {
  font-size: 1.05rem;
  color: rgba(36, 38, 38, 0.7);
}

.home-section-dark .home-section-subtitle,
.home-section-gradient .home-section-subtitle,
.home-section-cta .home-section-subtitle,
.home-section-red .home-section-subtitle,
.home-section-blue .home-section-subtitle,
.home-section-code .home-section-subtitle,
.home-section-faq .home-section-subtitle {
  color: rgba(245, 248, 249, 0.78);
}

.home-section-highlight {
  font-style: italic;
  color: var(--cyan-primary);
}

.home-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.68rem;
  background: rgba(0, 110, 127, 0.12);
  border: 1px solid rgba(0, 110, 127, 0.25);
  color: rgba(0, 110, 127, 0.75);
  backdrop-filter: blur(12px);
  margin-bottom: 1.75rem;
}

.home-section-dark .home-badge,
.home-section-gradient .home-badge,
.home-section-cta .home-badge,
.home-section-red .home-badge,
.home-section-code .home-badge,
.home-section-faq .home-badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
}

.home-advantage-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.home-advantage-card {
  position: relative;
  border-radius: 1.6rem;
  padding: 2.4rem 2.2rem;
  background: linear-gradient(160deg, rgba(148, 10, 55, 0.9), rgba(148, 10, 55, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 48px -18px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.home-advantage-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 32px 62px -18px rgba(0, 0, 0, 0.6);
}

.home-advantage-icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
  box-shadow: 0 16px 32px -18px rgba(0, 0, 0, 0.32);
}

.home-advantage-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.home-advantage-card p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.home-plan-grid,
.home-hosting-grid {
  position: relative;
}

.home-plan-grid::before,
.home-hosting-grid::before {
  content: '';
  position: absolute;
  inset: -12%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.home-plan-grid > *,
.home-hosting-grid > * {
  position: relative;
  z-index: 1;
}

.home-glass-card {
  position: relative;
  background: linear-gradient(148deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1.75rem;
  box-shadow: 0 32px 68px -32px rgba(9, 18, 28, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  transition: box-shadow 0.45s ease, border-color 0.45s ease;
}

.home-glass-card::before {
  content: '';
  position: absolute;
  inset: -40% -40% auto auto;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 65%);
  opacity: 0.7;
  transition: opacity 0.4s ease, transform 0.6s ease;
  pointer-events: none;
}

.home-glass-card:hover::before {
  opacity: 0.95;
  transform: translate3d(-6%, -10%, 0) scale(1.05);
}

.home-glass-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 42px 90px -36px rgba(5, 14, 24, 0.75);
}

.home-card-shell {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
  height: 100%;
}

.home-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: rgba(245, 248, 249, 0.92);
  font-weight: 600;
}

.home-card-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.home-card-badge-dark {
  background: rgba(0, 110, 127, 0.12);
  border-color: rgba(0, 110, 127, 0.25);
  color: rgba(19, 35, 48, 0.76);
}

.home-card-title {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.home-card-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-card-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.home-card-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 0.8rem;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 28px -14px rgba(255, 255, 255, 0.45);
}

.home-card-feature-more {
  font-size: 0.78rem;
  opacity: 0.72;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.home-card-footer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .home-card-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.home-card-price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.home-card-price-value {
  font-size: clamp(2.15rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.home-card-price small {
  font-size: 0.85rem;
  opacity: 0.7;
}

.home-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border: 1px solid transparent;
  backdrop-filter: blur(6px);
}

.home-site-card {
  color: rgba(245, 248, 249, 0.92);
}

.home-site-card::after {
  content: '';
  position: absolute;
  inset: 6%;
  border-radius: inherit;
  background: linear-gradient(170deg, rgba(0, 110, 127, 0.2), rgba(148, 10, 55, 0.12));
  opacity: 0.55;
  pointer-events: none;
}

.home-site-card .home-card-title,
.home-site-card .home-site-card-description {
  color: rgba(245, 248, 249, 0.92);
}

.home-site-card .home-card-feature-icon {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 30px -16px rgba(255, 255, 255, 0.5);
}

.home-site-card .home-card-price-value {
  color: #ffffff;
  text-shadow: 0 18px 40px rgba(6, 18, 26, 0.45);
}

.home-site-card-btn {
  border-color: rgba(8, 15, 22, 0.55);
  background: linear-gradient(148deg, rgba(6, 18, 26, 0.78), rgba(6, 18, 26, 0.6));
  color: #f9fbff;
  box-shadow: 0 24px 50px -24px rgba(6, 18, 26, 0.75);
}

.home-site-card-btn:hover {
  background: linear-gradient(148deg, rgba(6, 18, 26, 0.88), rgba(6, 18, 26, 0.7));
  border-color: rgba(8, 15, 22, 0.7);
  box-shadow: 0 28px 58px -24px rgba(6, 18, 26, 0.82);
}

/* Cards de produto em fundo claro (branco) */
.home-section-light .home-site-card {
  color: rgba(36, 38, 38, 0.9);
  background: linear-gradient(148deg, rgba(255, 255, 255, 0.95), rgba(250, 252, 252, 0.85));
  border-color: rgba(224, 235, 244, 0.8);
}

.home-section-light .home-site-card::after {
  background: linear-gradient(170deg, rgba(0, 110, 127, 0.08), rgba(148, 10, 55, 0.05));
  opacity: 0.3;
}

.home-section-light .home-site-card .home-card-title,
.home-section-light .home-site-card .home-site-card-description {
  color: rgba(36, 38, 38, 0.9);
}

.home-section-light .home-site-card .home-card-feature {
  color: rgba(36, 38, 38, 0.85);
}

.home-section-light .home-site-card .home-card-feature-icon {
  background: rgba(0, 110, 127, 0.12);
  color: rgba(0, 110, 127, 0.9);
  box-shadow: 0 4px 12px -4px rgba(0, 110, 127, 0.3);
}

.home-section-light .home-site-card .home-card-price-value {
  color: rgba(36, 38, 38, 0.95);
  text-shadow: none;
}

.home-section-light .home-site-card .home-card-price small {
  color: rgba(36, 38, 38, 0.65);
}

.home-section-light .home-site-card-btn {
  border-color: rgba(0, 110, 127, 0.3);
  background: linear-gradient(148deg, rgba(0, 110, 127, 0.85), rgba(0, 110, 127, 0.75));
  color: #ffffff;
  box-shadow: 0 8px 24px -8px rgba(0, 110, 127, 0.4);
}

.home-section-light .home-site-card-btn:hover {
  background: linear-gradient(148deg, rgba(0, 110, 127, 0.95), rgba(0, 110, 127, 0.85));
  border-color: rgba(0, 110, 127, 0.5);
  box-shadow: 0 12px 32px -8px rgba(0, 110, 127, 0.5);
}

.home-hosting-card {
  color: rgba(21, 35, 46, 0.9);
  background: linear-gradient(148deg, rgba(244, 248, 252, 0.85), rgba(224, 235, 244, 0.6));
  border-color: rgba(224, 235, 244, 0.7);
}

.home-hosting-card::before {
  background: radial-gradient(circle at 20% 20%, rgba(0, 110, 127, 0.25), transparent 70%);
  opacity: 0.22;
}

.home-hosting-card .home-card-feature-icon {
  background: rgba(0, 110, 127, 0.12);
  color: rgba(0, 110, 127, 0.85);
  box-shadow: 0 14px 34px -18px rgba(0, 110, 127, 0.35);
}

.home-hosting-card .home-card-price-value {
  color: rgba(0, 110, 127, 0.95);
  text-shadow: 0 12px 32px rgba(0, 110, 127, 0.25);
}

.home-hosting-card-btn {
  border-color: rgba(15, 24, 32, 0.4);
  background: linear-gradient(150deg, rgba(15, 24, 32, 0.75), rgba(15, 24, 32, 0.58));
  color: #f8fafc;
  box-shadow: 0 22px 46px -24px rgba(15, 24, 32, 0.6);
}

.home-hosting-card-btn:hover {
  background: linear-gradient(150deg, rgba(15, 24, 32, 0.85), rgba(15, 24, 32, 0.68));
  border-color: rgba(15, 24, 32, 0.55);
  box-shadow: 0 30px 58px -24px rgba(15, 24, 32, 0.7);
}

.home-hosting-card .home-card-badge {
  background: rgba(0, 110, 127, 0.08);
  border-color: rgba(0, 110, 127, 0.22);
  color: rgba(0, 55, 65, 0.65);
}

.home-hosting-card .home-card-feature-more {
  color: rgba(0, 55, 65, 0.55);
}

.home-news-grid .carousel-container {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1.75rem;
  border: 1px solid rgba(0, 110, 127, 0.08);
  padding: 2rem 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 26px 60px -24px rgba(16, 24, 32, 0.4);
}

.home-news-grid .group {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(236, 242, 244, 0.85));
  border: 1px solid rgba(0, 110, 127, 0.12);
  border-radius: 1.4rem;
  box-shadow: 0 18px 45px -22px rgba(16, 30, 38, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.home-news-grid .group:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 110, 127, 0.25);
  box-shadow: 0 26px 65px -24px rgba(16, 30, 38, 0.32);
}

.home-news-grid .col-span-full {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-news-grid .group img {
  transition: transform 0.6s ease;
}

.home-news-grid .group:hover img {
  transform: scale(1.05);
}

.home-news-grid .carousel-btn {
  background: rgba(0, 110, 127, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 32px -20px rgba(0, 0, 0, 0.45);
}

.home-news-grid .carousel-btn:hover {
  background: rgba(0, 110, 127, 1);
  transform: translateY(-50%) scale(1.08);
}

.home-news-grid .indicator.active {
  background: rgba(0, 110, 127, 0.9);
}

.home-compare-wrapper {
  border-radius: 1.75rem;
  border: 1px solid rgba(0, 110, 127, 0.12);
  overflow: hidden;
  box-shadow: 0 34px 70px -28px rgba(13, 30, 42, 0.4);
  backdrop-filter: blur(18px);
}

.home-compare-table {
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  width: 100%;
}

.home-compare-table thead th {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0d1f29;
  background: linear-gradient(135deg, rgba(148, 10, 55, 0.12), rgba(0, 110, 127, 0.12));
  border-bottom: 1px solid rgba(13, 30, 42, 0.08);
}

.home-compare-table thead th:first-child {
  border-top-left-radius: 1.75rem;
}

.home-compare-table thead th:last-child {
  border-top-right-radius: 1.75rem;
}

.home-compare-table thead th span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(15, 35, 47, 0.6);
}

.home-compare-table tbody td {
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  color: rgba(13, 23, 33, 0.78);
  border-bottom: 1px solid rgba(13, 23, 33, 0.08);
  backdrop-filter: blur(8px);
}

.home-compare-table tbody tr:nth-child(even) {
  background: rgba(0, 110, 127, 0.06);
}

.home-compare-table tbody tr:hover {
  background: rgba(0, 110, 127, 0.1);
}

.home-compare-actions td {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: none;
  background: rgba(255, 255, 255, 0.85);
}

.home-glass-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 110, 127, 0.4);
  background-color: #006E7F;
  color: #f8fbff;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  backdrop-filter: blur(16px);
}

.home-glass-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 55px -24px rgba(0, 110, 127, 0.45);
  background-color: #005a68;
}

.home-glass-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 110, 127, 0.35);
}

.home-glass-button-light {
  background-color: #ffffff;
  color: #0d1f29;
  border: 1px solid rgba(0, 110, 127, 0.25);
}

.home-glass-button-light:hover {
  box-shadow: 0 22px 45px -22px rgba(0, 110, 127, 0.3);
  background-color: #f3f8f9;
}

.home-glass-button-outline {
  background: transparent;
  border: 1px solid rgba(0, 110, 127, 0.45);
  color: #f9fbff;
}

.home-glass-button-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.home-faq-list {
  margin-top: 2.5rem;
}

.home-faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(245, 247, 248, 0.92)) !important;
  border: 1px solid rgba(0, 110, 127, 0.12) !important;
  border-radius: 1.4rem !important;
  box-shadow: 0 26px 60px -28px rgba(0, 12, 22, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-faq-item:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 110, 127, 0.25);
  box-shadow: 0 32px 72px -26px rgba(0, 12, 22, 0.4);
}

.home-section-dark .home-faq-item {
  background: linear-gradient(135deg, rgba(18, 26, 34, 0.92), rgba(18, 26, 34, 0.82)) !important;
  border: 1px solid rgba(18, 26, 34, 0.45) !important;
  color: #f6f8fb;
}

.home-section-dark .home-faq-item .faq-question,
.home-section-dark .home-faq-item .faq-symbol,
.home-section-dark .home-faq-item .faq-answer {
  color: #f6f8fb !important;
}

.home-section-cta .home-section-title {
  color: #ffffff;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.home-section-cta .home-section-subtitle {
  color: rgba(255, 255, 255, 0.82);
}

.home-section-cta .home-glass-button {
  margin: 0 auto;
}

.home-section-cta .home-glass-button-outline {
  border-color: rgba(255, 255, 255, 0.65);
}

.home-section-cta .home-glass-button-outline:hover {
  background: #ffffff !important;
  color: #000000 !important;
  box-shadow: 0 20px 45px -20px rgba(0, 0, 0, 0.45);
}

.home-section-cta .home-glass-button-outline:hover {
  box-shadow: 0 20px 45px -20px rgba(0, 0, 0, 0.45);
}

.home-section-gradient .home-advantage-card {
  background: linear-gradient(145deg, rgba(0, 110, 127, 0.2), rgba(0, 110, 127, 0.12));
  border: 1px solid rgba(0, 110, 127, 0.3);
}

.home-section-gradient .home-advantage-card h3 {
  color: #f9fbff;
}

.home-section-gradient .home-advantage-card p {
  color: rgba(235, 240, 241, 0.85);
}
/* Smooth Scroll */
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #940A37 #0b0b0b;
}

body {
  background-color: var(--white);
}

body.home-page::-webkit-scrollbar {
  width: 12px;
}

body.home-page::-webkit-scrollbar-track {
  background: #0b0b0b;
  border-radius: 12px;
}

body.home-page::-webkit-scrollbar-thumb {
  background: #940A37;
  border-radius: 12px;
  border: 2px solid #0b0b0b;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.45);
}

body.home-page::-webkit-scrollbar-thumb:hover {
  background: #b30d48;
}

/* ==========================================
   GLOBAL ANIMATIONS
   ========================================== */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes revealLetter {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(-6px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes orbitGlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease;
}

.slide-up {
  animation: slideUp 0.8s ease;
}

/* ==========================================
   AFILIADOS PAGE STYLES
   ========================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(148, 10, 55, 0.18), rgba(15, 209, 193, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  color: rgba(255, 255, 255, 0.75);
}

.section-title {
  font-size: clamp(2.25rem, 2vw + 1.5rem, 2.9rem);
  font-weight: 800;
  line-height: 1.2;
}

.section-subtitle {
  color: rgba(231, 233, 241, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
}

.glass-stats-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(15, 209, 193, 0.08), rgba(148, 10, 55, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(22px);
  overflow: hidden;
}

.glass-stats-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.06), transparent 55%);
  pointer-events: none;
}

.affiliate-step-card {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(15, 209, 193, 0.06);
  border: 1px solid rgba(15, 209, 193, 0.12);
  backdrop-filter: blur(16px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.affiliate-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(15, 209, 193, 0.25);
  border-color: rgba(15, 209, 193, 0.3);
}

.affiliate-step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

.affiliate-step-card p {
  color: rgba(231, 233, 241, 0.78);
  line-height: 1.65;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(148, 10, 55, 0.45), rgba(15, 209, 193, 0.45));
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #fff;
}

.benefit-card {
  position: relative;
  padding: 2.4rem 2rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(15, 209, 193, 0.08));
  backdrop-filter: blur(18px);
  box-shadow: 0 25px 40px -18px rgba(0, 0, 0, 0.55);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: rgba(15, 209, 193, 0.28);
  box-shadow: 0 25px 60px -18px rgba(15, 209, 193, 0.35);
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(15, 209, 193, 0.14);
  color: #0FD1C1;
  font-size: 1.35rem;
}

.highlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.15rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  font-size: 0.95rem;
}

.highlight-chip i {
  font-size: 1.1rem;
}

.glass-panel {
  position: relative;
  border-radius: 2rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(15, 209, 193, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 25px 60px -20px rgba(15, 209, 193, 0.35);
  backdrop-filter: blur(22px);
}

.affiliate-form {
  position: relative;
  overflow: hidden;
}

.affiliate-form::before {
  content: '';
  position: absolute;
  inset: -50% -50%;
  background: conic-gradient(from 90deg, rgba(148, 10, 55, 0.18), rgba(15, 209, 193, 0.18), rgba(148, 10, 55, 0.18));
  animation: shimmer 10s linear infinite;
  opacity: 0.35;
}

.affiliate-form::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 1.9rem;
  background: rgba(10, 13, 24, 0.85);
  backdrop-filter: blur(12px);
  z-index: 0;
}

.affiliate-form > * {
  position: relative;
  z-index: 1;
}

.form-floating {
  position: relative;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1.1rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 9, 15, 0.65);
  color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-size: 0.95rem;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(15, 209, 193, 0.6);
  box-shadow: 0 0 0 3px rgba(15, 209, 193, 0.15);
}

.form-label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  transition: all 0.25s ease;
  background: linear-gradient(135deg, rgba(7, 9, 15, 0.85), rgba(7, 9, 15, 0.9));
  padding: 0 0.35rem;
  border-radius: 0.75rem;
}

.form-input:not(:placeholder-shown) + .form-label,
.form-input:focus + .form-label,
.form-textarea:not(:placeholder-shown) + .form-label,
.form-textarea:focus + .form-label {
  top: -8px;
  font-size: 0.7rem;
  color: #0FD1C1;
  letter-spacing: 0.08em;
}

.affiliate-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.affiliate-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
