﻿:root {
  --novomat-blue: #1447bb;
  --novomat-blue-dark: #0b2f7a;
  --novomat-gray-bg: #f5f7fb;
  --novomat-text: #222222;
  --novomat-muted: #6b7280;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.18);
  --max-width: 1140px;
}

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

html,
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--novomat-text);
  background: #ffffff;
  line-height: 1.5;
  padding: 0;
  margin: 0;
}

.wp-site-blocks {
  padding: 0 !important;
  gap: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.wp-site-blocks > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

.wp-site-blocks > * + * {
  margin-block-start: 0 !important;
}

.wp-site-blocks > .wp-block-template-part,
.wp-site-blocks > .wp-block-group {
  margin-top: 0 !important;
}

.wp-block-template-part,
.site-main {
  margin: 0 !important;
  padding: 0 !important;
}

.site-footer {
  margin-bottom: 0;
}

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

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

/* ===== Layout global ===== */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  background: var(--novomat-blue);
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1rem;
}

.logo {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.95rem;
}

.nav .wp-block-navigation__container {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav .wp-block-navigation-item__content {
  font-weight: 500;
  opacity: 0.95;
}

.nav .wp-block-navigation-item__content:hover {
  opacity: 1;
}

.nav-contacto .wp-block-navigation-item__content {
  padding: 0.55rem 1.3rem;
  background: #ffffff;
  color: var(--novomat-blue);
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}

.wp-block-navigation-item.nav-contacto .wp-block-navigation-item__content {
  color: var(--novomat-blue);
}

.nav .wp-block-navigation-item.nav-whatsapp .wp-block-navigation-item__content {
  padding: 0.55rem 1.1rem;
  background: #25d366;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}

.nav .wp-block-navigation-item.nav-whatsapp .wp-block-navigation-item__content:hover {
  background: #1fb655;
  color: #ffffff;
  opacity: 1;
}

/* ===== HERO ===== */

.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 4.5rem;
  background: linear-gradient(135deg, var(--novomat-blue) 0%, var(--novomat-blue) 55%, #ffffff 55%);
  color: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.15), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.24);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 0.98rem;
  max-width: 32rem;
  color: #e5e7eb;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.btn-primary .wp-block-button__link {
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: #ffffff;
  color: var(--novomat-blue);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-soft);
}

.btn-secondary .wp-block-button__link {
  padding: 0.72rem 1.4rem;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.75);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1.5rem;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.hero-bullets p {
  margin: 0;
}

.hero-bullets span::before,
.hero-bullets p::before {
  content: ">";
  margin-right: 0.35rem;
  color: #bbf7d0;
  font-weight: 700;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.6rem;
  border-top: 1px solid rgba(248,250,252,0.18);
  padding-top: 1.3rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #cbd5f5;
}

.hero-stat strong {
  display: block;
  font-size: 1.2rem;
  color: #ffffff;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 0.5rem;
  max-width: 500px;
}

.hero-card-img {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.1rem;
  background: #e5e7eb;
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #6b7280;
  text-align: center;
  /*padding: 0.8rem;*/
}

.hero-card-title {
  margin-bottom: 0.3rem;
  color: #7d7676;
}

.hero-card-text {
  font-size: 0.85rem;
  color: var(--novomat-muted);
}

.hero-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--novomat-muted);
  margin-top: 0.4rem;
}

.hero-slider {
  width: 100%;
  max-width: 500px;
}

.hero-slide {
  display: none;
}

.hero-slide.is-active {
  display: block;
  animation: novomat-hero-fade 0.35s ease;
}

@keyframes novomat-hero-fade {
  from {
    opacity: 0.35;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-card-img img,
.hero-card-img .hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-img-placeholder {
  padding: 0.8rem;
}

.hero-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.hero-slider-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #ffffff;
  color: var(--novomat-blue);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.hero-slider-btn:hover {
  border-color: var(--novomat-blue);
  color: var(--novomat-blue-dark);
}

.hero-slider-dots {
  display: flex;
  gap: 0.35rem;
}

.hero-slider-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
}

.hero-slider-dot.is-active {
  background: var(--novomat-blue);
}

/* ===== CATEGORIAS ===== */

.section {
  padding: 3.5rem 0;
}

.section-gray {
  background: var(--novomat-gray-bg);
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  text-align: center;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--novomat-muted);
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 2rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.2rem;
}

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.category-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1rem 0.9rem;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
  transition: transform 0.17s ease, box-shadow 0.17s ease, border-color 0.17s ease;
  cursor: pointer;
}

.category-icon {
  width: 45px;
  height: 45px;
  /*border-radius: 999px;*/
  /*border: 2px solid var(--novomat-blue);*/
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--novomat-blue);
}

.category-name {
  font-weight: 600;
  font-size: 1rem;
}

.category-link {
  font-size: 0.8rem;
  color: var(--novomat-blue);
  margin-top: 0.15rem;
}

.category-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  border-color: rgba(19,70,187,0.35);
}

/* ===== PRODUCTOS DESTACADOS ===== */

.featured {
  background: var(--novomat-blue);
  color: #ffffff;
}

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.featured-header h2 {
  font-size: 1.5rem;
}

.featured-header p {
  font-size: 0.9rem;
  color: #e5e7eb;
}

/* Contenedor del enlace - sin estilos visuales */
.featured-link {
  margin: 0;
}

/* Estilos del enlace - botón secundario */
.featured-link a {
  display: inline-block;
  font-size: 0.9rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
  color: #ffffff;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-link a:hover {
  background: rgba(255,255,255,0.1);
  border-color: #ffffff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-media {
    justify-content: flex-start;
  }
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3rem;
  }
  .products-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .featured-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.product-card {
  background: #ffffff;
  color: var(--novomat-text);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
}

.product-img,
.product-card .wp-block-post-featured-image {
  border-radius: 14px;
  background: #e5e7eb;
  min-height: 130px;
  margin-bottom: 0.4rem;
  overflow: hidden;
}

.product-card .wp-block-post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-name {
  font-weight: 600;
  font-size: 0.97rem;
}

.product-desc,
.product-card .wp-block-post-excerpt__excerpt {
  font-size: 0.8rem;
  color: var(--novomat-muted);
}

.product-price {
  font-weight: 700;
  margin-top: 0.2rem;
}

.product-actions {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.btn-add-cart .wp-block-button__link,
.btn-add-cart.wp-block-post-read-more {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: none;
  background: var(--novomat-blue);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.product-availability {
  color: var(--novomat-muted);
}

/* ===== POR QUE ELEGIRNOS ===== */

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.why-title {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}

.why-text {
  font-size: 0.95rem;
  color: var(--novomat-muted);
  max-width: 32rem;
  margin-bottom: 1.4rem;
}

.why-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.why-badge {
  background: #eef2ff;
  color: var(--novomat-blue);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 640px) {
  .why-cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

.why-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.why-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--novomat-muted);
}

.why-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(19,70,187,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--novomat-blue);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* ===== BLOG ===== */

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  font-size: 0.8rem;
  color: var(--novomat-muted);
}

.post-actions {
  margin-top: 0.6rem;
  display: flex;
  justify-content: flex-start;
}

.post-featured {
  margin: 1rem 0 1.2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.post-content > * + * {
  margin-top: 1rem;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.pagination .page-numbers,
.pagination a {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
}

/* ===== CONTACTO ===== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ===== FOOTER ===== */

footer {
  background: var(--novomat-blue-dark);
  color: #e5e7eb;
  padding: 2.8rem 0 1.7rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.footer-logo {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}

.footer-links a {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  opacity: 0.9;
}

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

/* Enlaces en el footer (teléfonos, email) */
.site-footer a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.footer-social-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(148,163,184,0.4);
  padding-top: 1rem;
  font-size: 0.8rem;
  text-align: center;
  color: #cbd5f5;
}

/* ========================================
   DISTRIBUIDORES
   ======================================== */

/* Contenedor de logos - fila centrada y responsive */
.distributors-logos {
  gap: 2rem !important;
  margin-top: 2rem;
}

/* Logo individual (figure de WordPress) */
.distributor-logo {
  margin: 0 !important;
  max-width: 180px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0.85;
}

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

.distributor-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive: logos más pequeños en móvil */
@media (max-width: 768px) {
  .distributors-logos {
    gap: 1.5rem !important;
  }
  
  .distributor-logo {
    max-width: 140px;
  }
}

/* ========================================
   SERVICIOS (PÁGINA)
   ======================================== */

/* Hero Section de Servicios */
.services-hero {
  background: linear-gradient(135deg, var(--novomat-blue) 0%, var(--novomat-blue-dark) 100%);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

.services-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.services-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.services-hero-text {
  font-size: 1.125rem;
  opacity: 0.95;
  line-height: 1.6;
}

/* Grid de Servicios */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

/* Tarjeta individual de servicio */
.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(19, 70, 187, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(19, 70, 187, 0.15);
  border-color: var(--novomat-blue);
}

/* Tarjeta destacada (opcional) */
.service-card-highlight {
  background: linear-gradient(135deg, #f5f7fb 0%, #e8eeff 100%);
  border-color: var(--novomat-blue);
}

/* Icono del servicio */
.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Título del servicio */
.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--novomat-blue);
  margin-bottom: 0.75rem;
}

/* Descripción del servicio */
.service-description {
  font-size: 0.95rem;
  color: var(--novomat-muted);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.services-cta {
  background: var(--novomat-gray-bg);
  padding: 4rem 0;
}

.services-cta-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  max-width: 700px;
  margin: 0 auto;
}

.services-cta-box h2 {
  color: var(--novomat-blue);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.services-cta-box p {
  color: var(--novomat-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.services-cta-box .wp-block-buttons {
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive: Servicios */
@media (max-width: 768px) {
  .services-hero {
    padding: 3rem 0;
  }
  
  .services-hero-title {
    font-size: 1.875rem;
  }
  
  .services-hero-text {
    font-size: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .services-cta-box {
    padding: 2rem 1.5rem;
  }
  
  .services-cta-box h2 {
    font-size: 1.5rem;
  }
}

/* ========================================
   QUIÉNES SOMOS (PÁGINA)
   ======================================== */

/* Hero Section About */
.about-hero {
  background: linear-gradient(135deg, var(--novomat-blue) 0%, var(--novomat-blue-dark) 100%);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

.about-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-hero-text {
  font-size: 1.125rem;
  opacity: 0.95;
  line-height: 1.7;
}

/* Story Section */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story-content {
  padding-right: 2rem;
}

.about-badge {
  display: inline-block;
  background: rgba(19, 70, 187, 0.1);
  color: var(--novomat-blue);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.about-story-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--novomat-blue);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-story-text {
  font-size: 1.05rem;
  color: var(--novomat-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-story-image {
  position: relative;
}

.about-story-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.about-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--novomat-gray-bg);
  border-radius: 12px;
}

.about-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--novomat-blue);
  margin: 0 0 0.5rem 0;
}

.about-stat-label {
  font-size: 0.9rem;
  color: var(--novomat-muted);
  margin: 0;
}

/* Mission & Vision */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.mv-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(19, 70, 187, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--novomat-blue), var(--novomat-blue-dark));
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(19, 70, 187, 0.15);
}

.mv-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.mv-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--novomat-blue);
  margin-bottom: 1rem;
}

.mv-text {
  font-size: 1.05rem;
  color: var(--novomat-muted);
  line-height: 1.7;
  margin: 0;
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.value-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(19, 70, 187, 0.08);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(19, 70, 187, 0.15);
}

.value-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.value-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--novomat-blue);
  margin-bottom: 0.75rem;
}

.value-text {
  font-size: 0.95rem;
  color: var(--novomat-muted);
  line-height: 1.6;
  margin: 0;
}

/* About CTA */
.about-cta-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.about-cta-image {
  margin: 0;
  height: 100%;
}

.about-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cta-content {
  padding: 3rem;
}

.about-cta-content h2 {
  color: var(--novomat-blue);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-cta-content p {
  color: var(--novomat-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-cta-content .wp-block-buttons {
  gap: 1rem;
}

/* Responsive: Quiénes Somos */
@media (max-width: 968px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-story-content {
    padding-right: 0;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-cta-box {
    grid-template-columns: 1fr;
  }
  
  .about-cta-content {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 3rem 0;
  }
  
  .about-hero-title {
    font-size: 2rem;
  }
  
  .about-hero-text {
    font-size: 1rem;
  }
  
  .about-story-title {
    font-size: 1.75rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .about-stat {
    padding: 1rem;
  }
  
  .about-stat-number {
    font-size: 2rem;
  }
  
  .mv-card {
    padding: 2rem 1.5rem;
  }
  
  .mv-title {
    font-size: 1.5rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .about-cta-content h2 {
    font-size: 1.5rem;
  }
}

/* ========================================
   CONTACTO (PÁGINA)
   ======================================== */

/* Hero Section Contact */
.contact-hero {
  background: linear-gradient(135deg, var(--novomat-blue) 0%, var(--novomat-blue-dark) 100%);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-hero-text {
  font-size: 1.125rem;
  opacity: 0.95;
  line-height: 1.7;
}

/* Contact Info Cards */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(19, 70, 187, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(19, 70, 187, 0.15);
  border-color: var(--novomat-blue);
}

.contact-info-card-highlight {
  background: linear-gradient(135deg, #f5f7fb 0%, #e8eeff 100%);
  border-color: var(--novomat-blue);
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.contact-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--novomat-blue);
  margin-bottom: 1rem;
}

.contact-card-text {
  font-size: 1.05rem;
  color: var(--novomat-text);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-card-text:last-child {
  margin-bottom: 0;
}

.contact-card-text a {
  color: var(--novomat-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-card-text a:hover {
  color: var(--novomat-blue-dark);
  text-decoration: underline;
}

/* Locations Section */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.location-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(19, 70, 187, 0.15);
}

.location-map {
  margin: 0;
  height: 250px;
  overflow: hidden;
}

.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.location-content {
  padding: 2rem;
}

.location-badge {
  display: inline-block;
  background: var(--novomat-blue);
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.location-badge-secondary {
  background: var(--novomat-blue-dark);
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--novomat-blue);
  margin-bottom: 1rem;
}

.location-address {
  font-size: 1rem;
  color: var(--novomat-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.location-link {
  margin: 0;
}

.location-link a {
  color: var(--novomat-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.location-link a:hover {
  color: var(--novomat-blue-dark);
  gap: 0.5rem;
}

/* Contact CTA */
.contact-cta-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  max-width: 700px;
  margin: 0 auto;
}

.contact-cta-box h2 {
  color: var(--novomat-blue);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-cta-box p {
  color: var(--novomat-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-cta-box .wp-block-buttons {
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive: Contacto */
@media (max-width: 768px) {
  .contact-hero {
    padding: 3rem 0;
  }
  
  .contact-hero-title {
    font-size: 2rem;
  }
  
  .contact-hero-text {
    font-size: 1rem;
  }
  
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-info-card {
    padding: 2rem 1.5rem;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .location-content {
    padding: 1.5rem;
  }
  
  .contact-cta-box {
    padding: 2rem 1.5rem;
  }
  
  .contact-cta-box h2 {
    font-size: 1.5rem;
  }
}

/* ========================================
   PAGINAS DE POLITICAS
   ======================================== */

.policy-main {
  padding-top: 2.5rem;
}

.policy-content {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(19, 70, 187, 0.08);
  padding: 2.2rem;
  max-width: 920px;
  margin: 0 auto;
}

.policy-section-title {
  color: var(--novomat-blue);
  font-size: 1.2rem;
  margin: 1.25rem 0 0.55rem;
}

.policy-content p {
  color: var(--novomat-text);
  line-height: 1.7;
}

.policy-content ul {
  margin: 0.35rem 0 1rem 1.1rem;
  color: var(--novomat-text);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .policy-content {
    padding: 1.5rem 1.2rem;
  }
}
