/*
Theme Name:   Woodmart Child - Grupo Alternativas Solucione
Theme URI:    https://se.solucione.mx
Description:  Child theme for WoodMart - Grupo Alternativas Solucione
Author:       Grupo Alternativas Solucione
Template:     woodmart
Version:      1.0.0
Text Domain:  woodmart-child
*/

/* ============================================================
   IMPORTAR FUENTES - Inter + Roboto (Google Fonts)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

/* ============================================================
   VARIABLES CSS - PALETA CROMÁTICA OFICIAL
   Grupo Alternativas Solucione
   ============================================================ */
:root {
  /* Colores Primarios */
  --gas-blue:        #224b8d;   /* Pantone P102-16C - Azul corporativo */
  --gas-blue-dark:   #193a6e;   /* Variación oscura del azul */
  --gas-blue-light:  #2d5fa8;   /* Variación clara del azul */

  /* Colores Secundarios */
  --gas-red:         #b21621;   /* Pantone P48-16C - Rojo acento */
  --gas-green:       #8bb63c;   /* Pantone P154-8C - Verde éxito */
  --gas-orange:      #d8842e;   /* Pantone P121-15C - Naranja destaque */

  /* Grises y Neutros */
  --gas-black:       #211915;   /* Pantone Process Black C */
  --gas-dark-gray:   #413f3e;   /* Pantone P172-16C */
  --gas-gray:        #a2a1a1;   /* Pantone P176-2C */
  --gas-light-gray:  #f4f4f4;
  --gas-white:       #ffffff;

  /* Tipografías */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Tamaños de fuente */
  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg:   1.125rem;   /* 18px */
  --text-xl:   1.25rem;    /* 20px */
  --text-2xl:  1.5rem;     /* 24px */
  --text-3xl:  2rem;       /* 32px */
  --text-4xl:  2.5rem;     /* 40px */
  --text-5xl:  3.5rem;     /* 56px */

  /* Espaciados */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Sombras */
  --shadow-sm:  0 2px 8px rgba(34, 75, 141, 0.08);
  --shadow-md:  0 4px 16px rgba(34, 75, 141, 0.12);
  --shadow-lg:  0 8px 32px rgba(34, 75, 141, 0.16);

  /* Bordes */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;

  /* Transiciones */
  --transition: 0.25s ease;
}

/* ============================================================
   RESET Y BASE
   ============================================================ */
*,
*::before,
*::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--gas-black);
  background-color: var(--gas-white);
}

/* ============================================================
   TIPOGRAFÍA - HEADINGS
   ============================================================ */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--gas-black);
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 1rem;
}

h1, .h1 {
  font-size: var(--text-5xl);
  font-weight: 800;
  line-height: 1.05;
}

h2, .h2 {
  font-size: var(--text-4xl);
  font-weight: 700;
}

h3, .h3 {
  font-size: var(--text-3xl);
  font-weight: 700;
}

h4, .h4 {
  font-size: var(--text-2xl);
  font-weight: 600;
}

h5, .h5 {
  font-size: var(--text-xl);
  font-weight: 600;
}

h6, .h6 {
  font-size: var(--text-lg);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

/* Responsive headings */
@media (max-width: 768px) {
  h1, .h1 { font-size: 2.25rem; }
  h2, .h2 { font-size: 1.875rem; }
  h3, .h3 { font-size: 1.5rem; }
}

/* ============================================================
   LINKS
   ============================================================ */
a {
  color: var(--gas-blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gas-blue-dark);
}

/* ============================================================
   BOTONES PRINCIPALES
   ============================================================ */
.btn-primary,
.wd-btn-primary,
.woodmart-btn.btn-style-default,
.single_add_to_cart_button,
input[type="submit"],
button.submit {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  letter-spacing: 0.03em;
  background-color: var(--gas-blue);
  color: var(--gas-white);
  border: 2px solid var(--gas-blue);
  border-radius: var(--radius-sm);
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition), transform 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary:hover,
.wd-btn-primary:hover,
.woodmart-btn.btn-style-default:hover {
  background-color: var(--gas-blue-dark);
  border-color: var(--gas-blue-dark);
  color: var(--gas-white);
  transform: translateY(-1px);
}

.btn-secondary,
.wd-btn-secondary {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  background-color: transparent;
  color: var(--gas-blue);
  border: 2px solid var(--gas-blue);
  border-radius: var(--radius-sm);
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-secondary:hover {
  background-color: var(--gas-blue);
  color: var(--gas-white);
}

.btn-cta,
.wd-btn-cta {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  background-color: var(--gas-red);
  color: var(--gas-white);
  border: 2px solid var(--gas-red);
  border-radius: var(--radius-sm);
  padding: 0.9rem 2.25rem;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-cta:hover {
  background-color: #8e1019;
  border-color: #8e1019;
  color: var(--gas-white);
  transform: translateY(-1px);
}

/* ============================================================
   HEADER / NAVEGACIÓN
   ============================================================ */
.wd-header,
#site-header,
.site-header {
  background-color: var(--gas-white);
  border-bottom: 3px solid var(--gas-blue);
  box-shadow: var(--shadow-sm);
}

/* Logo */
.wd-logo,
.site-branding {
  max-height: 60px;
}

/* Menú de navegación */
.wd-nav li a,
.main-nav li a,
.navigation li a,
#site-navigation li a,
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--text-base);
  color: var(--gas-dark-gray);
  letter-spacing: 0.01em;
  transition: color var(--transition);
  padding: 0.5rem 1rem;
  text-decoration: none;
}

.wd-nav li a:hover,
.main-nav li a:hover,
.navigation li a:hover,
#site-navigation li a:hover,
.wd-nav li.current-menu-item > a,
.main-nav li.current-menu-item > a {
  color: var(--gas-blue);
}

/* Dropdown menú */
.wd-nav .sub-menu,
.main-nav .sub-menu {
  background-color: var(--gas-white);
  border-top: 3px solid var(--gas-blue);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.wd-nav .sub-menu li a,
.main-nav .sub-menu li a {
  font-size: var(--text-sm);
  padding: 0.6rem 1.25rem;
}

/* Top bar */
.wd-top-bar,
.site-top-bar {
  background-color: var(--gas-blue);
  color: var(--gas-white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  padding: 0.5rem 0;
}

.wd-top-bar a,
.site-top-bar a {
  color: rgba(255,255,255,0.85);
}

.wd-top-bar a:hover,
.site-top-bar a:hover {
  color: var(--gas-white);
}

/* ============================================================
   HERO BANNER / SLIDER
   ============================================================ */
.wd-slider,
.woodmart-slider,
.hero-section,
.banner-section {
  position: relative;
  overflow: hidden;
}

/* Hero con fondo azul oscuro */
.hero-blue {
  background: linear-gradient(135deg, var(--gas-blue-dark) 0%, var(--gas-blue) 60%, #1d5fa3 100%);
  color: var(--gas-white);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.hero-blue::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

.hero-blue .hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--gas-white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.hero-blue .hero-title span {
  color: #f0b429; /* Dorado para destaque */
}

.hero-blue .hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
  margin-bottom: var(--space-lg);
  max-width: 600px;
}

/* ============================================================
   SECCIONES ESTÁNDAR
   ============================================================ */
section,
.woodmart-row {
  padding: var(--space-xl) 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--gas-black);
  text-align: center;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  color: var(--gas-dark-gray);
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: 1.5;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gas-blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  display: block;
  margin-bottom: 0.5rem;
}

/* Sección con fondo gris claro */
.section-bg-gray {
  background-color: var(--gas-light-gray);
}

/* Sección con fondo azul */
.section-bg-blue {
  background: linear-gradient(135deg, var(--gas-blue-dark) 0%, var(--gas-blue) 100%);
  color: var(--gas-white);
}

.section-bg-blue .section-title,
.section-bg-blue .section-subtitle,
.section-bg-blue p {
  color: var(--gas-white);
}

.section-bg-blue .section-subtitle {
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   TARJETAS DE SERVICIO
   ============================================================ */
.service-card,
.wd-product-grid .product,
.services-grid .item {
  background-color: var(--gas-white);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background-color: var(--gas-blue);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gas-blue);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(34, 75, 141, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.service-card-icon svg,
.service-card-icon img {
  width: 28px;
  height: 28px;
  color: var(--gas-blue);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--gas-black);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-card-description {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--gas-dark-gray);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.service-card-link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gas-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
}

.service-card-link::after {
  content: '→';
  transition: transform var(--transition);
}

.service-card-link:hover::after {
  transform: translateX(4px);
}

/* ============================================================
   ESTADÍSTICAS / MÉTRICAS
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--gas-blue-dark) 0%, var(--gas-blue) 100%);
  padding: var(--space-xl) 0;
}

.stat-item {
  text-align: center;
  padding: var(--space-sm);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gas-white);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 0.35rem;
}

.stat-number span {
  color: #f0b429;
}

.stat-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  line-height: 1.3;
}

/* ============================================================
   TARJETAS DE CASO DE ÉXITO
   ============================================================ */
.case-study-card {
  background-color: var(--gas-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.case-study-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.case-study-card-body {
  padding: var(--space-md);
  flex: 1;
}

.case-study-meta {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gas-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.case-study-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gas-black);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.case-study-excerpt {
  font-size: var(--text-base);
  color: var(--gas-dark-gray);
  line-height: 1.6;
}

/* ============================================================
   PARTNERS / CLIENTES (LOGOS)
   ============================================================ */
.partners-section {
  background-color: var(--gas-light-gray);
  padding: var(--space-lg) 0;
}

.partners-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gas-gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: var(--space-md);
}

.partner-logo {
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter var(--transition), opacity var(--transition);
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================================================
   CERTIFICACIONES (BADGES)
   ============================================================ */
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(34, 75, 141, 0.08);
  border: 1px solid rgba(34, 75, 141, 0.2);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gas-blue);
}

.cert-badge.cert-green {
  background-color: rgba(139, 182, 60, 0.08);
  border-color: rgba(139, 182, 60, 0.3);
  color: #5a7d1a;
}

/* ============================================================
   TESTIMONIALES
   ============================================================ */
.testimonial-card {
  background-color: var(--gas-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gas-blue);
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--gas-dark-gray);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--gas-black);
}

.testimonial-role {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--gas-gray);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--gas-blue-dark) 0%, var(--gas-blue) 100%);
  padding: var(--space-xl) 0;
  text-align: center;
}

.cta-section .cta-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--gas-white);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.cta-section .cta-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-lg);
}

.btn-cta-white {
  font-family: var(--font-heading);
  font-weight: 700;
  background-color: var(--gas-white);
  color: var(--gas-blue);
  border: 2px solid var(--gas-white);
  border-radius: var(--radius-sm);
  padding: 0.9rem 2.5rem;
  font-size: var(--text-base);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-cta-white:hover {
  background-color: transparent;
  color: var(--gas-white);
}

.btn-cta-ghost {
  font-family: var(--font-heading);
  font-weight: 600;
  background-color: transparent;
  color: rgba(255,255,255,0.9);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-sm);
  padding: 0.9rem 2.5rem;
  font-size: var(--text-base);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
  text-decoration: none;
  margin-left: var(--space-sm);
}

.btn-cta-ghost:hover {
  border-color: var(--gas-white);
  color: var(--gas-white);
}

/* ============================================================
   FORMULARIO DE CONTACTO
   ============================================================ */
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select,
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: var(--font-body);
  font-size: var(--text-base);
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  background-color: var(--gas-white);
  color: var(--gas-black);
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gas-blue);
  box-shadow: 0 0 0 3px rgba(34, 75, 141, 0.12);
}

.wpcf7-form label,
.contact-form label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gas-dark-gray);
  display: block;
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}

.wpcf7-submit,
.contact-form input[type="submit"] {
  font-family: var(--font-heading);
  font-weight: 700;
  background-color: var(--gas-blue);
  color: var(--gas-white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.9rem 2.5rem;
  cursor: pointer;
  transition: background-color var(--transition);
  font-size: var(--text-base);
  letter-spacing: 0.03em;
}

.wpcf7-submit:hover,
.contact-form input[type="submit"]:hover {
  background-color: var(--gas-blue-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer,
.wd-footer {
  background-color: var(--gas-black);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
}

.footer-widget-title,
.widget-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gas-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gas-blue);
  display: inline-block;
}

.site-footer a,
.wd-footer a {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  transition: color var(--transition);
  text-decoration: none;
  line-height: 2;
}

.site-footer a:hover,
.wd-footer a:hover {
  color: var(--gas-white);
}

.footer-bottom {
  background-color: #15100d;
  padding: 1.25rem 0;
  text-align: center;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: background-color var(--transition), color var(--transition);
  margin-right: 0.5rem;
}

.footer-social a:hover {
  background-color: var(--gas-blue);
  color: var(--gas-white);
}

/* ============================================================
   WOODMART: OVERRIDES ESPECÍFICOS DEL TEMA
   ============================================================ */

/* Accent color override */
.wd-nav-icon-title,
.wd-nav-icon,
.woodmart-btn-color {
  color: var(--gas-blue);
}

/* Header sticky */
.wd-header.sticky-header {
  box-shadow: var(--shadow-md);
}

/* WoodMart buttons */
.woodmart-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-sm);
}

/* Breadcrumbs */
.wd-breadcrumbs,
.woocommerce-breadcrumb {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--gas-gray);
}

.wd-breadcrumbs a,
.woocommerce-breadcrumb a {
  color: var(--gas-blue);
}

/* Page title */
.wd-page-title,
.page-title-section {
  background-color: var(--gas-blue);
  color: var(--gas-white);
  padding: var(--space-lg) 0;
}

.wd-page-title h1,
.page-title-section h1 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--gas-white);
  letter-spacing: -0.02em;
}

/* ============================================================
   BLOQUE: PROPUESTA DE VALOR CON CHECK
   ============================================================ */
.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: var(--text-base);
  color: var(--gas-dark-gray);
  line-height: 1.5;
}

.value-list li::before {
  content: '✓';
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gas-green);
  background-color: rgba(139, 182, 60, 0.12);
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================================
   HIGHLIGHT BOX
   ============================================================ */
.highlight-box {
  background-color: rgba(34, 75, 141, 0.06);
  border-left: 4px solid var(--gas-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-sm) 0;
}

.highlight-box.highlight-red {
  background-color: rgba(178, 22, 33, 0.06);
  border-color: var(--gas-red);
}

.highlight-box.highlight-green {
  background-color: rgba(139, 182, 60, 0.08);
  border-color: var(--gas-green);
}

/* ============================================================
   ETIQUETAS / TAGS
   ============================================================ */
.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tag-blue {
  background-color: rgba(34, 75, 141, 0.1);
  color: var(--gas-blue);
}

.tag-green {
  background-color: rgba(139, 182, 60, 0.1);
  color: #5a7d1a;
}

.tag-red {
  background-color: rgba(178, 22, 33, 0.08);
  color: var(--gas-red);
}

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: var(--space-lg) 0;
}

.divider-blue {
  border-top-color: var(--gas-blue);
  border-top-width: 3px;
}

/* ============================================================
   RESPONSIVE - AJUSTES MÓVIL
   ============================================================ */
@media (max-width: 768px) {
  section,
  .woodmart-row {
    padding: var(--space-lg) 0;
  }

  .hero-blue .hero-title {
    font-size: 2.25rem;
  }

  .hero-blue .hero-subtitle {
    font-size: var(--text-lg);
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .cta-section .cta-title {
    font-size: var(--text-3xl);
  }

  .btn-cta-ghost {
    margin-left: 0;
    margin-top: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-blue {
    padding: var(--space-xl) 0;
  }

  .hero-blue .hero-title {
    font-size: 1.875rem;
  }
}
