/* ==========================================================================
   ARONDIS — Premium Tech B2B Design System
   Palette: Negro #0D0D0D | Dorado Metálico #D4AF37 | Amarillo CTA #FFC107
   ========================================================================== */

:root {
  --arondis-gold:       #D4AF37;
  --arondis-gold-dim:   rgba(212, 175, 55, 0.2);
  --arondis-gold-glow:  rgba(212, 175, 55, 0.6);
  --arondis-cta:        #FFC107;
  --arondis-dark:       #0D0D0D;
  --arondis-dark2:      #111111;
  --arondis-card-bg:    rgba(255, 255, 255, 0.03);
  --arondis-text:       #ffffff;
  --arondis-subtext:    #AAAAAA;
  --arondis-footer-bg:  #080808;
  --font-primary:       'Poppins', 'Inter', sans-serif;
}

/* --------------------------------------------------------------------------
   Global Reset & Base
   -------------------------------------------------------------------------- */
body.arondis-dark-theme {
  background-color: var(--arondis-dark);
  font-family: var(--font-primary);
  color: var(--arondis-text);
  line-height: 1.75;
  margin: 0;
  padding: 0;
}

/* --------------------------------------------------------------------------
   Hero Section — Particle Canvas Background
   -------------------------------------------------------------------------- */
.arondis-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 160px 0 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--arondis-dark);
  overflow: hidden;
}

#arondis-particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.arondis-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.25) 0%,
    rgba(13, 13, 13, 0.50) 55%,
    rgba(13, 13, 13, 0.92) 85%,
    rgba(13, 13, 13, 1.00) 100%
  );
  z-index: 1;
}

.arondis-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Typography */
.arondis-hero-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 22px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9);
  letter-spacing: -0.01em;
}

.arondis-brand-text {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 7rem);
  color: var(--arondis-gold);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  line-height: 1;
}

.arondis-hero-subtext1 {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 400;
  color: #c8c8c8;
  margin-bottom: 10px;
  line-height: 1.65;
}

.arondis-hero-subtext2 {
  font-size: clamp(0.75rem, 1.4vw, 0.9rem);
  font-weight: 600;
  color: var(--arondis-subtext);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 55px;
}

/* Hero CTA Button — Outline Dorado Minimalista */
.btn-arondis-outline {
  display: inline-block;
  padding: 14px 42px;
  border: 1px solid var(--arondis-gold);
  border-radius: 6px;
  color: var(--arondis-gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-arondis-outline:hover {
  background: var(--arondis-gold);
  color: #000;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   Trust / Logos Section
   -------------------------------------------------------------------------- */
.arondis-logos-section {
  padding: 50px 0 70px;
  background-color: var(--arondis-dark);
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.arondis-logos-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.arondis-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.arondis-logo-item {
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%) brightness(1.1);
  display: flex;
  align-items: center;
}

.arondis-logo-item:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1.15) drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.arondis-logo-item img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   Services Cards Section — Glassmorphism Grid
   -------------------------------------------------------------------------- */
.arondis-cards-section {
  padding: 100px 0 110px;
  background-color: var(--arondis-dark);
}

/* Override Bootstrap .row for flex layout */
.arondis-cards-section .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
}

.arondis-cards-section .row::before,
.arondis-cards-section .row::after {
  display: none;
}

.arondis-cards-section [class*="col-"] {
  padding-left: 16px;
  padding-right: 16px;
}

/* Glassmorphism Card */
.arondis-card {
  background: var(--arondis-card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 32px 24px 28px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.arondis-card:hover {
  transform: translateY(-8px);
  border-color: var(--arondis-gold);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(212, 175, 55, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Card Icon */
.arondis-card-icon-container {
  text-align: center;
  margin-bottom: 22px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 16px;
}

.arondis-card-img {
  max-width: 160px;
  max-height: 160px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.15));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.arondis-card:hover .arondis-card-img {
  transform: translateY(-6px) scale(1.06);
  filter: drop-shadow(0 12px 24px rgba(212, 175, 55, 0.35));
}

/* Card Title */
.arondis-card-title {
  color: var(--arondis-gold);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Card Feature List */
.arondis-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.arondis-card-features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: #d0d0d0;
  font-size: 0.88rem;
  line-height: 1.55;
  font-weight: 400;
}

.arondis-card-features li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--arondis-gold);
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Card CTA Button — Sólido Amarillo */
.btn-arondis-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  background-color: var(--arondis-cta);
  color: #000000;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border: none;
  transition: all 0.28s ease;
  margin-top: auto;
  align-self: flex-start;
}

.btn-arondis-solid:hover {
  background-color: #ffce3a;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.35);
  text-decoration: none;
}

.btn-arondis-solid i {
  font-size: 0.82rem;
  font-weight: 900;
}

/* --------------------------------------------------------------------------
   Footer — 4 Columns, 14px, #AAAAAA links
   -------------------------------------------------------------------------- */
.arondis-footer {
  background-color: var(--arondis-footer-bg);
  padding: 70px 0 40px;
  color: var(--arondis-text);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.arondis-footer-col {
  margin-bottom: 32px;
}

.arondis-footer-brand {
  font-size: 1rem;
  font-weight: 800;
  color: var(--arondis-gold);
  margin-top: 0;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.arondis-footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.arondis-footer-text {
  color: var(--arondis-subtext);
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.6;
}

.arondis-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--arondis-subtext);
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.arondis-footer-contact-item i {
  font-size: 0.9rem;
  margin-top: 3px;
  color: var(--arondis-gold);
  flex-shrink: 0;
  width: 16px;
  opacity: 0.8;
}

.arondis-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.arondis-footer-links li {
  margin-bottom: 10px;
}

.arondis-footer-links a {
  color: var(--arondis-subtext);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s ease;
  line-height: 1.6;
}

.arondis-footer-links a:hover {
  color: #ffffff;
  text-decoration: none;
}

.arondis-footer-social {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.arondis-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(170, 170, 170, 0.35);
  border-radius: 50%;
  color: var(--arondis-subtext);
  font-size: 0.82rem;
  transition: all 0.25s ease;
  text-decoration: none;
}

.arondis-footer-social a:hover {
  color: #ffffff;
  border-color: var(--arondis-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   Scroll Up Button
   -------------------------------------------------------------------------- */
.scroll-up a {
  color: var(--arondis-gold);
}

/* --------------------------------------------------------------------------
   Responsive — Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .arondis-hero-section {
    padding: 130px 0 80px;
  }

  .arondis-cards-section {
    padding: 70px 0 80px;
  }

  .arondis-cards-section [class*="col-"] {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .arondis-hero-section {
    padding: 110px 0 70px;
    min-height: 90vh;
  }

  .arondis-brand-text {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .arondis-hero-subtext2 {
    letter-spacing: 1.5px;
  }

  .arondis-logos-row {
    gap: 28px;
  }

  .arondis-logo-item img {
    max-height: 44px;
  }

  .arondis-cards-section {
    padding: 60px 0 60px;
  }

  .arondis-card {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .arondis-footer {
    padding: 50px 0 30px;
  }
}

@media (max-width: 480px) {
  .arondis-hero-title {
    font-size: 1.75rem;
  }

  .btn-arondis-outline {
    padding: 12px 32px;
    font-size: 0.82rem;
  }

  .arondis-logos-row {
    gap: 20px;
  }

  .arondis-logo-item img {
    max-height: 36px;
  }
}