:root {
    --gold: #d4af37; /* Color dorado basado en tu logo */
    --black: #0a0a0a;
    --dark-grey: #1a1a1a;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    position: fixed;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo img {
    height: 80px;
}

/* Brand logo (text + badge) */
.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.nl-badge {
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex: 0 0 52px;
}

.nl-badge-top,
.nl-badge-bottom {
    color: #000;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 0.6px;
}

.nl-badge-line {
    width: 28px;
    height: 2px;
    background: #000;
    margin: 4px 0;
}

.nl-wordmark {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nl-title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.nl-tagline {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 600px) {
    .nl-title { font-size: 20px; }
    .nl-tagline { font-size: 12px; }
    .nl-badge { width: 44px; height: 44px; border-radius: 12px; flex-basis: 44px; }
    .nl-badge-top, .nl-badge-bottom { font-size: 10px; }
    .nl-badge-line { width: 24px; }
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.gold-text {
    color: var(--gold);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--white);
    transform: translateY(-3px);
}

/* Sections Global */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

section {
    padding: 100px 10%;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--dark-grey);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Clients */
.client-logos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.6;
}

.client-logo {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 20px;
}

/* Testimonials */
.testimonials {
    background: var(--dark-grey);
}

.testimonial-item {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-style: italic;
    font-size: 1.5rem;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: var(--dark-grey);
    border: 1px solid #333;
    color: white;
    font-family: inherit;
}

.map-container {
    height: 400px;
    border: 2px solid var(--gold);
}

footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #222;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .contact-container { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}

/* Client logos (images) */
.client-logo img {
    height: 60px;
    width: auto;
    display: block;
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
}


/* Botones del formulario */
.form-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* Rotador de testimonios */
.testimonial-item{
    display:none;
    opacity:0;
    transition: opacity 0.6s ease;
}
.testimonial-item.active{
    display:block;
    opacity:1;
}

/* =========================
   PROCESO 5 PASOS (reemplaza "Marcas que Confían")
   ========================= */
.process5{
  --bg0:#05060a;
  --bg1:#0b0f1a;
  --panel: rgba(12,16,30,.85);
  --panel2: rgba(18,24,45,.95);
  --text:#f3f6ff;
  --muted:#c3c9de;
  --yellow:#f4c84c;
}

.process5-wrap{
  width:min(1200px, 92vw);
  margin: 10px auto 0;
}

.process5-title{
  margin:0 0 10px;
  font-weight:900;
  letter-spacing:.6px;
  text-transform:uppercase;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height:.95;
  color: var(--text);
  text-shadow: 0 12px 40px rgba(0,0,0,.65);
}

.process5-sub{
  margin:0 0 22px;
  color: rgba(243,246,255,.72);
  font-size: 14px;
}

.process5-frame{
  position:relative;
  border-radius: 30px;
  padding: 34px 30px 40px;
  background:
    radial-gradient(1200px 700px at 30% 20%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(900px 700px at 70% 35%, rgba(255,255,255,.06), transparent 62%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.08);
  overflow:hidden;
}

.process5-path-layer{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
}
.process5-path-layer svg{ width:100%; height:100%; display:block; }

.process5-path-glow{
  fill:none;
  stroke: rgba(244,200,76,.28);
  stroke-width: 30;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: blur(1px);
}
.process5-path-main{
  fill:none;
  stroke: var(--yellow);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 14px 32px rgba(244,200,76,.25));
}

.process5-steps{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  gap: 70px;
  padding: 10px 10px 20px;
}

.process5-row{ position:relative; display:flex; }
.process5-left{ justify-content:flex-start; }
.process5-right{ justify-content:flex-end; }

.process5-card{
  position:relative;
  width: min(520px, 88%);
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--panel2), var(--panel));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 24px 60px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.process5-badge{
  position:absolute;
  width:54px; height:54px;
  border-radius:50%;
  display:grid; place-items:center;
  font-weight:900;
  color: rgba(255,255,255,.92);
  background: var(--bg0);
  border: 2px solid var(--yellow);
  box-shadow:
    0 12px 28px rgba(0,0,0,.55),
    0 0 0 6px rgba(244,200,76,.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  top: -26px;
}
.process5-left  .process5-badge{ left: -28px; }
.process5-right .process5-badge{ right: -28px; }

.process5-pill{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing:.35px;
  text-transform:uppercase;
  color:#fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  margin-bottom: 10px;
}

.process5-card h3{ margin:0 0 6px; font-size: 18px; letter-spacing:.2px; color: var(--text); }
.process5-card p{ margin:0; color: var(--muted); font-size: 14px; line-height:1.45; }

@media (max-width: 860px){
  .process5-frame{ padding: 26px 18px 30px; }
  .process5-steps{ gap: 56px; }
  .process5-right{ justify-content:flex-start; }
  .process5-right .process5-badge{ left:-28px; right:auto; }
  .process5-card{ width: 100%; }
}
