/* =========================================
   6. CREATIVE SECTIONS (About, Stats, Services)
   ========================================= */

/* --- About Section (Asymmetric) --- */
.section-creative-about {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-stack {
    position: relative;
    padding-left: 20px;
}

.img-main {
    border-radius: 20px;
    box-shadow: -20px 20px 0 var(--navy);
    /* Solido decorative shadow */
    width: 90%;
    z-index: 10;
    position: relative;
    transition: transform 0.4s ease;
}

.img-main:hover {
    transform: translateY(-10px);
}

.img-deco {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 180px;
    border-radius: 15px;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 20;
    animation: float-gentle 5s infinite reverse;
}

/* --- Stats Bar (Premium) --- */
.stats-premium {
    background: var(--navy);
    position: relative;
    padding: 80px 0;
    color: white;
    margin: 60px 0;
    border-radius: 30px;
    overflow: hidden;
}

.stats-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.stat-card-creative {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.stat-card-creative:last-child {
    border-right: none;
}

.stat-card-creative:hover {
    transform: translateY(-5px);
}

.stat-icon-gold {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(212, 160, 23, 0.3);
}

.stat-number-big {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

/* --- Services (Interactive Cards) --- */
.service-card-interactive {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--navy);
    transition: height 0.3s ease;
    z-index: -1;
}

.service-card-interactive:hover::before {
    height: 100%;
    /* Fill background on hover */
    background: var(--navy);
}

.service-card-interactive:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(44, 62, 80, 0.2);
}

.service-card-interactive:hover h3,
.service-card-interactive:hover p {
    color: white;
}

.service-card-interactive:hover .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: rotateY(180deg);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-body);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 25px;
    transition: all 0.5s ease;
}

/* --- CTA Clean --- */
.cta-clean {
    background: linear-gradient(135deg, var(--bg-body) 0%, #fff 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
}