/* ═══════════════════════════════════════════════════
   cosmin.es — Hoja de estilos global
   Generado automáticamente · cosmin.es
═══════════════════════════════════════════════════ */


/* ── RESET & BASE ── */

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

nav {
  position: fixed;
  top: 0;
  left: 10vw;
  right: 10vw;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, 6%);
  height: 72px;
  background: #fff;
  border-bottom: 1px solid #000;
}

.nav-logo { height: 50px; display: block; }

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

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a:hover { text-decoration: underline; }

/* ── FOOTER ── */

footer img { height: 20px; opacity: 0.7; }

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a:hover { opacity: 1; }

/* ── HAMBURGER & MOBILE MENU ── */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #000;
  transition: transform 0.2s, opacity 0.15s;
  margin: 0 auto;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }

.nav-toggle.open span:nth-child(2) { opacity: 0; }

.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 10vw;
  right: 10vw;
  background: #fff;
  border-bottom: 2px solid #000;
  z-index: 98;
}

.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  padding: 18px max(24px, 6%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #f0f0f0;
}

.nav-mobile a:last-child { border-bottom: none; }

.nav-mobile a:active { background: #f8f8f8; }

/* ════════════════════════════════════
   ESTILOS POR PÁGINA
════════════════════════════════════ */

/* ── INDEX ── */

body {
  font-family: 'Raleway', sans-serif;
  background: #fff;
  color: #000;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/* ── NAV ── */

.nav-links a.active { border-bottom: 2px solid #000; padding-bottom: 2px; }

main { padding-top: 72px; }

/* ── HERO ── */

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(24px, 6%);
  border-bottom: 1px solid #000;
}

.hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0.5;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 920px;
  margin-bottom: 32px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  max-width: 540px;
  opacity: 0.65;
  margin-bottom: 56px;
  line-height: 1.7;
}

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

.btn {
  display: inline-block;
  padding: 16px 40px;
  border: 1.5px solid #000;
  text-decoration: none;
  color: #000;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
  background: transparent;
}

.btn:hover { background: #000; color: #fff; }

.btn--filled { background: #000; color: #fff; }

.btn--filled:hover { background: transparent; color: #000; }

/* ── SERVICES STRIP ── */

.services-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid #000;
}

.service-card {
  padding: 48px 36px;
  border-right: 1px solid #000;
}

.service-card:last-child { border-right: none; }

.service-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.35;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card p {
  font-size: 13px;
  opacity: 0.65;
  line-height: 1.6;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/* ── ABOUT STRIP ── */

.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #000;
}

.about-text {
  padding: 100px max(24px, 6%);
  border-right: 1px solid #000;
}

.about-text .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 28px;
  display: block;
}

.about-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 15px;
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 40px;
}

.about-stats {
  padding: 100px max(24px, 6%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
}

.stat-item .stat-num {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-item .stat-label {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.55;
}

/* ── CTA BANNER ── */

.cta-banner {
  padding: 100px max(24px, 6%);
  background: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid #000;
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 600px;
}

.btn--white {
  border-color: #fff;
  color: #fff;
}

.btn--white:hover { background: #fff; color: #000; }

footer {
  border-top: 1px solid #000;
  padding: 36px max(24px, 6%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  gap: 24px;
}

.footer-links a {
  text-decoration: none;
  color: #000;
  opacity: 0.55;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-copy { opacity: 0.4; font-size: 11px; }

/* ── RESPONSIVE ── */

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 24px; }
  .hero { padding: 60px 24px; }
  .services-strip { grid-template-columns: 1fr 1fr; }
  .service-card { border-right: 1px solid #000; border-bottom: 1px solid #000; }
  .service-card:nth-child(even) { border-right: none; }
  .about-strip { grid-template-columns: 1fr; }
  .about-text { border-right: none; border-bottom: 1px solid #000; padding: 60px 24px; }
  .about-stats { padding: 60px 24px; flex-direction: row; flex-wrap: wrap; }
  .cta-banner { padding: 60px 24px; flex-direction: column; align-items: flex-start; }
  footer { padding: 32px 24px; flex-direction: column; text-align: center; gap: 20px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 600px) {
  body { max-width: 100%; }
  nav { left: 0; right: 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { left: 0; right: 0; }
  .services-strip { grid-template-columns: 1fr; }
  .service-card { border-right: none; }
}

/* ── SERVICIOS ── */

.nav-links a.active { border-bottom: 2px solid #000; padding-bottom: 2px; }

/* ── PAGE HEADER ── */

.page-header {
  padding: 80px max(24px, 6%) 60px;
  border-bottom: 1px solid #000;
}

.page-header .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 24px;
  display: block;
}

.page-header h1 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.page-header p {
  font-size: 17px;
  opacity: 0.6;
  max-width: 560px;
  line-height: 1.7;
}

/* ── SERVICE BLOCK ── */

.service-block {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  border-bottom: 1px solid #000;
  min-height: 280px;
}

.service-block:nth-child(even) .service-content {
  background: #f9f9f9;
}

.service-num-col {
  padding: 48px 0 48px 60px;
  border-right: 1px solid #000;
  display: flex;
  align-items: flex-start;
}

.service-content {
  padding: 48px 48px 48px 48px;
  border-right: 1px solid #000;
}

.service-content h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  line-height: 1.15;
}

.service-content p {
  font-size: 15px;
  opacity: 0.65;
  line-height: 1.8;
  margin-bottom: 32px;
}

.service-detail {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.detail-list {
  list-style: none;
  margin-bottom: 32px;
}

.detail-list li {
  font-size: 14px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  flex-shrink: 0;
}

.detail-list li:last-child { border-bottom: none; }

/* ── CTA BANNER ── */

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  .page-header { padding: 60px 24px 48px; }
  .service-block { grid-template-columns: 1fr; }
  .service-num-col { display: none; }
  .service-content { border-right: none; border-bottom: 1px solid #000; padding: 40px 24px; }
  .service-detail { padding: 40px 24px; }
  .cta-banner { padding: 60px 24px; flex-direction: column; align-items: flex-start; }
  footer { padding: 32px 24px; flex-direction: column; text-align: center; gap: 20px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 600px) {
  body { max-width: 100%; }
  nav { left: 0; right: 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { left: 0; right: 0; }
}

/* ── PRECIOS ── */


/* Botones a ancho completo dentro de las tarjetas de precios */
.pricing-card .btn { width: 100%; text-align: center; }


/* ── BUTTONS (scoped overrides for precios) ── */

/* ── SECTION SEPARATOR ── */

.section-sep {
  padding: 40px max(24px, 6%) 32px;
  border-bottom: 1px solid #000;
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.section-sep h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section-sep .section-sub {
  font-size: 14px;
  opacity: 0.5;
  font-weight: 500;
}

/* ── PRICING GRID 3 cols ── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #000;
}

.pricing-card {
  padding: 52px 44px 52px;
  border-right: 1px solid #000;
  display: flex;
  flex-direction: column;
}

.pricing-card:last-child { border-right: none; }

.pricing-card--featured {
  background: #000;
  color: #fff;
}

/* ── CARD HEADER ── */

.plan-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 12px;
  display: block;
}

.plan-name {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.1;
}

.plan-desc {
  font-size: 13px;
  opacity: 0.6;
  line-height: 1.75;
  margin-bottom: 36px;
}

/* ── PRICE ── */

.plan-price {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid;
}

.pricing-card--featured .plan-price { border-color: rgba(255,255,255,0.18); }

.pricing-card:not(.pricing-card--featured) .plan-price { border-color: #e0e0e0; }

.price-row { display: flex; align-items: baseline; gap: 4px; line-height: 1; }

.price-amount {
  font-size: 60px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-symbol {
  font-size: 28px;
  font-weight: 700;
  opacity: 0.7;
  align-self: flex-start;
  margin-top: 8px;
}

.price-period {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.5;
  margin-top: 8px;
  display: block;
}

/* ── FEATURES ── */

.plan-features {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
}

.plan-features li {
  font-size: 13px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.pricing-card--featured .plan-features li { border-color: rgba(255,255,255,0.1); }

.pricing-card:not(.pricing-card--featured) .plan-features li { border-color: #f0f0f0; }

.plan-features li:last-child { border-bottom: none; }

.plan-features li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  margin-top: 6px;
  opacity: 0.55;
}

/* ── NOTE ── */

.pricing-note {
  padding: 28px max(24px, 6%);
  border-bottom: 1px solid #000;
  font-size: 12px;
  opacity: 0.45;
  letter-spacing: 0.01em;
}

/* ── CUSTOM BLOCK ── */

.custom-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #000;
}

.custom-text {
  padding: 72px max(24px, 6%);
  border-right: 1px solid #000;
}

.custom-text h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.custom-text p {
  font-size: 15px;
  opacity: 0.6;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 400px;
}

.btn-cta {
  display: inline-block;
  padding: 16px 40px;
  border: 1.5px solid #000;
  text-decoration: none;
  color: #000;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.18s, color 0.18s;
}

.btn-cta:hover { background: #000; color: #fff; }

.custom-contact {
  padding: 72px max(24px, 6%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
}

.contact-item .ci-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.38;
  margin-bottom: 8px;
  display: block;
}

.contact-item a {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  display: block;
}

.contact-item a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */

@media (max-width: 1000px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card:nth-child(2) { border-right: none; }
  .pricing-card:nth-child(3) {
    grid-column: 1 / -1;
    border-right: none;
    border-top: 1px solid #000;
  }
  .pricing-card--featured:nth-child(3) { border-top-color: transparent; }
}

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  .page-header { padding: 60px 24px 48px; }
  .section-sep { padding: 32px 24px 24px; flex-direction: column; gap: 8px; }
  .custom-block { grid-template-columns: 1fr; }
  .custom-text { border-right: none; border-bottom: 1px solid #000; padding: 56px 24px; }
  .custom-contact { padding: 48px 24px; }
  .pricing-note { padding: 24px; }
  footer { padding: 32px 24px; flex-direction: column; text-align: center; gap: 20px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 680px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { border-right: none !important; border-bottom: 1px solid #000; grid-column: auto !important; }
  .pricing-card--featured { border-color: transparent; }
  .pricing-card { padding: 44px 24px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  body { max-width: 100%; }
  nav { left: 0; right: 0; }
  .nav-mobile { left: 0; right: 0; }
}

/* ── SOBRE NOSOTROS ── */

/* ── PAGE HEADER (sobre nosotros — grid 2 cols) ── */

.p-sobre .page-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}

.p-sobre .page-header h1 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.025em;
}

.page-header .intro {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.7;
  font-weight: 400;
}

/* ── MANIFESTO ── */

.manifesto {
  padding: 100px max(24px, 6%);
  border-bottom: 1px solid #000;
}

.manifesto p {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

/* ── VALUES ── */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #000;
}

.value-card {
  padding: 60px 48px;
  border-right: 1px solid #000;
}

.value-card:last-child { border-right: none; }

.value-num {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 24px;
  display: block;
  opacity: 0.1;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.value-card p {
  font-size: 14px;
  opacity: 0.6;
  line-height: 1.8;
}

/* ── APPROACH ── */

.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #000;
}

.approach-text {
  padding: 100px max(24px, 6%);
  border-right: 1px solid #000;
}

.approach-text .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 28px;
  display: block;
}

.approach-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.approach-text p {
  font-size: 15px;
  opacity: 0.65;
  line-height: 1.85;
  margin-bottom: 20px;
}

.approach-list {
  padding: 100px max(24px, 6%);
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.approach-list li {
  padding: 28px 0;
  border-bottom: 1px solid #e8e8e8;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 20px;
}

.approach-list li:first-child { border-top: 1px solid #e8e8e8; }

.approach-list .step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.3;
  flex-shrink: 0;
  width: 28px;
}

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  .page-header { padding: 60px 24px 48px; grid-template-columns: 1fr; gap: 24px; }
  .manifesto { padding: 60px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: none; border-bottom: 1px solid #000; }
  .value-card:last-child { border-bottom: none; }
  .approach { grid-template-columns: 1fr; }
  .approach-text { border-right: none; border-bottom: 1px solid #000; padding: 60px 24px; }
  .approach-list { padding: 60px 24px; }
  .cta-banner { padding: 60px 24px; flex-direction: column; align-items: flex-start; }
  footer { padding: 32px 24px; flex-direction: column; text-align: center; gap: 20px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 600px) {
  body { max-width: 100%; }
  nav { left: 0; right: 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { left: 0; right: 0; }
  .value-card { padding: 48px 24px; }
}

/* ── CONTACTO ── */

/* ── CONTACT LAYOUT ── */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #000;
  min-height: 600px;
}

/* ── FORM ── */

.form-col {
  padding: 72px max(24px, 6%);
  border-right: 1px solid #000;
}

.form-col h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

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

label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.5;
}

input, textarea, select {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1.5px solid #000;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 500;
  background: transparent;
  color: #000;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

input:focus, textarea:focus, select:focus {
  border-bottom-color: #000;
}

input::placeholder, textarea::placeholder {
  opacity: 0.3;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
  cursor: pointer;
}

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

.btn-submit {
  display: inline-block;
  padding: 18px 48px;
  border: 1.5px solid #000;
  background: #000;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  margin-top: 16px;
}

.btn-submit:hover { background: transparent; color: #000; }

.form-note {
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.4;
  line-height: 1.6;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/* ── CONTACT INFO ── */

.info-col {
  padding: 72px max(24px, 6%);
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.info-col h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-item .ci-value {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  display: block;
}

.contact-item .ci-sub {
  font-size: 13px;
  opacity: 0.5;
  margin-top: 4px;
}

/* ── DIVIDER ── */

.hours-block {
  padding-top: 40px;
  border-top: 1px solid #e8e8e8;
}

.hours-block .ci-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 16px;
  display: block;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.hours-row:last-child { border-bottom: none; }

.hours-day { opacity: 0.6; }

.hours-time { font-weight: 700; }

/* ── SUCCESS MESSAGE ── */

.success-msg {
  display: none;
  padding: 20px 0;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  border-top: 1px solid #000;
  margin-top: 24px;
}

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  .page-header { padding: 60px 24px 48px; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-col { border-right: none; border-bottom: 1px solid #000; padding: 56px 24px; }
  .info-col { padding: 56px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  footer { padding: 32px 24px; flex-direction: column; text-align: center; gap: 20px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ── SOPORTE ── */

/* ── HERO SOPORTE ── */

.support-hero {
  background: #000;
  color: #fff;
  padding: 100px max(24px, 6%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid #000;
}

.support-hero .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 24px;
  display: block;
}

.support-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.support-hero p {
  font-size: 17px;
  opacity: 0.7;
  line-height: 1.75;
  max-width: 420px;
}

/* ── PHONE BLOCK ── */

.phone-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.phone-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.4;
}

.phone-number {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.phone-number:hover { opacity: 0.75; }

.phone-hours {
  font-size: 13px;
  opacity: 0.45;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border: 1.5px solid #fff;
  background: #fff;
  color: #000;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

.btn-call:hover { background: transparent; color: #fff; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border: 1.5px solid #25D366;
  background: #25D366;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

.btn-whatsapp:hover { background: transparent; color: #25D366; }

/* ── STEPS ── */

.steps-section {
  padding: 80px max(24px, 6%);
  border-bottom: 1px solid #000;
}

.steps-section .section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 48px;
  display: block;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.step {
  padding: 0 48px 0 0;
  border-right: 1px solid #e8e8e8;
  margin-right: 48px;
}

.step:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.step-num {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  opacity: 0.07;
  margin-bottom: 20px;
  display: block;
}

.step h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  opacity: 0.6;
  line-height: 1.8;
}

/* ── DOWNLOAD SECTION ── */

.download-section {
  padding: 80px max(24px, 6%);
  border-bottom: 1px solid #000;
}

.download-header {
  margin-bottom: 56px;
}

.download-header .section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 20px;
  display: block;
}

.download-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.download-header p {
  font-size: 16px;
  opacity: 0.6;
  max-width: 560px;
  line-height: 1.75;
}

.download-block {
  max-width: 680px;
}

.btn-download-main {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 22px 40px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid #000;
  transition: background 0.18s, color 0.18s;
  margin-bottom: 36px;
}

.btn-download-main:hover { background: transparent; color: #000; }

.btn-download-main svg { flex-shrink: 0; }

.antivirus-notice {
  display: flex;
  gap: 20px;
  padding: 28px 32px;
  border: 1.5px solid #d4a017;
  background: #fffdf0;
  margin-bottom: 28px;
}

.antivirus-notice-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.antivirus-notice strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  color: #000;
}

.antivirus-notice p {
  font-size: 13px;
  color: #000;
  opacity: 0.65;
  line-height: 1.8;
  margin-bottom: 8px;
}

.antivirus-notice p:last-child { margin-bottom: 0; }

.download-note {
  font-size: 12px;
  opacity: 0.4;
  line-height: 1.75;
  max-width: 600px;
}

/* ── INFO STRIP ── */

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #000;
}

.info-item {
  padding: 48px max(24px, 6%);
  border-right: 1px solid #000;
}

.info-item:last-child { border-right: none; }

.info-item .info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 10px;
  display: block;
}

.info-item .info-value {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.info-item .info-sub {
  font-size: 13px;
  opacity: 0.5;
  margin-top: 6px;
}

/* ── RESPONSIVE ── */

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  .support-hero { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; }
  .steps-section { padding: 60px 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .step { border-right: none; padding-right: 0; margin-right: 0; border-bottom: 1px solid #e8e8e8; padding-bottom: 40px; }
  .step:last-child { border-bottom: none; padding-bottom: 0; }
  .download-section { padding: 60px 24px; }
  .download-cards { grid-template-columns: 1fr; }
  .download-card { border-right: none; border-bottom: 1px solid #000; }
  .download-card:last-child { border-bottom: none; }
  .info-strip { grid-template-columns: 1fr; }
  .info-item { border-right: none; border-bottom: 1px solid #000; padding: 36px 24px; }
  .info-item:last-child { border-bottom: none; }
  footer { padding: 32px 24px; flex-direction: column; text-align: center; gap: 20px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 600px) {
  body { max-width: 100%; }
  nav { left: 0; right: 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { left: 0; right: 0; }
  .phone-number { font-size: 36px; }
  .download-card { padding: 36px 24px; }
}

/* ── 404 ── */

/* ── NAV ── */

/* ── 404 MAIN ── */

.p404 main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.error-block {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px - 73px);
}

.error-left {
  padding: 80px max(24px, 6%);
  border-right: 1px solid #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.error-code {
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.85;
  opacity: 0.06;
  user-select: none;
  margin-bottom: 48px;
}

.error-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 20px;
  display: block;
}

.error-left h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.error-left p {
  font-size: 16px;
  opacity: 0.6;
  line-height: 1.75;
  max-width: 400px;
}

/* ── RIGHT PANEL ── */

.error-right {
  padding: 80px max(24px, 6%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
}

.error-right .section-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 28px;
  display: block;
}

/* ── LINKS LIST ── */

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

.nav-list li {
  border-bottom: 1px solid #f0f0f0;
}

.nav-list li:first-child {
  border-top: 1px solid #f0f0f0;
}

.nav-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  text-decoration: none;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.15s;
}

.nav-list a:hover { opacity: 0.5; }

.nav-list .arrow {
  font-size: 18px;
  opacity: 0.3;
}

/* ── CONTACT BLOCK ── */

.contact-mini {
  padding-top: 40px;
  border-top: 1px solid #e8e8e8;
}

.contact-mini .section-title { margin-bottom: 20px; }

.contact-mini a {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #000;
  text-decoration: none;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.contact-mini a:hover { text-decoration: underline; }

.contact-mini .sub {
  font-size: 13px;
  opacity: 0.45;
}

/* ── RESPONSIVE ── */

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  .error-block { grid-template-columns: 1fr; min-height: auto; }
  .error-left { padding: 60px 24px; border-right: none; border-bottom: 1px solid #000; }
  .error-code { font-size: 120px; }
  .error-right { padding: 60px 24px; }
  footer { padding: 32px 24px; flex-direction: column; text-align: center; gap: 20px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}