/*
 * ═══════════════════════════════════════════════
 *  PLUS+ BOLD — Design System
 *  Extends styles.css · Plus+Golf 2025
 * ═══════════════════════════════════════════════
 */

/* ─────────────────────────────────
   HEADER — más limpio, línea roja
───────────────────────────────── */
#header {
    background-color: white !important;
    border-bottom: 3px solid var(--color-2);
    padding: 10px 0;
}
/* Quitar cuadros decorativos del header */
#header::before,
#header::after { display: none !important; }

.logo img { max-width: 180px; margin-left: 0; }

/* ─────────────────────────────────
   NAV — mismo rojo, tipografía más moderna
───────────────────────────────── */
#nav .nav-link { letter-spacing: 1.5px; font-size: 13px; }
#nav .nav-link:hover {
    background: rgba(0,0,0,0.18) !important;
    background-image: none !important;
    color: white !important;
    padding-left: 20px;
}
.dropdown-menu { border-top: 2px solid var(--color-2); }

/* ─────────────────────────────────
   HERO VIDEO — Plus+ Bold
───────────────────────────────── */
.bold-hero { position: relative; }

/* Gradiente oscuro sobre el video — permite leer el texto */
.bold-hero__overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.80) 0%,
        rgba(0,0,0,0.55) 55%,
        transparent 100%
    );
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 0;
}

.bold-hero__content {
    max-width: 680px;
    padding: 0 15px;
}

/* Ocultamos el overlay viejo */
#home-slide .carousel-caption { display: none !important; }

/* Etiqueta roja encima del título */
.bold-hero__flag { margin-bottom: 18px; }
.bold-flag-box {
    display: inline-block;
    background: var(--color-2);
    color: white;
    font-family: 'Visby', sans-serif;
    font-weight: 900;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 5px 16px;
}

/* Título GIGANTE con Bebas Neue */
.bold-hero__title {
    font-family: 'Bebas Neue', 'Visby Heavy', 'Arial Black', sans-serif;
    font-size: 80px;
    line-height: 0.92;
    color: white;
    text-transform: uppercase;
    margin-bottom: 28px;
    letter-spacing: 2px;
    font-weight: 400; /* Bebas Neue ya es bold por naturaleza */
}

.bold-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.bold-btn-white {
    display: inline-block;
    background: white;
    color: var(--color-2) !important;
    border: none;
    font-family: 'Visby', sans-serif;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 28px;
    text-decoration: none !important;
    border-radius: 0;
    transition: background 0.2s, color 0.2s;
}
.bold-btn-white:hover { background: var(--color-2); color: white !important; }

.bold-btn-outline {
    background: transparent;
    color: white !important;
    border: 2px solid rgba(255,255,255,0.55);
    font-family: 'Visby', sans-serif;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 11px 24px;
    border-radius: 0;
    transition: border-color 0.2s, background 0.2s;
}
.bold-btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.12);
    color: white !important;
}


/* ─────────────────────────────────
   SECCIÓN LABEL — etiqueta de sección
───────────────────────────────── */
.bold-section-label {
    font-family: 'Visby', sans-serif;
    font-weight: 900;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-2);
    margin-bottom: 20px;
    display: block;
}

/* ─────────────────────────────────
   PRODUCTS — grid oscuro
───────────────────────────────── */
#home-products {
    background: var(--color-1);
    padding: 48px 0;
    /* Quitar background image del home-platforms anterior */
    background-image: none;
}

/* Override del viejo #home-platforms si queda referenciado */
#home-platforms {
    background: var(--color-1) !important;
    background-image: none !important;
    padding: 48px 0 !important;
}

.bold-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
}

.bold-product-card {
    background: #1d1919;
    border: 1px solid #2e2929;
    padding: 32px 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none !important;
    color: white;
    transition: background 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
}
.bold-product-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--color-2);
    transform: scaleX(0);
    transition: transform 0.25s;
}
.bold-product-card:hover { background: var(--color-2); border-color: var(--color-2); color: white; }
.bold-product-card:hover::before { transform: scaleX(1); }

.bold-product-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.2s;
}
.bold-product-card:hover .bold-product-icon { opacity: 1; }

.bold-product-name {
    font-family: 'Visby', sans-serif;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    line-height: 1.2;
}

.bold-product-arrow {
    font-size: 20px;
    color: var(--color-2);
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}
.bold-product-card:hover .bold-product-arrow {
    color: white;
    transform: translateX(4px);
}


/* ─────────────────────────────────
   BLOG PREVIEW — estilo periódico deportivo
───────────────────────────────── */
#home-blog {
    padding: 60px 0;
    background: var(--section-gray);
}

.bold-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    border-bottom: 3px solid var(--color-1);
    padding-bottom: 14px;
}
.bold-section-header-left {}
.bold-section-title {
    font-family: 'Bebas Neue', 'Visby Heavy', 'Arial Black', sans-serif;
    font-size: 40px;
    color: var(--color-1);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 2px 0 0;
    font-weight: 400;
    line-height: 1;
}
.bold-link-all {
    font-family: 'Visby', sans-serif;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-2);
    text-decoration: none;
    white-space: nowrap;
    margin-bottom: 4px;
}
.bold-link-all:hover { text-decoration: underline; color: var(--color-2); }

/* Grid periódico: 1 grande izq. + 2 menores der. */
.bold-blog-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 20px;
    align-items: stretch;
}

/* Artículo PRINCIPAL */
.bold-blog-feature {
    display: flex;
    flex-direction: column;
    background: white;
}
.bold-blog-feature__img {
    width: 100%;
    height: 270px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}
.bold-blog-feature__badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--color-2);
    color: white;
    font-family: 'Visby', sans-serif;
    font-weight: 900;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
}
.bold-blog-feature__body { padding: 20px 22px; flex: 1; }

.bold-blog-cat {
    font-family: 'Visby', sans-serif;
    font-weight: 900;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-2);
    margin-bottom: 8px;
}
.bold-blog-feature__title {
    font-family: 'Visby Heavy', 'Visby', sans-serif;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15;
    text-transform: none;
    margin-bottom: 10px;
}
.bold-blog-feature__title a { color: var(--color-1); text-decoration: none; }
.bold-blog-feature__title a:hover { color: var(--color-2); }

.bold-blog-feature__excerpt { font-size: 13px; color: #555; line-height: 1.65; margin-bottom: 14px; }
.bold-blog-meta { font-size: 11px; color: #aaa; font-family: 'Visby', sans-serif; font-weight: 600; }

/* Artículos SECUNDARIOS */
.bold-blog-secondary { display: flex; flex-direction: column; gap: 4px; }
.bold-blog-secondary-item {
    background: white;
    display: flex;
    overflow: hidden;
    flex: 1;
    min-height: 130px;
}
.bold-blog-secondary__img {
    width: 130px;
    min-width: 130px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.bold-blog-secondary__body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bold-blog-secondary__title {
    font-family: 'Visby', sans-serif;
    font-weight: 900;
    font-size: 14px;
    line-height: 1.25;
    text-transform: none;
    margin-bottom: 8px;
}
.bold-blog-secondary__title a { color: var(--color-1); text-decoration: none; }
.bold-blog-secondary__title a:hover { color: var(--color-2); }


/* ─────────────────────────────────
   STATS STRIP — rojo, números grandes
───────────────────────────────── */
#home-stats {
    background: var(--color-2);
    padding: 44px 0;
}

.bold-stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: 20px;
}
.bold-stat {}
.bold-stat__number {
    font-family: 'Bebas Neue', 'Visby Heavy', 'Arial Black', sans-serif;
    font-size: 58px;
    color: white;
    line-height: 1;
    letter-spacing: 2px;
    display: block;
}
.bold-stat__label {
    font-family: 'Visby', sans-serif;
    font-weight: 900;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.70);
    margin-top: 6px;
    display: block;
}


/* ─────────────────────────────────
   PARTNERS STRIP — logos más limpios
───────────────────────────────── */
#section-partners {
    padding: 52px 0;
    background: white;
}
.bold-partners-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}
.bold-partner img {
    max-height: 52px;
    max-width: 90px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: filter 0.25s, opacity 0.25s;
}
.bold-partner:hover img { filter: grayscale(0%); opacity: 1; }


/* ─────────────────────────────────
   BLOG PAGE — periódico deportivo
───────────────────────────────── */

/* Masthead negro con nombre del blog */
.bold-blog-masthead {
    background: var(--color-1);
    border-bottom: 3px solid var(--color-2);
    padding: 14px 0;
}
.bold-blog-masthead__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bold-blog-masthead__name {
    font-family: 'Bebas Neue', 'Visby Heavy', 'Arial Black', sans-serif;
    font-size: 34px;
    color: white;
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 2px;
    font-weight: 400;
}
.bold-blog-masthead__sub {
    font-family: 'Visby', sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
}
.bold-blog-masthead__date {
    font-family: 'Visby', sans-serif;
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: right;
}

/* Category tabs — barra de filtros */
.bold-blog-cats {
    background: white;
    border-bottom: 1px solid #e8e8e8;
}
.bold-blog-cats__inner {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.bold-blog-cats__inner::-webkit-scrollbar { display: none; }

.bold-blog-cat-tab {
    display: block;
    padding: 13px 18px 10px;
    font-family: 'Visby', sans-serif;
    font-weight: 900;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    white-space: nowrap;
    transition: color 0.15s;
}
.bold-blog-cat-tab:hover { color: var(--color-2); }
.bold-blog-cat-tab.active { color: var(--color-1); border-bottom-color: var(--color-2); }

/* Layout general del blog */
.bold-blog-page-layout { padding: 44px 0 60px; }

/* Artículo FEATURED — imagen grande + texto lado a lado */
.bold-blog-page-feature {
    display: grid;
    grid-template-columns: 3fr 2fr;
    background: white;
    margin-bottom: 28px;
    overflow: hidden;
}
.bold-blog-page-feature__img-link { display: block; overflow: hidden; }
.bold-blog-page-feature__img {
    height: 100%;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.4s;
}
.bold-blog-page-feature__img-link:hover .bold-blog-page-feature__img {
    transform: scale(1.03);
}
.bold-blog-page-feature__body {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 3px solid var(--color-2);
}
.bold-blog-page-feature__title {
    font-family: 'Visby Heavy', 'Visby', sans-serif;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.15;
    text-transform: none;
    margin-bottom: 16px;
    color: var(--color-1);
}
.bold-blog-page-feature__title a { color: var(--color-1); text-decoration: none; }
.bold-blog-page-feature__title a:hover { color: var(--color-2); }
.bold-blog-page-feature__excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 24px;
}

/* Grid 3 columnas — resto de artículos */
.bold-blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.bold-blog-page-card {
    background: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.bold-blog-page-card__img {
    height: 200px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: block;
    transition: transform 0.35s;
}
.bold-blog-page-card:hover .bold-blog-page-card__img { transform: scale(1.04); }
.bold-blog-page-card__img-wrap { overflow: hidden; display: block; }
.bold-blog-page-card__body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.bold-blog-page-card__title {
    font-family: 'Visby', sans-serif;
    font-weight: 900;
    font-size: 16px;
    line-height: 1.25;
    text-transform: none;
    margin-bottom: 10px;
    flex: 1;
}
.bold-blog-page-card__title a { color: var(--color-1); text-decoration: none; }
.bold-blog-page-card__title a:hover { color: var(--color-2); }
.bold-blog-page-card__excerpt { font-size: 12px; color: #666; line-height: 1.65; margin-bottom: 12px; }

/* Paginación bold */
.bold-blog-page-layout .pagination {
    justify-content: center;
    gap: 4px;
}
.bold-blog-page-layout .page-link {
    font-family: 'Visby', sans-serif;
    font-weight: 900;
    font-size: 12px;
    border-radius: 0 !important;
    border-color: #ddd;
    color: var(--color-1);
    padding: 8px 14px;
}
.bold-blog-page-layout .page-link:hover { background: var(--color-2); border-color: var(--color-2); color: white; }
.bold-blog-page-layout .active > .page-link { background: var(--color-2); border-color: var(--color-2); }


/* ─────────────────────────────────
   TECNOLOGÍA MUNDIAL / MAPAS
───────────────────────────────── */

/* Subheader Bold — reemplaza el genérico */
.bold-page-subheader {
    background: var(--color-2);
    padding: 32px 0;
    border-bottom: 3px solid var(--color-1);
}
.bold-page-subheader h1 {
    font-family: 'Bebas Neue', 'Visby Heavy', 'Arial Black', sans-serif;
    font-size: 52px;
    color: white;
    letter-spacing: 3px;
    font-weight: 400;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}
.bold-page-subheader__sub {
    font-family: 'Visby', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-top: 6px;
}

/* Sección bold — padding + fondo */
.bold-section { padding: 60px 0; }
.bold-section--gray { background: var(--section-gray); }
.bold-section--dark { background: var(--color-1); }

/* Título de sección con borde rojo */
.bold-section-header-line {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 3px solid var(--color-1);
    padding-bottom: 14px;
    margin-bottom: 36px;
}
.bold-section-header-line .bold-section-title { margin: 0; }

/* Google Maps container */
.bold-map-container {
    border: 3px solid var(--color-1);
    overflow: hidden;
}
.bold-map-container .gmaps { height: 480px !important; }
.bold-wmap-container {
    border: 3px solid var(--color-1);
    overflow: hidden;
}
.bold-wmap-container .gmaps { height: 520px !important; }

/* Stats en página de mapas — sobre fondo rojo */
.bold-map-stats { margin-top: 40px; }
.bold-map-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.bold-map-stat-card {
    background: var(--color-1);
    padding: 28px 20px;
    text-align: center;
}
.bold-map-stat-card__number {
    font-family: 'Bebas Neue', 'Visby Heavy', 'Arial Black', sans-serif;
    font-size: 52px;
    color: var(--color-2);
    line-height: 1;
    letter-spacing: 1px;
    display: block;
}
.bold-map-stat-card__title {
    font-family: 'Visby', sans-serif;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    display: block;
    margin-top: 6px;
}
.bold-map-stat-card__text {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 6px;
    line-height: 1.5;
}

/* Texto WHS lado a lado con mapa */
.bold-whs-text {
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.bold-whs-text p { font-size: 14px; color: #444; line-height: 1.8; margin-bottom: 16px; }


/* ─────────────────────────────────
   FOOTER — tipografía mejorada
───────────────────────────────── */
footer .title {
    background-image: none;
    padding-left: 0;
    border-left: 3px solid var(--color-2);
    padding-left: 10px;
    font-size: 13px;
    letter-spacing: 1px;
}
footer .menu li { padding: 4px 0; }
footer .menu a { font-size: 12px; opacity: 0.8; }
footer .menu a:hover { opacity: 1; color: var(--color-2); }


/* ─────────────────────────────────
   RESPONSIVE
───────────────────────────────── */
@media (max-width: 1199px) {
    .bold-hero__title { font-size: 64px; }
}

@media (max-width: 991px) {
    .bold-hero__title { font-size: 52px; }
    .bold-products-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
    .bold-blog-grid { grid-template-columns: 1fr; }
    .bold-blog-secondary { flex-direction: row; gap: 4px; }
    .bold-blog-secondary-item { flex: 1; min-height: 120px; }
}

@media (max-width: 767px) {
    .bold-hero__title { font-size: 44px; letter-spacing: 1px; }
    .bold-hero__content { max-width: 100%; }
    .bold-hero__overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 100%);
    }
    .bold-products-grid { grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .bold-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
    .bold-stat__number { font-size: 42px; }
    .bold-blog-secondary { flex-direction: column; }
    .bold-blog-secondary-item { flex-direction: row; }
    .bold-section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 575px) {
    .bold-hero__title { font-size: 36px; }
    .bold-products-grid { grid-template-columns: repeat(2, 1fr); }
    .bold-product-card { padding: 22px 10px 18px; }
    .bold-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .bold-blog-secondary-item { flex-direction: column; }
    .bold-blog-secondary__img { width: 100%; height: 110px; min-width: auto; }
    .bold-partners-strip { gap: 20px; }
    .bold-partner img { max-height: 40px; }
}


/* ─────────────────────────────────
   ARTICLE — single blog post
───────────────────────────────── */

/* Hero — full-width image with dark gradient overlay */
.bold-article-hero {
    position: relative;
    width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.bold-article-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.50) 50%,
        rgba(0,0,0,0.20) 100%
    );
    display: flex;
    align-items: flex-end;
    padding-bottom: 52px;
}
.bold-article-hero__cat {
    display: inline-block;
    font-family: 'Visby', 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    background: var(--color-2);
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 14px;
    text-decoration: none;
}
.bold-article-hero__cat:hover { background: #c8111a; color: white; }
.bold-article-hero__title {
    font-family: 'Bebas Neue', 'Visby', sans-serif;
    font-size: 62px;
    line-height: 1.05;
    color: white;
    margin: 0;
    max-width: 800px;
}

/* Article body — centered reading column */
.bold-article-body {
    padding: 56px 0 72px;
}
.bold-article-layout {
    max-width: 760px;
    margin: 0 auto;
}
.bold-article-back {
    margin-bottom: 28px;
}
.bold-article-back a {
    font-family: 'Visby', 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-2);
    text-decoration: none;
}
.bold-article-back a:hover { text-decoration: underline; }
.bold-article-back--bottom { margin-top: 36px; margin-bottom: 0; }

.bold-article-lead {
    font-family: 'Visby', 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 1.65;
    border-left: 4px solid var(--color-2);
    padding-left: 20px;
    margin-bottom: 28px;
}
.bold-article-share {
    margin: 20px 0 28px;
}
.bold-article-share--bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 16px;
}
.bold-article-share--bottom span {
    font-family: 'Visby', 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #666;
    white-space: nowrap;
}

/* Content typography */
.bold-article-content {
    font-size: 16px;
    line-height: 1.85;
    color: #2a2a2a;
}
.bold-article-content h2,
.bold-article-content h3 {
    font-family: 'Bebas Neue', 'Visby', sans-serif;
    color: var(--color-1);
    margin: 32px 0 14px;
}
.bold-article-content h2 { font-size: 32px; }
.bold-article-content h3 { font-size: 24px; }
.bold-article-content p  { margin-bottom: 20px; }
.bold-article-content img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    margin: 24px 0;
}
.bold-article-content a {
    color: var(--color-2);
    text-decoration: underline;
}
.bold-article-content blockquote {
    border-left: 4px solid var(--color-2);
    margin: 28px 0;
    padding: 12px 20px;
    background: #f8f8f8;
    font-style: italic;
    color: #444;
}

@media (max-width: 767px) {
    .bold-article-hero { height: 320px; }
    .bold-article-hero__title { font-size: 38px; }
    .bold-article-body { padding: 36px 0 52px; }
    .bold-article-lead { font-size: 15px; }
    .bold-article-content { font-size: 15px; }
}


/* ─────────────────────────────────
   PRODUCT PAGES — hero + features + CTA
───────────────────────────────── */

/* Product hero — dark with icon + title */
.bold-product-hero {
    padding: 60px 0;
    background: var(--color-1);
    border-bottom: 4px solid var(--color-2);
}
.bold-product-hero--dark { background: var(--color-1); }

.bold-product-hero__inner {
    display: flex;
    align-items: center;
    gap: 36px;
}
.bold-product-hero__icon {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}
.bold-product-hero__icon img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.bold-product-hero__title {
    font-family: 'Bebas Neue', 'Visby', sans-serif;
    font-size: 56px;
    color: white;
    margin: 0 0 6px;
    line-height: 1;
}
.bold-product-hero__sub {
    font-family: 'Visby', 'Raleway', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    margin: 0;
    max-width: 560px;
    line-height: 1.6;
}

/* Screenshot image */
.bold-product-screenshot {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}

/* Feature list (inherited from pg-list but styled bold) */
.bold-product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bold-product-features ul li {
    padding: 9px 0 9px 22px;
    position: relative;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #eee;
    line-height: 1.5;
}
.bold-product-features ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-2);
}
.bold-product-features ul li:last-child { border-bottom: none; }
.bold-product-features p {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
}

/* CTA strip — dark band at bottom */
.bold-cta-strip {
    background: var(--color-1);
    padding: 52px 0;
}
.bold-cta-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.bold-cta-strip__title {
    font-family: 'Bebas Neue', 'Visby', sans-serif;
    font-size: 34px;
    color: white;
    margin: 0 0 4px;
}
.bold-cta-strip__sub {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin: 0;
    max-width: 500px;
}

/* Red button (used on light bg) */
.bold-btn-red {
    display: inline-block;
    background: var(--color-2);
    color: white;
    font-family: 'Visby', 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 2px;
    transition: background .18s ease;
}
.bold-btn-red:hover { background: #c8111a; color: white; }

/* Author card (Blog+Plus) */
.bold-author-card {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 36px;
    background: var(--section-gray);
    border-radius: 4px;
}
.bold-author-card__avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-2);
}
.bold-author-card__name {
    font-family: 'Bebas Neue', 'Visby', sans-serif;
    font-size: 28px;
    color: var(--color-1);
    margin: 0 0 2px;
}
.bold-author-card__position {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-2);
    margin: 0 0 12px;
}
.bold-author-card__quote {
    font-style: italic;
    font-size: 15px;
    color: #555;
    border-left: 3px solid var(--color-2);
    padding-left: 14px;
    margin: 0;
}

@media (max-width: 767px) {
    .bold-product-hero__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
    .bold-product-hero__title { font-size: 42px; }
    .bold-cta-strip__inner { flex-direction: column; align-items: flex-start; }
    .bold-author-card { flex-direction: column; }
}


/* ─────────────────────────────────
   ABOUT US — nosotros.php
───────────────────────────────── */

/* Company section */
.bold-about-photo {
    border-radius: 4px;
    box-shadow: 0 10px 32px rgba(0,0,0,0.10);
}
.bold-about-lead {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.65;
    margin-bottom: 20px;
    border-left: 4px solid var(--color-2);
    padding-left: 18px;
}
.bold-about-text { font-size: 14px; color: #444; line-height: 1.85; }
.bold-about-text p { margin-bottom: 14px; }

/* Team grid */
.bold-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.bold-team-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    transition: transform .22s ease, box-shadow .22s ease;
}
.bold-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.bold-team-card__img-wrap {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f0f0f0;
}
.bold-team-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.bold-team-card:hover .bold-team-card__img-wrap img { transform: scale(1.04); }
.bold-team-card__body { padding: 16px 18px 20px; }
.bold-team-card__name {
    font-family: 'Bebas Neue', 'Visby', sans-serif;
    font-size: 20px;
    color: var(--color-1);
    margin: 0 0 4px;
    line-height: 1.1;
}
.bold-team-card__role {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-2);
    margin: 0;
}

/* Purpose section — full-width photo background */
.bold-purpose-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.bold-purpose-overlay {
    padding: 100px 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.82) 0%,
        rgba(0,0,0,0.55) 60%,
        transparent 100%
    );
}
.bold-purpose-inner { max-width: 560px; }
.bold-purpose-title {
    font-family: 'Bebas Neue', 'Visby', sans-serif;
    font-size: 48px;
    color: white;
    line-height: 1.05;
    margin: 0 0 16px;
}
.bold-purpose-text {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    font-weight: 600;
    margin: 0;
}

/* Values */
.bold-value-card {
    padding: 24px;
    background: white;
    border-left: 4px solid var(--color-2);
    border-radius: 0 4px 4px 0;
}
.bold-value-card__num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--color-2);
    line-height: 1;
    margin-bottom: 6px;
    opacity: .4;
}
.bold-value-card__title {
    font-family: 'Bebas Neue', 'Visby', sans-serif;
    font-size: 22px;
    color: var(--color-1);
    margin: 0 0 8px;
    text-transform: none;
}
.bold-value-card__text { font-size: 13px; color: #555; line-height: 1.75; }
.bold-value-card__text p { margin-bottom: 0; }

.bold-values-center-img img {
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

@media (max-width: 991px) {
    .bold-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .bold-team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .bold-purpose-overlay { padding: 60px 0; }
    .bold-purpose-title { font-size: 36px; }
}


/* ─────────────────────────────────
   CONTACT PAGE — contactanos.php
───────────────────────────────── */

.bold-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.bold-contact-block {
    padding: 40px 36px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    background: white;
}
.bold-contact-block--gray { background: var(--section-gray); border-color: transparent; }
.bold-contact-block__icon {
    font-size: 32px;
    color: var(--color-2);
    margin-bottom: 16px;
}
.bold-contact-block__title {
    font-family: 'Bebas Neue', 'Visby', sans-serif;
    font-size: 26px;
    color: var(--color-1);
    margin: 0 0 12px;
}
.bold-contact-block__sub {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin-bottom: 0;
}
.bold-contact-block__text {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
}
.bold-contact-block__text p { margin-bottom: 10px; }

/* Social links in contact */
.bold-contact-social {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bold-contact-social a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Visby', 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-1);
    text-decoration: none;
    transition: color .18s;
}
.bold-contact-social a:hover { color: var(--color-2); }
.bold-contact-social a i { font-size: 20px; width: 24px; text-align: center; }

/* App store links in contact */
.bold-contact-apps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}
.bold-contact-apps img { max-width: 200px; }

@media (max-width: 991px) {
    .bold-contact-grid { grid-template-columns: 1fr; }
}


/* ─────────────────────────────────
   PLATFORMS PAGE — plataformas.php
───────────────────────────────── */

/* Target audiences — 4-col grid */
.bold-platforms-targets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.bold-platform-target {
    padding: 28px 24px;
    border: 1px solid #e8e8e8;
    border-top: 4px solid var(--color-2);
    border-radius: 0 0 4px 4px;
    background: white;
    transition: box-shadow .22s ease;
}
.bold-platform-target:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.09); }
.bold-platform-target__icon {
    font-size: 28px;
    color: var(--color-2);
    margin-bottom: 14px;
}
.bold-platform-target__title {
    font-family: 'Bebas Neue', 'Visby', sans-serif;
    font-size: 20px;
    color: var(--color-1);
    margin: 0 0 10px;
}
.bold-platform-target__text { font-size: 13px; color: #555; line-height: 1.7; margin: 0; }

@media (max-width: 991px) {
    .bold-platforms-targets { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .bold-platforms-targets { grid-template-columns: 1fr; }
}
