/* ══════ BRAND PAGE HERO ══════ */
.brand-hero {
    background: var(--negro);
    padding: 140px 0 60px;
}

.brand-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.brand-hero-text {
    flex: 1;
}

.brand-hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--blanco);
    margin: 12px 0 16px;
}

.brand-hero-text h1 span {
    color: var(--rojo);
}

.brand-hero-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 28px;
}

.brand-tier-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.badge-premium {
    background: rgba(212,175,55,0.15);
    color: #D4AF37;
}

.badge-valor {
    background: rgba(66,165,245,0.15);
    color: #42A5F5;
}

/* ══════ PRODUCTS SECTION ══════ */
.products-section {
    padding: 80px 0;
}

.products-section .section-header {
    margin-bottom: 48px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #ECECEC;
    transition: all 0.3s;
}

.product-card:hover {
    border-color: rgba(200,16,46,0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.product-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #FFF3F5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--rojo);
}

.product-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--negro);
    margin-bottom: 8px;
}

.product-card p {
    font-size: 14px;
    color: var(--gris);
    line-height: 1.7;
}

/* ══════ CTA SECTION ══════ */
.brand-cta {
    background: linear-gradient(135deg, var(--negro) 0%, #2D1A1A 100%);
    padding: 80px 0;
    text-align: center;
}

.brand-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--blanco);
    margin-bottom: 16px;
}

.brand-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ══════ WHY SECTION ══════ */
.brand-why {
    padding: 80px 0;
    background: var(--gris-claro);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-item {
    text-align: center;
    padding: 32px 24px;
}

.why-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--negro);
    margin-bottom: 8px;
}

.why-item p {
    font-size: 14px;
    color: var(--gris);
    line-height: 1.6;
}

.why-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--rojo);
    opacity: 0.3;
    margin-bottom: 12px;
    line-height: 1;
}

/* ══════ OTHER BRANDS ══════ */
.other-brands {
    padding: 60px 0;
}

.other-brands-list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
}

.other-brands-list a {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gris);
    padding: 8px 20px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    transition: all 0.3s;
}

.other-brands-list a:hover {
    color: var(--rojo);
    border-color: var(--rojo);
}

/* ══════ RESPONSIVE ══════ */
@media (max-width: 968px) {
    .brand-hero-inner { flex-direction: column; text-align: center; }
    .brand-hero-text p { margin-left: auto; margin-right: auto; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .products-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .brand-hero { padding: 120px 0 40px; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
