@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Barlow:wght@400;500;600&display=swap');

:root {
  --yellow: #CCFF00;
  --black: #0a0a0a;
  --dark: #111111;
  --mid: #1a1a1a;
  --white: #ffffff;
  --gray: #888888;
  --light-gray: #f5f5f5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(204,255,0,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.nav-logo span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
}

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

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--yellow); }

.nav-cta {
  background: var(--yellow);
  color: var(--black) !important;
  padding: 10px 24px;
  font-weight: 800 !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.nav-cta:hover { background: #b8e600 !important; color: var(--black) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: 100px 40px 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(204,255,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--yellow);
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #bbbbbb;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover { background: #b8e600; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 28px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
}

.hero-logo-big {
  width: 320px;
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 0 60px rgba(204,255,0,0.3));
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--yellow);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--yellow);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 32px;
}

.marquee-dot { color: var(--black); opacity: 0.4; }

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

/* ── SECTIONS ── */
.section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--yellow);
}

.section-sub {
  font-size: 1rem;
  color: #aaaaaa;
  line-height: 1.7;
  max-width: 540px;
}

/* ── SERVICES ── */
.services-bg {
  background: var(--dark);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--mid);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  background: #222;
  border-bottom-color: var(--yellow);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: var(--white);
}

.service-card p {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.6;
}

/* ── BRANDS ── */
.brands-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.brands-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 40px;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.brand-chip {
  background: var(--mid);
  border: 1px solid #2a2a2a;
  padding: 12px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter---spacing: 0.08em;
  text-transform: uppercase;
  color: #ccc;
  transition: all 0.2s;
}

.brand-chip:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(204,255,0,0.05);
}

/* ── WHY US ── */
.why-bg { background: var(--dark); }

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--yellow);
  min-width: 32px;
  padding-top: 2px;
}

.why-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.why-item p {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.6;
}

.why-visual {
  background: var(--mid);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.why-visual::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(204,255,0,0.15) 0%, transparent 70%);
}

.big-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-transform: uppercase;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.big-quote em { color: var(--yellow); font-style: italic; }

.quote-sig {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  z-index: 1;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--yellow);
  padding: 80px 40px;
  text-align: center;
}

.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
  margin-bottom: 20px;
}

.cta-banner p {
  color: rgba(0,0,0,0.65);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--yellow);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: transform 0.2s;
}

.btn-dark:hover { transform: scale(1.03); }

/* ── NOSOTROS PAGE ── */
.page-hero {
  padding: 160px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(204,255,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 7rem);
  text-transform: uppercase;
  line-height: 0.9;
}

.page-hero h1 em { color: var(--yellow); font-style: italic; }

.page-hero p {
  margin-top: 24px;
  font-size: 1.1rem;
  color: #aaa;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--yellow);
  margin: 32px auto;
}

/* Mission / Vision cards */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}

.mv-card {
  background: var(--mid);
  padding: 48px 40px;
  border-top: 3px solid var(--yellow);
}

.mv-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow);
  margin-bottom: 16px;
}

.mv-card p {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.8;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.value-card {
  background: var(--mid);
  padding: 32px 24px;
  text-align: center;
  transition: background 0.2s;
}

.value-card:hover { background: #222; }

.value-icon { font-size: 2rem; margin-bottom: 12px; }

.value-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}

/* Team */
.team-section {
  background: var(--dark);
  padding: 100px 40px;
}

.team-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.team-img-wrap {
  position: relative;
}

.team-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.team-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
}

.team-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.team-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
}

.team-info p {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.8;
}

/* FAQ */
.faq-list { margin-top: 48px; }

.faq-item {
  border-bottom: 1px solid #222;
  padding: 28px 0;
}

.faq-q {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-q::before {
  content: 'P';
  background: var(--yellow);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 2px 7px;
  margin-top: 2px;
  flex-shrink: 0;
}

.faq-a {
  font-size: 0.95rem;
  color: #999;
  line-height: 1.7;
  padding-left: 36px;
}

/* ── CONTACTO PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

.contact-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-detail-icon {
  background: var(--yellow);
  color: var(--black);
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.contact-detail-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 4px;
}

.contact-detail-text a,
.contact-detail-text span {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.contact-detail-text a:hover { color: var(--yellow); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #333;
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(204,255,0,0.05);
}

/* Contact form */
.contact-form {
  background: var(--mid);
  padding: 48px 40px;
}

.contact-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #111;
  border: 1px solid #2a2a2a;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-group select option { background: #111; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  width: 100%;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  padding: 16px;
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.2s;
}

.btn-submit:hover { background: #b8e600; transform: translateY(-2px); }

/* Map placeholder */
.map-section {
  background: var(--dark);
  padding: 80px 40px;
}

.map-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.map-embed {
  margin-top: 40px;
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ── FOOTER ── */
footer {
  background: #050505;
  border-top: 1px solid #1a1a1a;
  padding: 60px 40px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

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

.footer-col a {
  color: #666;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #444;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 24px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-logo-big { width: 220px; height: 220px; }

  .services-inner,
  .section,
  .brands-section,
  .map-section { padding: 60px 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card { grid-template-columns: 1fr; }
  .team-img-wrap img { max-height: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 130px 24px 60px; }
  .team-section { padding: 60px 24px; }
  .cta-banner { padding: 60px 24px; }
}
