/* =============================================
   RAICOT ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Index Page Styles
   Estilos exclusivos de index.html
   Base compartida: shared.css
   ============================================= */

/* Extra variables only needed by index page */
:root {
  --hero-gradient: linear-gradient(165deg, #f0f4f8 0%, #fafbfc 40%, #f0fafa 100%);
  --mesh-1: rgba(93, 191, 189, 0.07);
  --mesh-3: rgba(93, 191, 189, 0.04);
  --illustration-bg: linear-gradient(145deg, rgba(93,191,189,0.06) 0%, rgba(28,37,64,0.03) 100%);
  --illustration-stroke: rgba(93, 191, 189, 0.5);
  --illustration-fill: rgba(93, 191, 189, 0.06);
}
@media (prefers-color-scheme: dark) {
  :root {
    --hero-gradient: linear-gradient(165deg, #0a0e17 0%, #0f1420 40%, #0d1a1f 100%);
    --mesh-1: rgba(93, 191, 189, 0.04);
    --mesh-3: rgba(93, 191, 189, 0.03);
    --illustration-bg: linear-gradient(145deg, rgba(93,191,189,0.08) 0%, rgba(28,37,64,0.12) 100%);
    --illustration-stroke: rgba(93, 191, 189, 0.6);
    --illustration-fill: rgba(93, 191, 189, 0.08);
  }
}

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* HERO */
.hero { min-height: calc(100vh - 64px); display: block; background: var(--hero-gradient); position: relative; overflow: hidden; padding-top: 0; }
.hero-mesh { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-mesh-blob { position: absolute; border-radius: 50%; filter: blur(80px); }
.hero-mesh-blob:nth-child(1) { width: 600px; height: 600px; top: -20%; right: -10%; background: radial-gradient(circle, rgba(var(--accent-rgb), 0.12) 0%, transparent 70%); animation: float 12s ease-in-out infinite; }
.hero-mesh-blob:nth-child(2) { width: 400px; height: 400px; bottom: -15%; left: -5%; background: radial-gradient(circle, rgba(var(--navy-rgb), 0.08) 0%, transparent 70%); animation: float 10s ease-in-out 2s infinite; }
.hero-mesh-blob:nth-child(3) { width: 300px; height: 300px; top: 30%; right: 25%; background: radial-gradient(circle, rgba(var(--accent-rgb), 0.06) 0%, transparent 70%); animation: float 8s ease-in-out 1s infinite; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 60px 60px; opacity: 0.4; mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 10%, transparent 100%); -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 10%, transparent 100%); }
.hero-content { position: relative; z-index: 2; max-width: 720px; padding: 4rem 0; }
.hero h1 { font-family: 'Lato', sans-serif; font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.015em; margin-bottom: 1.5rem; animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both; }
.hero h1 .accent-text { background: linear-gradient(135deg, var(--accent), #3adbd7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--text-secondary); line-height: 1.75; max-width: 540px; margin-bottom: 2.5rem; animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both; }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both; }

/* HERO VISUAL (SVG illustration) */
.hero-visual { position: absolute; right: -2%; top: 50%; transform: translateY(-50%); width: 520px; height: 520px; pointer-events: none; animation: fadeIn 1.2s ease 0.6s both; }
.hero-illustration { width: 100%; height: 100%; }
.hero-illustration svg { width: 100%; height: 100%; overflow: visible; }
@media (max-width: 1024px) { .hero-visual { display: none; } }

.hero-stats { display: flex; gap: 2.5rem; padding-top: 3rem; margin-top: 1.5rem; border-top: 1px solid var(--border); animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both; }
.hero-stat-value { font-family: 'Lato', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--text-primary); line-height: 1.2; }
.hero-stat-value span { color: var(--accent); }
.hero-stat-label { font-size: 0.9rem; color: var(--text-tertiary); margin-top: 0.2rem; }
@media (max-width: 480px) { .hero-stats { gap: 1.5rem; flex-wrap: wrap; } }

/* BRANDS MARQUEE */
.brands-strip { padding: 2.5rem 0; background: var(--bg-primary); border-bottom: 1px solid var(--border); overflow: hidden; position: relative; }
.brands-strip::before, .brands-strip::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.brands-strip::before { left: 0; background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 100%); }
.brands-strip::after { right: 0; background: linear-gradient(-90deg, var(--bg-primary) 0%, transparent 100%); }
.brands-track { display: flex; gap: 3.5rem; animation: marquee 30s linear infinite; width: max-content; }
.brand-item { font-family: 'Lato', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--text-tertiary); letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; opacity: 0.5; }
.brand-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); opacity: 0.5; align-self: center; }

/* PRODUCTS */
.products { padding: 7rem 0; background: var(--bg-primary); position: relative; }
.products::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 500px; background: radial-gradient(ellipse 50% 40% at 20% 0%, var(--mesh-1) 0%, transparent 100%), radial-gradient(ellipse 40% 50% at 80% 10%, var(--mesh-3) 0%, transparent 100%); pointer-events: none; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; }
@media (max-width: 900px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products-grid { grid-template-columns: 1fr; } }
.product-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 0; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden; }
.product-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), transparent); opacity: 0; transition: opacity 0.4s ease; z-index: 2; }
.product-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-lg), var(--shadow-glow); transform: translateY(-4px); }
.product-card:hover::before { opacity: 1; }
.product-illustration { width: 100%; height: 190px; background: #0f1524; display: block; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.product-illustration::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,12,20,0.08) 0%, rgba(8,12,20,0.25) 100%); z-index: 1; }
.product-illustration img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.01); transition: transform 0.45s ease; }
.product-card:hover .product-illustration img { transform: scale(1.06); }
.product-body { padding: 1.5rem 1.75rem 1.75rem; }
.product-card h3 { font-family: 'Lato', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.product-card p { font-size: 0.97rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap; }
.product-tag { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.3rem 0.7rem; background: var(--badge-bg); color: var(--badge-text); font-size: 0.82rem; font-weight: 600; border-radius: 6px; }
.product-store-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 38px;
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  border: 1px solid var(--border-hover);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.product-store-link svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
  fill: none;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.product-link-page {
  color: var(--text-primary);
  background: rgba(var(--accent-rgb), 0.08);
  border-color: rgba(var(--accent-rgb), 0.25);
}
.product-link-page:hover {
  background: rgba(var(--accent-rgb), 0.14);
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 6px 18px rgba(var(--accent-rgb), 0.16);
}
.product-link-page svg { stroke: var(--accent-dark); }

.product-link-store {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.28);
}
.product-link-store:hover {
  filter: brightness(1.05);
  box-shadow: 0 8px 22px rgba(var(--accent-rgb), 0.35);
}
.product-link-store svg { stroke: #ffffff; }

.product-store-link:hover svg { transform: translateX(3px); }
.product-card.featured { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.product-card.featured .product-illustration { height: 100%; min-height: 240px; border-bottom: none; border-right: 1px solid var(--border); border-radius: 16px 0 0 16px; }
.product-card.featured .product-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 560px) { .product-card.featured { grid-column: span 1; grid-template-columns: 1fr; } .product-card.featured .product-illustration { height: 180px; border-right: none; border-bottom: 1px solid var(--border); border-radius: 16px 16px 0 0; } }
.products-store-cta { text-align: center; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--border); position: relative; }
.products-store-cta p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 1.25rem; }
.products-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.products-store-cta .btn-primary,
.products-store-cta .btn-secondary {
  min-height: 52px;
  padding: 0.9rem 1.6rem;
  white-space: nowrap;
}
.products-store-cta .btn-secondary svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* STORE SHOWCASE */
.store-showcase { padding: 5rem 0; background: linear-gradient(180deg, var(--bg-primary) 0%, var(--section-alt) 100%); position: relative; overflow: hidden; }
.store-showcase::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(var(--accent-rgb), 0.04) 0%, transparent 100%); pointer-events: none; }
.store-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 768px) { .store-inner { grid-template-columns: 1fr; } }
.store-text h2 { font-family: 'Lato', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.15; margin-bottom: 1rem; letter-spacing: -0.02em; }
.store-text h2 span { color: var(--accent); }
.store-text > p { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.75rem; max-width: 460px; }
.store-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.store-feature { display: flex; align-items: center; gap: 0.75rem; font-size: 1rem; color: var(--text-secondary); }
.store-feature-check { width: 22px; height: 22px; min-width: 22px; background: var(--badge-bg); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.store-feature-check svg { width: 12px; height: 12px; stroke: var(--accent); stroke-width: 3; fill: none; }
.store-preview { position: relative; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.store-preview-bar { height: 40px; background: var(--bg-tertiary); border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0 1rem; gap: 0.5rem; }
.store-preview-dot { width: 8px; height: 8px; border-radius: 50%; }
.store-preview-dot:nth-child(1) { background: #ff5f57; }
.store-preview-dot:nth-child(2) { background: #febc2e; }
.store-preview-dot:nth-child(3) { background: #28c840; }
.store-preview-url { margin-left: 0.75rem; padding: 0.25rem 0.75rem; background: var(--bg-card); border-radius: 5px; font-size: 0.8rem; color: var(--text-tertiary); font-family: 'DM Sans', monospace; flex: 1; }
.store-preview-body { padding: 1.5rem; min-height: 220px; background: var(--illustration-bg); display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.store-preview-item { background: var(--bg-card); border-radius: 10px; border: 1px solid var(--border); overflow: hidden; }
.store-preview-item-img { height: 60px; background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.08), rgba(var(--navy-rgb), 0.06)); display: flex; align-items: center; justify-content: center; }
.store-preview-item-img svg { width: 24px; height: 24px; stroke: var(--accent); stroke-width: 1.5; fill: none; opacity: 0.6; }
.store-preview-item-info { padding: 0.5rem 0.6rem; }
.store-preview-item-info .bar { height: 6px; background: var(--code-bg); border-radius: 3px; margin-bottom: 0.35rem; }
.store-preview-item-info .bar-short { width: 60%; }
.store-preview-item-info .bar-price { width: 40%; height: 8px; background: rgba(var(--accent-rgb), 0.15); border-radius: 3px; margin-top: 0.4rem; }
@media (max-width: 480px) { .store-preview-body { grid-template-columns: repeat(2, 1fr); } .store-preview-item:nth-child(3) { display: none; } }

/* SERVICES */
.services { padding: 7rem 0; background: var(--section-alt); position: relative; }
.services::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 400px; background: radial-gradient(ellipse 50% 60% at 80% 100%, var(--mesh-1) 0%, transparent 100%), radial-gradient(ellipse 40% 50% at 10% 90%, var(--mesh-3) 0%, transparent 100%); pointer-events: none; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }
.service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; }
.service-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-number { font-family: 'Lato', sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--accent); letter-spacing: 0.08em; margin-bottom: 1.2rem; opacity: 0.7; }
.service-card h3 { font-family: 'Lato', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.98rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1.2rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.service-tag { padding: 0.25rem 0.6rem; background: var(--code-bg); color: var(--text-tertiary); font-size: 0.82rem; font-weight: 500; border-radius: 5px; }
.service-icon { width: 44px; height: 44px; background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), rgba(var(--accent-rgb), 0.03)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.service-icon svg { width: 22px; height: 22px; stroke: var(--accent); stroke-width: 1.8; fill: none; }

/* WHY US */
.why-us { padding: 7rem 0; background: var(--bg-primary); position: relative; }
.why-us::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 300px; background: radial-gradient(ellipse 60% 80% at 50% 0%, var(--mesh-1) 0%, transparent 100%); pointer-events: none; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { text-align: center; padding: 2.5rem 1.5rem; border-radius: 16px; border: 1px solid var(--border); background: var(--bg-card); transition: all 0.4s ease; position: relative; overflow: hidden; }
.why-card::after { content: ''; position: absolute; top: -30px; right: -30px; width: 80px; height: 80px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb), 0.06) 0%, transparent 70%); transition: all 0.4s ease; }
.why-card:hover::after { width: 120px; height: 120px; top: -40px; right: -40px; background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%); }
.why-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-icon { width: 60px; height: 60px; margin: 0 auto 1.5rem; background: var(--badge-bg); border-radius: 16px; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; position: relative; z-index: 1; }
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--accent), #3a8a88); box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3); }
.why-icon svg { width: 26px; height: 26px; stroke: var(--accent); stroke-width: 1.8; fill: none; transition: stroke 0.3s ease; }
.why-card:hover .why-icon svg { stroke: #fff; }
.why-card h3 { font-family: 'Lato', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.why-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; position: relative; z-index: 1; }

/* TRUST BANNER (index-specific overrides) */
.trust-inner { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.trust-banner h2 { font-family: 'Lato', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 1rem; letter-spacing: -0.02em; }
.trust-banner h2 span { color: var(--accent); }
.trust-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 2rem; }
.trust-banner .btn-primary { background: var(--accent); box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3); }

/* CONTACT */
.contact { padding: 7rem 0; background: var(--section-alt); position: relative; }
.contact::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 400px; background: radial-gradient(ellipse 50% 60% at 30% 0%, var(--mesh-1) 0%, transparent 100%); pointer-events: none; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; position: relative; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h2 { font-family: 'Lato', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.15; margin-bottom: 1rem; letter-spacing: -0.02em; }
.contact-info > p { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 2.5rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-method { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; transition: all 0.3s ease; }
.contact-method:hover { border-color: var(--border-hover); box-shadow: var(--shadow-sm); }
.contact-method-icon { width: 40px; height: 40px; min-width: 40px; background: var(--badge-bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.contact-method-icon svg { width: 18px; height: 18px; stroke: var(--accent); stroke-width: 2; fill: none; }
.contact-method-text strong { display: block; font-size: 0.95rem; font-weight: 600; margin-bottom: 0.15rem; }
.contact-method-text span { font-size: 0.92rem; color: var(--text-secondary); }
.contact-form-wrapper { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.contact-form-wrapper::before { content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), rgba(var(--accent-rgb), 0.2), var(--accent)); background-size: 200% 100%; animation: shimmer 3s linear infinite; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-note { text-align: center; font-size: 0.85rem; color: var(--text-tertiary); margin-top: 0.5rem; }

/* CONTACT SOCIAL ROW */
.contact-social { display: flex; gap: 0.6rem; margin-top: 1.5rem; flex-wrap: wrap; }
.contact-social a { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); transition: all 0.3s ease; }
.contact-social a svg { width: 16px; height: 16px; fill: var(--text-tertiary); stroke: var(--text-tertiary); transition: all 0.3s ease; }
.contact-social a:hover { border-color: var(--border-hover); box-shadow: var(--shadow-sm); color: var(--text-primary); }
.contact-social a:hover svg { fill: var(--accent); stroke: var(--accent); }

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider { position: relative; z-index: 2; min-height: calc(100vh - 64px); width: 100%; }

.hero-slider-controls {
  position: absolute; left: 0; right: 0; bottom: 1.25rem; z-index: 5;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.hero-slider-btn {
  width: 36px; height: 36px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--bg-card);
  color: var(--text-primary); cursor: pointer;
  font-size: 1.2rem; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
}
.hero-slider-btn:hover { border-color: var(--border-hover); }
.hero-slider-dots { display: flex; align-items: center; gap: 0.5rem; }
.hero-dot { width: 10px; height: 10px; border-radius: 999px; border: none; background: rgba(var(--accent-rgb), 0.3); cursor: pointer; }
.hero-dot.active { background: var(--accent); transform: scale(1.15); }

.hero-visual-card-wrap {
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  width: min(420px, 38vw); height: auto;
}
.hero-visual-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 18px; box-shadow: var(--shadow-lg), var(--shadow-glow); padding: 1.25rem;
}
.hero-visual-card-title { font-family: 'Lato', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.8rem; }
.hero-visual-card-item {
  padding: 0.55rem 0.7rem; border: 1px solid var(--border); border-radius: 10px;
  font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 0.55rem; background: var(--bg-secondary);
}
.hero-visual-card-item:last-child { margin-bottom: 0; }

@media (max-width: 1024px) {
  .hero-slide .hero-content { max-width: 100%; }
  .hero-visual, .hero-visual-card-wrap { display: none; }
}

/* HERO SLIDES */
.hero-slide {
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 15% 50%, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.32) 55%, rgba(0,0,0,0.22) 100%),
    linear-gradient(100deg, rgba(7,10,16,0.72) 0%, rgba(7,10,16,0.52) 42%, rgba(7,10,16,0.28) 100%);
}
.hero-slide .container {
  position: relative; z-index: 2;
  min-height: calc(100vh - 64px);
  display: flex; align-items: center; justify-content: flex-start;
  max-width: 1200px; margin: 0 auto;
  padding-left: clamp(1rem, 4vw, 3rem); padding-right: clamp(1rem, 4vw, 3rem);
}
.hero-slide .hero-content {
  width: min(100%, 760px); margin: 0; margin-right: auto;
  text-align: left; align-items: flex-start;
  display: flex; flex-direction: column;
  background: rgba(8, 12, 20, 0.48);
  border: 1px solid rgba(255,255,255,0.16); border-radius: 18px;
  padding: clamp(1rem, 2.2vw, 2rem);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.28);
}
.hero-slide .hero-actions, .hero-slide .hero-stats { justify-content: flex-start; }
.hero-slide .hero-stats {
  border-top: 1px solid rgba(255,255,255,0.22);
  padding-top: 1.25rem; margin-top: 1rem; width: 100%;
}
.hero-slide .hero-badge, .hero-slide h1, .hero-slide p, .hero-slide .hero-stat-value { color: #ffffff; }
.hero-slide p, .hero-slide .hero-stat-label { color: rgba(245,248,251,0.9); }

.slide-home { background-image: url('../img/hero/home-bg.jpg'), url('../img/hero/home-bg.svg'); }
.slide-equipos { background-image: url('../img/hero/equipos-bg.jpg'), url('../img/hero/equipos-bg.svg'); }
.slide-web { background-image: url('../img/hero/web-bg.jpg'), url('../img/hero/web-bg.svg'); }

.hero-slide .hero-visual, .hero-slide .hero-visual-card-wrap { display: none !important; }

@media (max-width: 1024px) {
  .hero-slide .hero-stats { gap: 1.25rem; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .hero-slide .hero-content { width: 100%; padding: 1rem; }
  .hero-slide .hero-actions { width: 100%; }
  .hero-slide .hero-actions a { width: 100%; justify-content: center; }
}

/* HERO VISIBILITY SAFETY FIX */
#heroSlider {
  position: relative;
  min-height: calc(100vh - 64px);
  overflow: hidden;
}
#heroSlider .hero-slide {
  position: relative !important;
  width: 100% !important;
  min-height: calc(100vh - 64px);
  display: none !important;
}
#heroSlider .hero-slide.active {
  display: block !important;
}
#heroSlider:not(.is-ready) .hero-slide:first-child {
  display: block !important;
}
#heroSlider .hero-slide .container { min-height: calc(100vh - 64px); }
