/* public/assets/css/style.css */
:root {
  --vesta-bg: #0b0d10;
  --vesta-card: rgba(255, 255, 255, 0.06);
  --vesta-border: rgba(255, 255, 255, 0.10);
  --vesta-text: rgba(255, 255, 255, 0.92);
  --vesta-muted: rgba(255, 255, 255, 0.60);
  --vesta-blue: #38bdf8;
  /* celeste */
}

body.vesta-body {
  background: radial-gradient(1200px 600px at 20% 0%, rgba(56, 189, 248, 0.12), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(56, 189, 248, 0.08), transparent 55%),
    var(--vesta-bg);
  color: var(--vesta-text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.letter-space {
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .95rem;
}

.vesta-nav {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vesta-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #fff;
  font-weight: 900;
}

.nav-link {
  color: rgba(255, 255, 255, 0.80) !important;
  border-radius: 10px;
  padding: .55rem .75rem !important;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
}

.section-pad {
  padding: 80px 0;
}

.section-title {
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.text-info {
  color: var(--vesta-blue) !important;
}

.vesta-hero {
  height: 92vh;
  min-height: 560px;
  position: relative;
}

.vesta-hero-slide {
  height: 92vh;
  min-height: 560px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.vesta-hero-slide .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.15));
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.vesta-btn,
.vesta-btn-primary {
  border-radius: 14px;
  padding: .65rem 1rem;
}

.vesta-btn-primary {
  background: var(--vesta-blue);
  border: none;
  color: #001018;
  font-weight: 700;
}

.vesta-btn-primary:hover {
  filter: brightness(1.05);
}

.vesta-frame {
  border-radius: 22px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
}

.mini-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-card i {
  font-size: 1.4rem;
  color: var(--vesta-blue);
}

.stat-card {
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
}

.stat-label {
  color: var(--vesta-muted);
}

.project-card {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform .18s ease, border-color .18s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.35);
}

.project-cover {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.project-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.project-card:hover .project-cover img {
  transform: scale(1.06);
}

.project-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: .35rem .6rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #fff;
  font-size: .75rem;
  letter-spacing: .12em;
}

.service-card {
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
}

.service-card i {
  font-size: 1.8rem;
  color: var(--vesta-blue);
}

.service-card h5 {
  margin: 10px 0 6px;
  color: #fff;
  font-weight: 800;
}

.team-card {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-social {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #fff;
  text-decoration: none;
}

.team-social:hover {
  border-color: rgba(56, 189, 248, 0.35);
  color: var(--vesta-blue);
}

.map-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.vesta-footer {
  background: rgba(0, 0, 0, 0.60);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vesta-links a {
  display: block;
  padding: .25rem 0;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.vesta-links a:hover {
  color: #fff;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-right: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #fff;
  text-decoration: none;
  transition: .15s ease;
}

.social-links a:hover {
  border-color: rgba(56, 189, 248, 0.35);
  color: var(--vesta-blue);
  transform: translateY(-2px);
}

.filter-btn.active {
  border-color: rgba(56, 189, 248, 0.55) !important;
  color: var(--vesta-blue) !important;
}

.detail-card {
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vesta-kv .kv-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vesta-kv .k {
  color: rgba(255, 255, 255, 0.55);
}

.vesta-kv .v {
  color: rgba(255, 255, 255, 0.90);
  font-weight: 600;
  text-align: right;
}

.gallery-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

@media (max-width: 991px) {

  .vesta-hero,
  .vesta-hero-slide {
    height: 86vh;
    min-height: 520px;
  }

  .gallery-img {
    height: 260px;
  }
}

/* ===== Antares Digital (Footer) ===== */
.antares-logo {
  max-width: 180px;
  width: 100%;
  opacity: .9;
  transition: opacity .2s ease, transform .2s ease;
}

.antares-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.antares-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  transition: .15s ease;
}

.antares-social a:hover {
  color: var(--vesta-blue);
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-2px);
}

/* ===== FOOTER PRO (PC + Mobile) ===== */
.vesta-footer {
  background: rgba(0, 0, 0, 0.60);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #fff;
  text-decoration: none;
  transition: .15s ease;
}

.footer-social a:hover {
  border-color: rgba(56, 189, 248, 0.35);
  color: var(--vesta-blue);
  transform: translateY(-2px);
}

.footer-links a {
  display: inline-block;
  padding: .28rem 0;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact .contact-item i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #fff;
}

.footer-contact .contact-item:hover span {
  color: #fff;
}

.footer-bottom {
  padding-top: 2px;
}

.dev-label {
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .75rem;
}

.antares-logo {
  height: 28px;
  width: auto;
  opacity: .9;
}

.dev-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #fff;
  text-decoration: none;
  transition: .15s ease;
}

.dev-social a:hover {
  border-color: rgba(56, 189, 248, 0.35);
  color: var(--vesta-blue);
  transform: translateY(-2px);
}

/* Mobile: apila y centra bien */
@media (max-width: 768px) {
  .footer-top {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact .contact-item {
    justify-content: center;
  }

  .dev-wrap {
    flex-direction: column;
    align-items: center;
  }

  .dev-brand {
    flex-direction: column;
    gap: 10px;
  }

  .antares-logo {
    height: 30px;
  }
}