/* ============================================
   SECTIONS.CSS — Products, Stats, About, CTA, Footer
   ============================================ */

/* ── INFO BANNERS ── */
.info-banners {
    background: var(--bg-white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-light);
}
.info-banners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.info-banner-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
}
.info-banner-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(var(--color-primary-rgb), 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-banner-icon i { width: 24px; height: 24px; }
.info-banner-text h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.15rem; line-height: 1.2; }
.info-banner-text p { font-size: 0.8rem; color: var(--text-dark-secondary); margin: 0; }

@media (max-width: 1024px) {
    .info-banners-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 480px) {
    .info-banners-grid { grid-template-columns: 1fr; }
    .info-banner-item { padding: 0.5rem 0; }
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--color-primary-rgb), 0.2);
}
.product-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-surface);
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--steel-300);
}
.product-no-image i { width: 48px; height: 48px; }
.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-sale { background: var(--color-primary); color: #fff; }
.product-card-actions {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateY(0); }
.product-action-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}
.product-action-btn:hover {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.1);
}
.product-action-btn i { width: 18px; height: 18px; }
.product-card-body { padding: 1.25rem; }
.product-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin-bottom: 0.35rem;
}
.product-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; line-height: 1.35; }
.product-title a { color: var(--text-dark); }
.product-title a:hover { color: var(--color-primary); }
.product-price { font-family: var(--font-mono); font-size: 1.1rem; font-weight: 600; color: var(--color-primary); }
.product-price del { color: var(--steel-300); font-size: 0.85rem; margin-right: 0.5rem; }
.product-price ins { text-decoration: none; }
.no-products { text-align: center; color: var(--text-dark-secondary); padding: 3rem 0; }

/* ── STATS ── */
.section-stats {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, #d63031 100%);
    padding: 4rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item { color: #fff; }
.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.15);
    margin-bottom: 1rem;
}
.stat-icon i { width: 26px; height: 26px; }
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-mono);
    line-height: 1;
}
.stat-suffix { font-size: 2rem; font-weight: 700; }
.stat-label { display: block; margin-top: 0.35rem; font-size: 0.9rem; opacity: 0.85; font-weight: 500; }

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text {
    font-size: 1.05rem;
    color: var(--text-white-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.about-features { display: flex; flex-direction: column; gap: 1.25rem; }
.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(var(--color-primary-rgb), 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}
.feature-icon i { width: 22px; height: 22px; }
.feature-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.15rem; }
.feature-item p { font-size: 0.85rem; color: var(--text-white-muted); }

.about-visual { position: relative; }
.about-image-wrapper { position: relative; aspect-ratio: 4/3; }
.about-image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--bg-card-dark), rgba(var(--color-primary-rgb), 0.1));
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--steel-300);
}
.about-image-placeholder i { width: 64px; height: 64px; }
.about-image-placeholder span { font-size: 1.1rem; font-weight: 600; }
.about-float-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(var(--color-primary-rgb), 0.95);
    border-radius: var(--radius-lg);
    color: #fff;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}
.about-float-card strong { display: block; font-size: 0.9rem; }
.about-float-card span { display: block; font-size: 0.75rem; opacity: 0.85; }

/* ── CTA BANNER ── */
.section-cta-banner {
    position: relative;
    background: var(--bg-dark);
    padding: 5rem 0;
    overflow: hidden;
    text-align: center;
}
.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(var(--color-primary-rgb), 0.1) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 2; max-width: 650px; margin: 0 auto; }
.cta-title { font-size: 2.5rem; font-weight: 800; color: var(--text-white); margin-bottom: 1rem; }
.cta-subtitle { font-size: 1.1rem; color: var(--text-white-muted); margin-bottom: 2rem; line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── LOCATIONS ── */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.location-card {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}
.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.location-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: rgba(var(--color-primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin: 0 auto 1rem;
}
.location-icon i { width: 28px; height: 28px; }
.location-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.location-address { color: var(--text-dark-secondary); font-size: 0.9rem; margin-bottom: 1rem; }
.location-meta { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.25rem; font-size: 0.8rem; color: var(--steel-500); }
.location-meta span { display: flex; align-items: center; justify-content: center; gap: 0.4rem; }

/* ── FOOTER ── */
.site-footer { background: var(--bg-dark); color: var(--text-white-muted); }
.footer-main { padding: 4rem 0 3rem; border-bottom: 1px solid var(--border-dark); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
}
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 40px; }
.footer-description { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white-muted);
    transition: all var(--transition-fast);
}
.social-link i { width: 18px; height: 18px; }
.social-link:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; transform: translateY(-2px); }

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    position: relative;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
    font-size: 0.9rem;
    color: var(--text-white-muted);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
}
.footer-links a:hover { color: var(--color-primary); transform: translateX(3px); }

.footer-contact { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.85rem; }
.footer-contact li i { color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact li strong { display: block; color: var(--text-white); font-size: 0.85rem; margin-bottom: 0.1rem; }
.footer-contact li a:hover { color: var(--color-primary); }

.footer-bottom {
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--steel-500);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5); }
.whatsapp-icon { width: 30px; height: 30px; }
.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    white-space: nowrap;
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
    box-shadow: var(--shadow-lg);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── PAGE HEADER ── */
.page-header { padding: 3rem 0 2rem; }
.page-header-dark { background: var(--bg-dark); color: var(--text-white); padding-top: 2rem; }
.page-title { font-size: 2rem; font-weight: 800; }
.content-area { padding: 3rem 0; }
.content-grid { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; }
.page-content { line-height: 1.8; }
.page-content h2, .page-content h3 { margin: 2rem 0 1rem; }

/* ── 404 PAGE ── */
.error-404-content { text-align: center; padding: 3rem 0; }
.error-404-code {
    font-size: 8rem;
    font-weight: 900;
    font-family: var(--font-mono);
    background: linear-gradient(135deg, var(--color-primary), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}
.error-404-content h2 { font-size: 2rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text-dark); }
.error-404-content p { color: var(--text-dark-secondary); margin-bottom: 2rem; max-width: 450px; margin-left: auto; margin-right: auto; }
.error-404-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
