/*
Theme Name:   Blas Child
Theme URI:    https://blascomunicacion.com
Description:  Child theme para Blas Comunicación — landing page corporativa 2026
Author:       BuzIT
Author URI:   https://buzit.com.uy
Template:     hello-elementor
Version:      1.0.0
Text Domain:  blas-child
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800&family=Inter:wght@400;500;600&display=swap');

/* ============================================================
   TOKENS DE DISEÑO
   ============================================================
   primary:     #FF3D00  — rojo acento, CTAs, highlights
   dark:        #111111  — hero, servicios, footer bg
   dark2:       #161616  — hover states, cards dark
   cream:       #F7F5F2  — sección nosotros
   light:       #F0F0F0  — fondo claro alternado
   white:       #FFFFFF  — texto sobre oscuro, forms
   muted:       #888888  — texto secundario
   dim:         #555555  — texto terciario
   border:      #F0F0F0  — bordes ligeros
   border-dark: #222222  — bordes en secciones oscuras
   ============================================================ */

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #111111;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   TIPOGRAFÍA GLOBAL
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: #111111;
}

/* ============================================================
   ELEMENTOR — OVERRIDES GLOBALES
   ============================================================ */

/* Quitar padding por defecto de secciones */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1200px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header,
.elementor-location-header {
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Nav links */
.elementor-nav-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555555;
  text-decoration: none;
  transition: color 0.2s;
}

.elementor-nav-menu a:hover {
  color: #FF3D00;
}

/* CTA nav button */
.nav-cta .elementor-button {
  background: #FF3D00;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 8px 18px;
  border: none;
  transition: background 0.2s;
}

.nav-cta .elementor-button:hover {
  background: #cc2f00;
}

/* ============================================================
   EYEBROW LABELS (reutilizable)
   ============================================================ */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #FF3D00;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #FF3D00;
  flex-shrink: 0;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.55);
}

.eyebrow-light::before {
  background: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   BOTONES
   ============================================================ */
.elementor-button.btn-primary {
  background: #FF3D00;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 13px 28px;
  border: none;
  transition: background 0.2s;
}

.elementor-button.btn-primary:hover {
  background: #cc2f00;
}

.elementor-button.btn-ghost {
  background: transparent;
  color: #888888;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: underline;
  border: none;
  padding: 13px 0;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.section-hero {
  background: #111111;
  min-height: 480px;
}

.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.0;
}

.hero-h1 .accent {
  color: #FF3D00;
}

.hero-sub {
  font-size: 14px;
  color: #888888;
  line-height: 1.8;
  max-width: 380px;
}

/* Panel derecho hero — bloques de color */
.hero-panel-right {
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.hero-color-block-1 {
  background: #FF3D00;
  opacity: 0.9;
}

.hero-color-block-2 {
  background: #222222;
}

.hero-color-block-3 {
  background: #1a1a1a;
}

.hero-color-block-4 {
  background: #FF3D00;
  opacity: 0.45;
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: #FF3D00;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.section-marquee {
  background: #FF3D00;
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

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

.marquee-item {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  flex-shrink: 0;
}

.marquee-sep {
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   SECCIÓN ESTADÍSTICAS / PROPUESTA DE VALOR
   ============================================================ */
.section-valor {
  background: #ffffff;
  padding: 72px 0;
}

.valor-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #111111;
  line-height: 1.1;
}

.valor-line {
  width: 32px;
  height: 3px;
  background: #FF3D00;
  margin-top: 16px;
}

/* Stat cards */
.stat-card {
  padding: 28px;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  transition: border-color 0.2s;
}

.stat-card:hover {
  border-color: #FF3D00;
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #FF3D00;
  line-height: 1;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999999;
  margin-top: 6px;
  line-height: 1.5;
}

/* ============================================================
   SECCIÓN SERVICIOS
   ============================================================ */
.section-services {
  background: #111111;
  padding: 72px 0;
}

.services-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #ffffff;
  line-height: 1.1;
}

/* Service card */
.service-card {
  background: #111111;
  padding: 32px 24px;
  border-bottom: 3px solid transparent;
  border-right: 1px solid #222222;
  transition: border-bottom-color 0.2s, background 0.2s;
  cursor: pointer;
  height: 100%;
}

.service-card:hover {
  border-bottom-color: #FF3D00;
  background: #161616;
}

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

.service-num {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #333333;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 12px;
  color: #555555;
  line-height: 1.7;
}

.service-arrow {
  font-size: 20px;
  color: #FF3D00;
  margin-top: 20px;
  display: block;
}

/* ============================================================
   SECCIÓN NOSOTROS
   ============================================================ */
.section-about {
  background: #F7F5F2;
  padding: 72px 0;
}

.about-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #111111;
  line-height: 1.1;
}

.about-text {
  font-size: 14px;
  color: #666666;
  line-height: 1.9;
  margin-top: 16px;
}

.about-quote {
  border-left: 3px solid #FF3D00;
  padding-left: 20px;
  margin-top: 24px;
}

.about-quote p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  font-style: italic;
  line-height: 1.6;
}

/* Clientes box */
.clients-box {
  background: #ffffff;
  border-radius: 4px;
  padding: 28px;
}

.clients-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bbbbbb;
  margin-bottom: 18px;
}

.client-logo-placeholder {
  height: 32px;
  background: #f5f5f5;
  border-radius: 3px;
}

/* ============================================================
   SECCIÓN CONTACTO
   ============================================================ */
.section-contact {
  background: #FF3D00;
  padding: 72px 0;
}

.contact-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #ffffff;
  line-height: 1.1;
}

.contact-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-top: 12px;
  max-width: 300px;
}

.contact-data-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  width: 72px;
  flex-shrink: 0;
}

.contact-data-value {
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}

.rrss-btn {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 8px 16px;
  border-radius: 2px;
  text-decoration: none;
  transition: border-color 0.2s;
}

.rrss-btn:hover {
  border-color: #ffffff;
}

/* Form wrapper sobre rojo */
.form-wrapper {
  background: #ffffff;
  border-radius: 4px;
  padding: 32px;
}

.form-wrapper label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999999;
  display: block;
  margin-bottom: 6px;
}

.form-wrapper input,
.form-wrapper textarea,
.elementor-field-group input,
.elementor-field-group textarea {
  width: 100%;
  background: #f7f7f7;
  border: 1px solid #eeeeee;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #111111;
  padding: 11px 14px;
  margin-bottom: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-wrapper input:focus,
.form-wrapper textarea:focus,
.elementor-field-group input:focus,
.elementor-field-group textarea:focus {
  border-color: #FF3D00;
}

.form-wrapper textarea,
.elementor-field-group textarea {
  min-height: 100px;
  resize: vertical;
}

.elementor-button.btn-form-submit {
  width: 100%;
  background: #FF3D00;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 13px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.elementor-button.btn-form-submit:hover {
  background: #cc2f00;
}

/* ============================================================
   FOOTER
   ============================================================ */
.elementor-location-footer,
.site-footer {
  background: #0a0a0a;
  padding: 20px 40px;
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-logo span {
  color: #FF3D00;
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  color: #333333;
}

/* ============================================================
   RESPONSIVE — MOBILE FIRST OVERRIDES
   ============================================================ */
@media (max-width: 768px) {
  .hero-h1 { font-size: 40px; }
  .valor-h2, .services-h2, .about-h2, .contact-h2 { font-size: 30px; }

  .section-hero,
  .section-valor,
  .section-services,
  .section-about,
  .section-contact {
    padding: 48px 0;
  }

  .stat-card { padding: 20px; }
  .service-card { border-right: none; border-bottom: 1px solid #222222; }

  .form-wrapper { padding: 20px; }
}
