@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
  --bg:         #3E3F3F;
  --bg-card:    #484949;
  --border:     #555656;
  --text-body:  #9A999E;
  --text-title: #FFFFFF;
  --red:        #C64132;
  --red-hover:  #A53629;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: var(--text-body);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14.5px;
  line-height: 1.8;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

section {
  background-color: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--text-title);
}

h1 {
  font-weight: 900;
  letter-spacing: -1.5px;
}

h2 {
  font-weight: 900;
  letter-spacing: -0.5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

p {
  color: var(--text-body);
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

* {
  box-sizing: border-box;
}

/* COMPONENTS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--red);
  color: var(--text-title);
  padding: 15px 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
}
.btn-primary:hover {
  background-color: var(--red-hover);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--text-body);
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--red);
  color: var(--text-title);
}
.btn-ghost svg {
  margin-right: 8px;
}

.overline {
  display: flex;
  align-items: center;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.overline::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 2px;
  background-color: var(--red);
  margin-right: 10px;
}

input, select, textarea {
  width: 100%;
  background-color: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-title);
  padding: 11px 13px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s ease;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--red);
}
input:invalid:not(:placeholder-shown),
select:invalid {
  border-color: #C64132 !important;
}
select {
  appearance: none;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #2E2F2F;
  border-bottom: 1px solid var(--border);
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-symbol {
  width: 16px;
  height: 16px;
  background-color: var(--red);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--text-title);
  font-size: 14px;
  line-height: 1;
}

.logo-subtext {
  font-size: 7px;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.nav-center {
  display: flex;
  gap: 2rem;
}

.nav-center a {
  color: var(--text-title);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.nav-center a:hover {
  opacity: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-lang-switcher {
  font-size: 11px;
  letter-spacing: 2px;
  color: #9A999E;
  display: flex;
  gap: 8px;
  margin-right: 15px;
  align-items: center;
}

.nav-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* HERO */
.hero {
  position: relative;
  background-color: var(--bg);
  padding: 32px 2rem 0;
  border-bottom: 3px solid var(--red);
  overflow: hidden;
}

.eyebrow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 15px;
}

.eyebrow-line {
  flex: 1;
  max-width: 50px;
  height: 1px;
  background-color: var(--red);
  opacity: 0.3;
}

.hero-eyebrow {
  font-size: clamp(0.6rem, 1.2vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--red);
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-left {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

.hero-left h1 {
  color: var(--text-title);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-left h1 .highlight {
  color: var(--red);
}

.hero-subtitle {
  color: var(--text-body);
  font-size: 0.875rem;
  margin: 0 auto 2rem;
  max-width: 100%;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.trust-pill {
  color: var(--text-body);
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  padding: 5px 10px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.trust-pill::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: var(--red);
  border-radius: 50%;
  margin-right: 6px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-ctas-note {
  width: 100%;
  margin-top: 15px;
  font-size: 9.5px;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.hero-stat {
  padding: 1.1rem 1.5rem;
  border-right: 1px solid var(--border);
}

.hero-stat:last-child {
  border-right: none;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-title);
  letter-spacing: -1.5px;
  display: block;
  margin-bottom: 0.2rem;
}

.stat-num sup {
  color: var(--red);
  font-size: 1rem;
  top: -0.5em;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-body);
  font-weight: 600;
  display: block;
}

.stat-desc {
  font-size: 0.65rem;
  color: var(--text-body);
  opacity: 0.8;
}

/* TICKER */
.ticker {
  background-color: #2E2F2F;
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticker-text {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-body);
}

.ticker-text span {
  color: var(--red);
  font-weight: 800;
  letter-spacing: 3px;
  margin-right: 0.5rem;
}

/* NOSOTROS */
.nosotros {
  background-color: var(--bg);
  padding: 6rem 2rem;
}

.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nosotros-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.nosotros-left p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.nosotros-quote {
  border-left: 3px solid var(--red);
  background-color: var(--bg-card);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.quote-text {
  color: var(--text-title);
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.quote-cite {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  font-weight: 700;
}

.nosotros-right {
  display: flex;
  flex-direction: column;
}

.pillar {
  display: grid;
  grid-template-columns: 2rem 1fr;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}

.pillar:first-child {
  border-top: 1px solid var(--border);
}

.pillar-num {
  color: var(--text-body);
  font-size: 10px;
  font-family: monospace;
  font-weight: bold;
}

.pillar-content h4 {
  font-size: 0.83rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.pillar-content p {
  font-size: 0.76rem;
  margin: 0;
}

/* SERVICIOS */
.servicios {
  padding: 6rem 2rem;
}

.servicios h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
  max-width: 800px;
}

.servicios-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.servicio-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 1.75rem;
  position: relative;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.servicio-card:hover {
  background-color: #505151;
  border-color: var(--red);
}

.servicio-num {
  color: var(--text-body);
  font-family: monospace;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: bold;
  display: block;
  margin-bottom: 1.5rem;
}

.servicio-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.servicio-card p {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.servicio-tagline {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--red);
  text-transform: uppercase;
  display: block;
  margin-top: 1rem;
}

.cta-strip {
  background-color: var(--red);
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cta-strip-text {
  color: var(--text-title);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 0.2rem 0;
}

.cta-strip-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
}

.cta-strip .btn-white {
  background-color: var(--text-title);
  color: var(--red);
  padding: 14px 24px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.cta-strip .btn-white:hover {
  background-color: #f5f5f5;
}

/* CLIENTES CAROUSEL */
.clientes {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.clientes-sub {
  color: var(--text-body);
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.clientes-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.clientes-carousel::before,
.clientes-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.clientes-carousel::before {
  left: 0;
  background: linear-gradient(to right, #3E3F3F 0%, transparent 100%);
}

.clientes-carousel::after {
  right: 0;
  background: linear-gradient(to left, #3E3F3F 0%, transparent 100%);
}

.clientes-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll-left 35s linear infinite;
}

.clientes-track:hover {
  animation-play-state: paused;
}

.cliente-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 60px;
  padding: 0 2rem;
  flex-shrink: 0;
}

.cliente-item img {
  max-width: 120px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(2);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.cliente-item img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

.cliente-item span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #9A999E;
  white-space: nowrap;
}

.cliente-sep {
  color: #555656;
  font-size: 1.2rem;
  flex-shrink: 0;
  padding: 0 0.5rem;
}

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

/* POR QUÉ ELEGIRNOS */
.por-que {
  background-color: var(--bg);
  padding: 6rem 2rem;
}

.por-que h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
}

.por-que-lista {
  border-top: 1px solid var(--border);
  max-width: 1200px;
}

.pq-item {
  display: grid;
  grid-template-columns: 2.5rem 2.5rem 1fr 1.5fr;
  gap: 1.5rem;
  padding: 1.5rem 0.75rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  cursor: default;
  transition: all 0.15s ease;
  align-items: center;
}

.pq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background-color: var(--red);
  transition: width 0.2s ease;
}

.pq-item:hover {
  background-color: var(--bg-card);
  padding-left: 1.25rem;
}

.pq-item:hover::before {
  width: 2px;
}

.pq-icon {
  color: var(--text-body);
  transition: color 0.15s ease;
  display: flex;
  align-items: center;
}

.pq-item:hover .pq-icon {
  color: var(--red);
}

.pq-num {
  font-family: monospace;
  font-size: 12px;
  color: var(--text-body);
  font-weight: bold;
  transition: color 0.15s ease;
}

.pq-item:hover .pq-num {
  color: var(--red);
}

.pq-title {
  color: var(--text-title);
  font-weight: 700;
  font-size: 1rem;
}

.pq-desc {
  font-size: 0.85rem;
  margin: 0;
}

/* RESEÑAS GOOGLE */
.resenas {
  background-color: var(--bg);
  padding: 6rem 2rem;
}

.resenas-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-stars {
  color: var(--red);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.rating-num {
  font-weight: 900;
  font-size: 1.2rem;
}

.rating-text {
  color: var(--text-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.resenas-link {
  border: 1px solid var(--red);
  color: var(--red);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.resenas-link:hover {
  background-color: var(--red);
  color: var(--text-title);
}

.resenas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.resena-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  transition: background-color 0.2s ease;
}

.resena-card:hover {
  border-color: var(--red);
}

.resena-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.resena-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--border);
  color: var(--text-title);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.resena-info {
  display: flex;
  flex-direction: column;
}

.resena-name {
  color: var(--text-title);
  font-size: 0.85rem;
  font-weight: 700;
}

.resena-date {
  font-size: 0.7rem;
}

.resena-stars {
  color: var(--red);
  font-size: 0.9rem;
  margin-top: 2px;
}

.resena-text {
  font-size: 0.78rem;
  font-style: italic;
  position: relative;
  padding-left: 10px;
}

.resena-text::before {
  content: '"';
  position: absolute;
  left: -5px;
  top: -5px;
  color: var(--red);
  font-size: 1.5rem;
  font-family: serif;
  font-weight: bold;
  line-height: 1;
}

.resenas-nota {
  border-left: 2px solid var(--red);
  background-color: var(--bg-card);
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  font-family: monospace;
}

/* CONTACTO */
.contacto {
  background-color: #2E2F2F;
  padding: 6rem 2rem;
  border-top: 3px solid var(--red);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  max-width: 860px;
  margin: 0 auto;
}

.contacto-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.contacto-left h2 span {
  color: var(--red);
}

.contacto-sub {
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.contacto-lista {
  margin-bottom: 2.5rem;
}

.contacto-lista li {
  font-size: 0.78rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.contacto-lista li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: var(--red);
  border-radius: 50%;
  margin-right: 12px;
}

.contacto-promise {
  background-color: var(--bg);
  border-left: 2px solid var(--red);
  padding: 1rem 1.25rem;
  font-size: 0.76rem;
}

.contacto-form-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  padding: 2.5rem 2rem;
}

.form-title {
  color: var(--red);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  color: var(--text-body);
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

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

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0;
  margin-top: 2rem;
}

.form-note {
  text-align: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1rem;
}

/* FOOTER */
.footer {
  background-color: #2E2F2F;
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  color: var(--text-body);
  font-size: 9.5px;
  letter-spacing: 3px;
  font-weight: 800;
}

.footer-copy {
  color: var(--text-body);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .servicios-grid-4,
  .resenas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pq-item {
    grid-template-columns: 2rem 2rem 1fr;
  }
}

@media (max-width: 680px) {
  .nav-center {
    display: none;
  }
  
  .nav-right .btn-primary,
  .nav-pulse {
    display: none;
  }
  
  .nav-right {
    gap: 0.5rem;
  }
  
  .nav-lang-switcher {
    margin-right: 0;
  }
  
  .nav {
    padding: 0 1rem;
  }
}
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  
  .nosotros-grid,
  .contacto-grid {
    grid-template-columns: 1fr;
  }
  
  .servicios-grid-4,
  .resenas-grid {
    grid-template-columns: 1fr;
  }
  
  .pq-item {
    grid-template-columns: 2rem 2rem 1fr;
    gap: 0.5rem;
  }
  
  .pq-desc {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cta-strip {
    flex-direction: column;
    text-align: center;
  }
  
  .footer {
    flex-direction: column;
    text-align: center;
  }
}

/* --- INFRAESTRUCTURA LEGAL --- */

/* Checkbox Legal Formulario */
.legal-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.legal-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  accent-color: #C64132;
  margin-top: 2px;
  cursor: pointer;
}
.legal-check label {
  font-size: 0.75rem;
  color: #9A999E;
  line-height: 1.5;
  cursor: pointer;
}
.legal-check label a {
  color: #C64132;
  text-decoration: underline;
}
.legal-check label a:hover {
  color: #A53629;
}

/* Footer Legal Links */
.footer-copy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.footer-copy a {
  color: #9A999E;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 1px;
  transition: color 0.2s;
  text-transform: uppercase;
}
.footer-copy a:hover {
  color: #C64132;
}
.footer-sep {
  color: #555656;
  margin: 0 4px;
}

/* Banner de Cookies */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2E2F2F;
  border-top: 2px solid #C64132;
  z-index: 9999;
  padding: 1.5rem 2rem;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}
.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}
.cookie-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}
.cookie-desc {
  font-size: 0.8rem;
  color: #9A999E;
  line-height: 1.6;
}
.cookie-desc a {
  color: #C64132;
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn-reject {
  background: transparent;
  border: 1px solid #555656;
  color: #9A999E;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.cookie-btn-reject:hover {
  border-color: #9A999E;
  color: #FFFFFF;
}
.cookie-btn-accept {
  background: #C64132;
  border: none;
  color: #FFFFFF;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.cookie-btn-accept:hover {
  background: #A53629;
}

/* Hero Video */
.hero-video {
  margin: 1.5rem 0;
  width: 100%;
  max-width: 100%;
  background: #2E2F2F;
  border: 1px solid #555656;
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

@media (max-width: 680px) {
  .hero-video video {
    height: 120px;
  }
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #555656;
  margin: 3rem 0;
}

.blog-card {
  background: #484949;
  padding: 1.75rem;
  transition: border-color 0.2s;
  border: 1px solid transparent;
}

.blog-card:hover {
  border-color: #C64132;
  background: #505151;
}

.blog-card-category {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C64132;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-card-category::before {
  content: '';
  width: 14px;
  height: 1px;
  background: #C64132;
}

.blog-card h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card h2 a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card h2 a:hover {
  color: #C64132;
}

.blog-card-excerpt {
  font-size: 0.82rem;
  color: #9A999E;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.blog-card-meta {
  font-size: 0.72rem;
  color: #555656;
  margin-bottom: 1rem;
}

.blog-card-link {
  font-size: 0.75rem;
  color: #C64132;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.blog-card-link:hover {
  color: #A53629;
}

/* ARTÍCULO */
.article-header {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem 1rem;
  text-align: center;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem 2rem 4rem;
}

.article-body h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 2rem 0 0.75rem;
}

.article-body p {
  font-size: 0.95rem;
  color: #9A999E;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.article-meta {
  font-size: 0.78rem;
  color: #555656;
  margin: 0.5rem 0 2rem;
}

.breadcrumb {
  font-size: 0.75rem;
  color: #9A999E;
  padding: 1rem 2rem;
  max-width: 720px;
  margin: 0 auto;
}

.breadcrumb a {
  color: #9A999E;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #C64132;
}

.breadcrumb span {
  margin: 0 6px;
  color: #555656;
}

.blog-cta {
  background: #2E2F2F;
  border-left: 3px solid #C64132;
  padding: 1.5rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.blog-cta p {
  font-size: 0.95rem;
  color: #FFFFFF;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 680px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Additional Blog Styles */
.article-image {
  margin: 2rem 0;
}
.article-image-caption {
  font-size: 0.72rem;
  color: #555656;
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}
.article-list {
  margin: 1rem 0 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.article-list li {
  font-size: 0.95rem;
  color: #9A999E;
  line-height: 1.65;
}
.article-list li strong {
  color: #FFFFFF;
}
.article-note {
  background: #2E2F2F;
  border-left: 3px solid #C64132;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.article-note p {
  font-size: 0.85rem;
  color: #9A999E;
  margin: 0;
  line-height: 1.6;
}
.article-note strong {
  color: #C64132;
}
