/* ==========================================================================
   Vcreado brand tokens
   ========================================================================== */
:root {
  --vc-void: #04101C;
  --vc-navy: #071A2B;
  --vc-surface: #0D2A43;
  --vc-signal: #1687FF;
  --vc-signal-hover: #3a97ff;
  --vc-cyan: #20C7E8;
  --vc-light: #F5F8FB;
  --vc-white: #FFFFFF;
  --vc-ink: #10202F;
  --vc-muted: #66788A;
  --vc-line: #1D3A54;
  --vc-line-light: #E4EAF0;
  --vc-line-light-2: #D6DEE7;
  --vc-whatsapp: #25D366;
  --vc-navbar-height: 76px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--vc-navbar-height);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--vc-light);
  color: var(--vc-ink);
  overflow-x: hidden;
}

.vc-container {
  max-width: 1240px;
}

a {
  text-decoration: none;
}

/* Consistent visible focus state for accessibility (kept even where Bootstrap resets it) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--vc-signal);
  outline-offset: 3px;
  border-radius: 2px;
}

.vc-h1,
.vc-h2,
.navbar-brand,
.vc-footer-brand {
  font-family: 'Manrope', sans-serif;
}

.vc-grid-bg {
  background-image:
    linear-gradient(to right, rgba(245, 248, 251, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245, 248, 251, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ==========================================================================
   Section shells
   ========================================================================== */
.vc-dark-section {
  background-color: var(--vc-void);
}

.vc-section-light {
  background-color: var(--vc-light);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.vc-section-white {
  background-color: var(--vc-white);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.vc-border-top {
  border-top: 1px solid var(--vc-line-light);
}

.vc-border-bottom {
  border-bottom: 1px solid var(--vc-line-light);
}

@media (min-width: 992px) {
  .vc-section-light,
  .vc-section-white {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.vc-max-sm { max-width: 24rem; }
.vc-max-md { max-width: 32rem; }
.vc-max-lg { max-width: 36rem; }

/* ==========================================================================
   Navbar
   ========================================================================== */
.vc-navbar {
  height: var(--vc-navbar-height);
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.vc-navbar.is-scrolled {
  background-color: rgba(4, 16, 28, 0.95);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--vc-line);
}

.vc-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--vc-light) !important;
  letter-spacing: -0.01em;
}

.navbar-nav .nav-link,
#navLinksList .vc-nav-link {
  color: rgba(245, 248, 251, 0.8) !important;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

#navLinksList .vc-nav-link:hover {
  color: var(--vc-light) !important;
}

.vc-toggler {
  border: none;
  padding: 0.35rem;
}

.vc-toggler:focus {
  box-shadow: none;
}

.vc-toggler-icon {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(245, 248, 251, 0.9)' stroke-width='2.2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.vc-nav-cta {
  align-self: flex-start;
}

@media (max-width: 991.98px) {
  #navMenu {
    background-color: var(--vc-void);
    border-top: 1px solid var(--vc-line);
    margin-top: 0.5rem;
    padding: 1rem 0.25rem 1.5rem;
  }
  #navLinksList .vc-nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(29, 58, 84, 0.6);
  }
  .vc-nav-cta {
    width: 100%;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.vc-btn-primary {
  background-color: var(--vc-signal);
  border: 1px solid var(--vc-signal);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 2px;
  padding: 0.75rem 1.75rem;
}

.vc-btn-primary:hover,
.vc-btn-primary:focus {
  background-color: var(--vc-signal-hover);
  border-color: var(--vc-signal-hover);
  color: #fff;
}

.vc-btn-outline-light {
  background-color: transparent;
  border: 1px solid rgba(245, 248, 251, 0.25);
  color: var(--vc-light);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 2px;
  padding: 0.75rem 1.75rem;
}

.vc-btn-outline-light:hover,
.vc-btn-outline-light:focus {
  border-color: rgba(245, 248, 251, 0.6);
  color: var(--vc-light);
}

.vc-btn-link {
  color: var(--vc-signal);
  font-weight: 600;
  font-size: 0.9rem;
  background: none;
  border: none;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.vc-hero {
  padding-top: 10rem;
  padding-bottom: 6rem;
}

@media (min-width: 992px) {
  .vc-hero {
    padding-top: 12rem;
    padding-bottom: 8rem;
  }
}

.vc-eyebrow {
  color: var(--vc-cyan);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.vc-h1 {
  color: var(--vc-light);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 34rem;
}

@media (min-width: 576px) {
  .vc-h1 { font-size: 3rem; }
}

@media (min-width: 992px) {
  .vc-h1 { font-size: 3.4rem; }
}

.vc-hero-sub {
  margin-top: 1.75rem;
  color: rgba(245, 248, 251, 0.65);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 28rem;
}

.vc-hero-visual {
  max-width: 26rem;
}

.vc-pulse-dot {
  animation: vcPulse 2.4s ease-in-out infinite;
  transform-origin: center;
}

.vc-pulse-delay-1 { animation-delay: 0.6s; }
.vc-pulse-delay-2 { animation-delay: 1.2s; }

@keyframes vcPulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

/* ==========================================================================
   Typography helpers
   ========================================================================== */
.vc-h2 {
  color: var(--vc-ink);
  font-weight: 700;
  font-size: 1.875rem;
  letter-spacing: -0.01em;
}

@media (min-width: 992px) {
  .vc-h2 { font-size: 2.25rem; }
}

.vc-h2-light {
  color: var(--vc-light);
}

.vc-body-muted {
  color: var(--vc-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-top: 1rem;
}

.vc-intro-block,
.vc-products-heading {
  max-width: 36rem;
}

/* ==========================================================================
   Product cards
   ========================================================================== */
.vc-product-card {
  position: relative;
  height: 100%;
  background-color: var(--vc-white);
  border: 1px solid var(--vc-line-light);
  padding: 1.75rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.vc-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 135, 255, 0.4);
  box-shadow: 0 18px 40px -24px rgba(16, 32, 47, 0.35);
}

.vc-product-card:hover .vc-product-icon {
  transform: translate(2px, -2px);
}

.vc-product-card:hover .vc-product-arrow {
  transform: translate(2px, -2px);
}

.vc-product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.vc-product-number {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(102, 120, 138, 0.7);
}

.vc-product-icon {
  color: var(--vc-signal);
  transition: transform 0.3s ease;
}

.vc-product-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--vc-ink);
  margin-top: 1.5rem;
}

.vc-product-desc {
  color: var(--vc-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.vc-product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vc-signal);
  background: none;
  border: none;
  padding: 0;
}

.vc-product-arrow {
  transition: transform 0.3s ease;
}

.vc-product-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: var(--vc-signal);
  transition: width 0.3s ease;
}

.vc-product-card:hover .vc-product-underline {
  width: 100%;
}

/* ==========================================================================
   About
   ========================================================================== */
.vc-about-card {
  position: relative;
  background-color: var(--vc-navy);
  padding: 2rem;
  overflow: hidden;
}

@media (min-width: 992px) {
  .vc-about-card { padding: 2.5rem; }
}

.vc-about-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.vc-about-text {
  color: rgba(245, 248, 251, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

.vc-link-light:hover {
  color: var(--vc-light);
}

.vc-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  background-color: var(--vc-line);
  margin: 1.5rem 0;
}

.vc-icon-cyan { color: var(--vc-cyan); }
.vc-icon-signal { color: var(--vc-signal); }

/* ==========================================================================
   Why Vcreado
   ========================================================================== */
.vc-value-item {
  padding-top: 1.5rem;
  border-top: 1px solid var(--vc-line-light-2);
  height: 100%;
}

.vc-value-index {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--vc-signal);
}

.vc-value-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--vc-ink);
  margin-top: 0.75rem;
}

.vc-value-desc {
  color: var(--vc-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}

/* ==========================================================================
   Network visual section
   ========================================================================== */
.vc-network-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 992px) {
  .vc-network-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.vc-network-wrap {
  width: 100%;
  overflow: hidden;
}

/* ==========================================================================
   Contact / form
   ========================================================================== */
.vc-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vc-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--vc-ink);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.vc-contact-item:hover {
  color: var(--vc-signal);
}

.vc-contact-address {
  align-items: flex-start;
  line-height: 1.6;
  color: var(--vc-ink);
}

.vc-form {
  background-color: var(--vc-white);
  border: 1px solid var(--vc-line-light);
  padding: 1.75rem;
}

@media (min-width: 576px) {
  .vc-form { padding: 2.25rem; }
}

.vc-form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vc-ink);
  margin-bottom: 0.4rem;
}

.vc-form-control {
  border: 1px solid var(--vc-line-light-2);
  border-radius: 0;
  font-size: 0.9rem;
  color: var(--vc-ink);
  padding: 0.7rem 0.9rem;
}

.vc-form-control:focus {
  border-color: var(--vc-signal);
  box-shadow: none;
}

.vc-form-success {
  text-align: center;
  padding: 1.5rem 0.5rem;
}

.vc-form-success-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--vc-ink);
  margin-bottom: 0.25rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.vc-footer {
  background-color: var(--vc-void);
  border-top: 1px solid var(--vc-line);
  padding-top: 4rem;
}

.vc-footer-brand {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--vc-light);
}

.vc-footer-legal {
  color: rgba(245, 248, 251, 0.6);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.vc-footer-desc {
  color: rgba(245, 248, 251, 0.5);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 20rem;
}

.vc-footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(245, 248, 251, 0.4);
  margin-bottom: 1rem;
}

.vc-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.vc-footer-list a,
.vc-footer-list li {
  color: rgba(245, 248, 251, 0.65);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.vc-footer-list a:hover {
  color: var(--vc-light);
}

.vc-footer-address {
  line-height: 1.6;
  max-width: 20rem;
}

.vc-footer-bottom {
  border-top: 1px solid var(--vc-line);
  margin-top: 3rem;
  padding: 1.5rem 0;
}

.vc-footer-bottom p {
  color: rgba(245, 248, 251, 0.4);
  font-size: 0.75rem;
}

.vc-footer-legal-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  padding: 0;
  margin: 0;
}

.vc-footer-legal-list a {
  color: rgba(245, 248, 251, 0.45);
  font-size: 0.75rem;
  transition: color 0.2s ease;
}

.vc-footer-legal-list a:hover {
  color: var(--vc-light);
}

/* ==========================================================================
   Legal pages (Terms, Privacy, Refund) — shared page-header + prose styles
   ========================================================================== */
.vc-page-header {
  padding-top: 8.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 992px) {
  .vc-page-header {
    padding-top: 10.5rem;
    padding-bottom: 4.5rem;
  }
}

.vc-h1-sm {
  color: var(--vc-light);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 2.1rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

@media (min-width: 992px) {
  .vc-h1-sm { font-size: 2.6rem; }
}

.vc-page-updated {
  color: rgba(245, 248, 251, 0.5);
  font-size: 0.875rem;
  margin-top: 1rem;
}

.vc-legal-section {
  background-color: var(--vc-white);
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
}

@media (min-width: 992px) {
  .vc-legal-section {
    padding-top: 5.5rem;
    padding-bottom: 7rem;
  }
}

.vc-legal-content {
  max-width: 46rem;
}

.vc-legal-content h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--vc-ink);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.vc-legal-content > h2:first-child,
.vc-legal-content > *:first-child h2 {
  margin-top: 0;
}

.vc-legal-content h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--vc-ink);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.vc-legal-content p {
  color: var(--vc-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.vc-legal-content ul,
.vc-legal-content ol {
  color: var(--vc-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.vc-legal-content li {
  margin-bottom: 0.5rem;
}

.vc-legal-content strong {
  color: var(--vc-ink);
}

.vc-legal-content a {
  color: var(--vc-signal);
}

.vc-legal-content a:hover {
  text-decoration: underline;
}

.vc-legal-note {
  border: 1px solid var(--vc-line-light);
  border-left: 3px solid var(--vc-signal);
  background-color: var(--vc-light);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}

.vc-legal-note p {
  color: var(--vc-ink);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.vc-legal-toc {
  border: 1px solid var(--vc-line-light);
  padding: 1.5rem 1.75rem;
  margin-bottom: 3rem;
}

.vc-legal-toc p {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--vc-muted);
  margin-bottom: 0.9rem;
}

.vc-legal-toc ol {
  color: var(--vc-ink);
  font-size: 0.9rem;
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.vc-legal-toc li {
  margin-bottom: 0.45rem;
}

.vc-legal-toc a {
  color: var(--vc-ink);
}

.vc-legal-toc a:hover {
  color: var(--vc-signal);
}

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */
.vc-whatsapp-btn {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 1050;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--vc-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}

.vc-whatsapp-btn:hover {
  transform: scale(1.06);
}

.vc-whatsapp-btn:active {
  transform: scale(0.95);
}

@media (min-width: 576px) {
  .vc-whatsapp-btn {
    bottom: 1.75rem;
    right: 1.75rem;
  }
}

/* ==========================================================================
   Reveal animation base state (GSAP flips these on scroll)
   ========================================================================== */
[data-anim] {
  will-change: transform, opacity;
}
