﻿/*==================================================
GALERIA MOCKUPS
==================================================*/

.mockups-section {
    padding: 120px 0;
    background: radial-gradient(circle at top right,#f5efff 0%,#ffffff 45%);
}

    .mockups-section .container {
        max-width: 1400px;
        margin: auto;
        padding: 0 30px;
    }

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    background: #efe8ff;
    color: #6A2CD8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-header h2 {
    font-size: 58px;
    font-weight: 800;
    color: #151c38;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-header p {
    max-width: 780px;
    margin: auto;
    color: #68748f;
    font-size: 24px;
    line-height: 1.6;
}

/*==========================================
GRID
==========================================*/

.mockups-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 26px;
}

/*==========================================
CARD
==========================================*/

.mockup-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(45,55,90,.08);
    transition: .35s;
}

    .mockup-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(50,60,100,.18);
    }

    /*==========================================
IMAGEM
==========================================*/

    .mockup-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
        transition: .4s;
    }

    .mockup-card:hover img {
        transform: scale(1.05);
    }

/*==========================================
INFORMAÇÕES
==========================================*/

.mockup-info {
    padding: 28px;
}

    .mockup-info h3 {
        font-size: 32px;
        color: #18233d;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .mockup-info p {
        color: #66738c;
        font-size: 21px;
        line-height: 1.6;
        min-height: 75px;
    }

    .mockup-info a {
        display: inline-block;
        margin-top: 18px;
        color: #6A2CD8;
        font-weight: 700;
        text-decoration: none;
        transition: .3s;
    }

        .mockup-info a:hover {
            transform: translateX(6px);
        }

/*==========================================
RODAPÉ
==========================================*/

.mockups-footer {
    margin-top: 70px;
    text-align: center;
}

    .mockups-footer p {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        padding: 20px 35px;
        border-radius: 18px;
        background: #fff;
        font-size: 22px;
        color: #4f5b78;
        box-shadow: 0 10px 30px rgba(70,70,120,.08);
    }

    .mockups-footer strong {
        color: #6A2CD8;
    }

/*==========================================
RESPONSIVO
==========================================*/

@media(max-width:1200px) {

    .mockups-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .mockups-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 40px;
    }

    .section-header p {
        font-size: 19px;
    }
}
.mockup-info {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.mockup-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #F3EDFF;
    color: #6A2CD8;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    flex-shrink: 0;
}