/* =========================
   VARIABLES
   ========================= */
:root {
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --bg-dark: #111827;
  --surface: #ffffff;
  --text: #1f2937;
  --text-muted: #6b7280;
  --text-light: #f9fafb;
  --text-light-muted: #9ca3af;
  --accent: #e11d48;
  --accent-hover: #be123c;
  --border: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: url('../img/cursor-small.png') 24 24, auto;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   UTILIDADES
   ========================= */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.bg-alt {
  background: var(--bg-alt);
}

.bg-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.center {
  text-align: center;
}

.center-text {
  text-align: center;
}

.max-w-2 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-title.light {
  color: var(--text-light);
}

.section-title.underline {
  display: inline-block;
  position: relative;
}

.section-title.underline::after {
  content: '';
  display: block;
  width: 60%;
  height: 4px;
  background: var(--accent);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.section-desc.light-muted {
  color: var(--text-light-muted);
}

/* =========================
   HEADER
   ========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  margin-left: -0.75rem;
}

.logo img {
  height: 85px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-link:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.bar {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* =========================
   SERVICIOS HERO
   ========================= */
.services-hero {
  padding-top: 7rem;
}

.services-grid-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-box {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
}

.service-box:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-box-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.service-box-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.service-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.service-hover {
  position: absolute;
  inset: 0;
  background: rgba(225, 29, 72, 0.95);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius-lg);
}

.service-box:hover .service-hover {
  opacity: 1;
}

.service-hover ul {
  list-style: none;
  padding: 1rem;
  text-align: left;
}

.service-hover li {
  padding: 0.35rem 0;
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.2rem;
}

.service-hover li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* =========================
   LAYOUT DOS COLUMNAS
   ========================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > * {
  direction: ltr;
}

.col-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.col-text strong {
  color: var(--text);
  font-weight: 600;
}

/* =========================
   PHONE MOCKUP
   ========================= */
.phone-carousel {
  position: relative;
  width: 100%;
  max-width: 260px;
  height: 420px;
  margin: 0 auto;
  overflow: hidden;
}

.phone-mockup {
  position: absolute;
  top: 0;
  left: 100%;
  width: 220px;
  height: 420px;
  background: var(--text);
  border-radius: 28px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  transition: left 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.phone-mockup.active {
  left: 0;
  opacity: 1;
}

.phone-mockup.prev {
  left: -100%;
  opacity: 0;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 20px;
  background: var(--text);
  border-radius: 0 0 12px 12px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 20px;
  overflow: hidden;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: background var(--transition);
}

.dot.active {
  background: var(--accent);
}

/* Ocultar hero SEO visualmente sin quitar del DOM */
.seo-hero {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  pointer-events: none;
}

/* =========================
   LOGOS GRID (PAUTAS)
   ========================= */
.logos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 320px;
  margin: 0 auto;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow var(--transition);
}

.logo-item:hover {
  box-shadow: var(--shadow);
}

.logo-item svg,
.logo-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.logo-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* =========================
   VIDEO SHOWCASE
   ========================= */
.video-slider {
  position: relative;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: #000;
}

.video-track {
  display: flex;
  transition: transform 0.6s ease;
}

.video-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 9/16;
  background: #000;
}

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

.video-slide span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
  padding: 1rem 0.75rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* =========================
   IDENTIDAD VISUAL
   ========================= */
.identity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}

.identity-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  text-align: center;
}

.identity-preview {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.logo-preview {
  flex-direction: column;
  gap: 1rem;
}

.logo-sample {
  padding: 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
}

.logo-sample img {
  width: 100%;
  max-height: 140px;
  height: auto;
  object-fit: contain;
}

.merch-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.merch-item {
  width: 100%;
  max-width: 380px;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
}

.merch-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   FOTOGRAFÍAS TABS
   ========================= */
.photo-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.5rem;
}

.photo-tab {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color var(--transition);
}

.photo-tab:hover {
  color: var(--text);
}

.photo-tab.active {
  color: var(--accent);
}

.photo-tab.active::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.photo-panels {
  position: relative;
}

.photo-panel {
  display: none;
}

.photo-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.photo-carousel {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.photo-item {
  width: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* =========================
   LAPTOP MOCKUP
   ========================= */
.web-showcase {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.web-preview {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--bg);
}

.web-preview img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition);
}

.web-preview:hover img {
  transform: scale(1.02);
}

.web-preview span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  padding: 1rem 0.75rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* =========================
   E-COMMERCE SHOWCASE
   ========================= */
.gaesa-showcase {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg);
}

.gaesa-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.gaesa-brands {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-alt);
  flex-wrap: wrap;
}

.gaesa-brands img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter var(--transition), opacity var(--transition);
}

.gaesa-brands img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* =========================
   LETRAS CORPÓREAS
   ========================= */
.letters-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.letter-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--bg);
}

.letter-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.letter-img:hover img {
  transform: scale(1.05);
}

.letter-img span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  padding: 1rem 0.75rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
}

/* Material card hover overlay */
.material-card {
  cursor: pointer;
}

.material-card .material-overlay {
  position: absolute;
  inset: 0;
  background: rgba(180, 40, 40, 0.92);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  text-align: center;
}

.material-card:hover .material-overlay {
  opacity: 1;
}

.material-card:hover img {
  transform: scale(1.05);
}

.material-overlay h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.material-overlay p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px;
}

/* =========================
   CLIENTES
   ========================= */
.clients-marquee {
  overflow: hidden;
  margin-top: 2rem;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollLeft 30s linear infinite;
}

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

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 100px;
  flex-shrink: 0;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.client-logo:hover {
  box-shadow: var(--shadow);
  transform: scale(1.05);
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =========================
   CONTACTO
   ========================= */
.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.contact-title .accent-red {
  color: var(--accent);
}

.contact-subtitle {
  color: var(--text-light-muted);
  font-size: 1.1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: transform var(--transition);
}

.contact-item:hover {
  transform: translateX(4px);
}

.contact-item:hover .contact-detail h4 {
  color: var(--accent);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.contact-icon.red {
  background: var(--accent);
}

.contact-detail h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.2rem;
}

.contact-detail p {
  font-size: 0.95rem;
  color: var(--text-light-muted);
}

.contact-form-wrapper {
  background: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #3a3a3a;
  border: 1px solid #4a4a4a;
  border-radius: 0.5rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.error-msg {
  display: block;
  color: #f87171;
  font-size: 0.8rem;
  min-height: 1em;
}

.form-success {
  display: none;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid #34d399;
  color: #34d399;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
}

.form-success.show {
  display: block;
}

.btn-contact {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  background: #c53030;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background var(--transition), transform var(--transition);
}

.btn-contact:hover {
  background: #9b2c2c;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* =========================
   UBICACIÓN
   ========================= */
.ubicacion {
  background: #1a1f2e;
  color: var(--text-light-muted);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ubicacion h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 1.5rem;
}

.ubicacion-contenedor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ubicacion-mapa iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: block;
}

.abrir-maps {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #4285f4;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: 0.75rem;
  transition: color 0.2s ease;
}

.abrir-maps:hover {
  color: #5a95f5;
  text-decoration: underline;
}

.ubicacion-marca {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.ubicacion-marca img {
  max-width: 60%;
  height: auto;
}

.ubicacion-direccion {
  text-align: left;
  color: #e0e0e0;
  font-size: 1rem;
  margin: -0.5rem auto 1.5rem;
  max-width: 1200px;
  padding: 0 20px;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  color: #e0e0e0;
  width: 28px;
  height: 28px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  color: #ffffff;
  transform: scale(1.1);
}

.social-icons svg {
  width: 100%;
  height: 100%;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  margin-top: 1rem;
}

/* =========================
   FOOTER SIMPLE
   ========================= */
.footer-simple {
  background: #1a1f2e;
  color: var(--text-light-muted);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-simple .footer-copy {
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .two-col.reverse {
    direction: ltr;
  }

  .two-col.reverse > * {
    direction: ltr;
  }

  .services-grid-main {
    grid-template-columns: 1fr;
  }

  .identity-grid {
    grid-template-columns: 1fr;
  }

  .ecommerce-showcase {
    align-items: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 280px;
    height: 100vh;
    background: var(--bg);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    z-index: 999;
  }

  .nav.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .phone-mockup {
    width: 140px;
    height: 280px;
  }

  .photo-item {
    width: 100%;
    max-width: 320px;
  }

  .photo-item img {
    height: 300px;
  }

  .ubicacion-contenedor {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ubicacion-mapa iframe {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3rem 0;
  }

  .services-hero {
    padding-top: 5.5rem;
  }

  .seo-hero {
    padding-top: 6.5rem;
  }

  .logos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-tabs {
    gap: 1rem;
  }

  .photo-tab {
    font-size: 0.9rem;
  }

  .letters-showcase {
    gap: 0.75rem;
  }

  .letter-box {
    width: 60px;
    height: 80px;
    font-size: 2rem;
  }
}

/* =========================
   SEO HERO
   ========================= */
.seo-hero {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: var(--text-light);
  padding: 8rem 1.5rem 3rem;
  text-align: center;
}

.seo-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
}

.seo-hero p {
  font-size: 1.05rem;
  color: var(--text-light-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =========================
   LETRAS SEO TEXT
   ========================= */
.letters-content {
  margin: 1.5rem auto 2.5rem;
  max-width: 800px;
}

.letters-seo-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.letters-seo-text a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 500;
}


