/* ==========================================================================
   Sections — Homepage sections
   ========================================================================== */

/* Section CTA */
.section__cta {
    text-align: center;
    margin-top: var(--space-lg);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-grid__image {
    position: relative;
}

.about-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-grid__image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--color-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.6;
}

.about-text {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    text-align: center;
}

.stat {
    padding: var(--space-md);
}

.stat__number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat__label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Video Section */
.video-card__thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
}

.video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.video-card:hover .video-card__play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Product Section */
.product-card__sale {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.product-card__image {
    aspect-ratio: 1;
}

.product-card__price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.product-card__price del {
    color: var(--color-text-light);
    font-weight: 400;
    font-size: 0.9rem;
}

.product-card__price ins {
    text-decoration: none;
}

.product-card__body {
    text-align: center;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: var(--space-xl) 0 var(--space-lg);
    background-color: var(--color-white);
}

.page-header__title {
    margin-bottom: var(--space-xs);
}

.page-header__description {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* 404 */
.error-404 {
    text-align: center;
    padding: var(--space-2xl) 0;
}

.error-404__code {
    font-size: 8rem;
    color: var(--color-primary);
    display: block;
    margin-bottom: var(--space-sm);
}

.error-404__title {
    margin-bottom: var(--space-sm);
}

.error-404__text {
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto var(--space-md);
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* Content none */
.content-none {
    text-align: center;
    padding: var(--space-xl) 0;
}

.content-none h2 {
    margin-bottom: var(--space-sm);
}

.content-none p {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}
