:root {
        --primary-blue: #34454D;
        --secondary-blue: #4a6572;
        --secondary-yellow: #ffcc00;
        --light-gray: #f9f9f9;
        --medium-gray: #777;
        --dark-gray: #333;
        --white: #ffffff;
        --transition: all 0.3s ease;
    }

    /* Hero Section Modernizada */
    .modern-hero {
        position: relative;
        height: 85vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        overflow: hidden;
        background: var(--primary-blue);
    }

    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        color: var(--white);
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        font-weight: 700;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);

    }

    .hero-content p {
        font-size: 1.25rem;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;

    }

    .hero-cta {
        display: inline-flex;
        gap: 15px;
        margin-top: 20px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 30px;
        border-radius: 50px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        transition: var(--transition);
        display: inline-block;
    }

    .btn-primary {
        background: var(--secondary-yellow);
        color: var(--dark-gray);
        border: 2px solid var(--secondary-yellow);
    }

    .btn-primary:hover {
        background: transparent;
        color: var(--secondary-yellow);
    }

    .btn-secondary {
        background: transparent;
        color: var(--white);
        border: 2px solid var(--white);
    }

    .btn-secondary:hover {
        background: var(--white);
        color: var(--primary-blue);
    }

    /* Conteúdo Principal Modernizado */
    .qualification-content {
        padding: 100px 0;
    }

    .content-section {
        margin-bottom: 100px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        color: var(--primary-blue);
        font-size: 2.5rem;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }

    .section-header h2:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--secondary-yellow);
    }

    .section-header p {
        max-width: 700px;
        margin: 30px auto 0;
        color: var(--medium-gray);
        font-size: 1.1rem;
        line-height: 1.7;
        text-align: justify;
    }

    /* Layout de Introdução Moderno */
    .intro-modern {
        display: flex;
        align-items: center;
        gap: 60px;
        margin-bottom: 80px;
    }

    .intro-visual {
        flex: 1;
        position: relative;
    }

    .intro-image {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        position: relative;
    }

    .intro-image:before {
        content: '';
        position: absolute;
        top: -10px;
        right: -10px;
        bottom: -10px;
        left: -10px;
        border: 2px solid var(--secondary-yellow);
        border-radius: 15px;
        z-index: -1;
        opacity: 0.5;
    }

    .intro-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.7s ease;
    }

    .intro-image:hover img {
        transform: scale(1.05);
    }

    .intro-text {
        flex: 1;
    }

    .intro-text h2 {
        color: var(--primary-blue);
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

    .intro-text p {
        margin-bottom: 20px;
        line-height: 1.8;
        color: var(--dark-gray);
        text-align: justify;
    }

    /* Definição com Design Moderno */
    .definition-modern {
        background: var(--light-gray);
        padding: 80px 0;
        position: relative;
    }

    .definition-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
    }

    .definition-highlight {
        font-size: 1.8rem;
        line-height: 1.6;
        color: var(--primary-blue);
        font-weight: 600;
        text-align: center;
        padding: 40px;
        border-left: 5px solid var(--secondary-yellow);
        background: var(--white);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        margin-bottom: 30px;
        position: relative;
    }

    .definition-highlight:before {
        content: '"';
        font-size: 6rem;
        color: rgba(0, 0, 0, 0.05);
        position: absolute;
        top: 0;
        left: 20px;
        line-height: 1;
        font-family: 'Source Serif Pro', serif;
    }

    .norm-reference {
        background: var(--white);
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-top: 30px;
    }

    /* Grid de Tipos de Qualificação Moderno - ATUALIZADO PARA 2 COLUNAS */
    .types-grid-modern {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin: 60px 0;
    }

    .type-card-modern {
        background: var(--white);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .type-card-modern:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .card-image {
        height: 240px;
        overflow: hidden;
        position: relative;
    }

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .type-card-modern:hover .card-image img {
        transform: scale(1.1);
    }

    .card-content {
        padding: 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .card-content h3 {
        color: var(--primary-blue);
        font-size: 1.5rem;
        margin-bottom: 15px;
        position: relative;
        padding-bottom: 15px;
    }

    .card-content h3:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background-color: var(--secondary-yellow);
    }

    .card-content p {
        color: var(--dark-gray);
        line-height: 1.7;
        margin-bottom: 20px;
        flex-grow: 1;
        text-align: justify;
    }

    /* Checklist Moderno */
    .checklist-modern {
        margin: 0px 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .checklist-modern li {
        margin-bottom: 15px;
        position: relative;
        padding-left: 35px;
        line-height: 1.6;
        list-style: none;
    }

    .checklist-modern li:before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0;
        color: var(--secondary-yellow);
        font-weight: bold;
        font-size: 1.2rem;
        background: rgba(255, 204, 0, 0.1);
        width: 26px;
        height: 26px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* Fases de Qualificação em Duas Colunas - DESIGN RESPONSIVO */
.qualification-phases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.phase-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.phase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.phase-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 15px;
}

.phase-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--secondary-yellow);
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.phase-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.phase-content {
    padding: 30px;
    flex-grow: 1;
}

.phase-content p {
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.7;
    font-weight: 500;
}

.phase-content ul {
    list-style: none;
    padding-left: 0;
}

.phase-content li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
}

.phase-content li:before {
    content: "•";
    color: var(--secondary-yellow);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* RESPONSIVIDADE - Correção para mobile */
@media (max-width: 992px) {
    .qualification-phases {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 40px 0;
    }

    .phase-header {
        padding: 20px 25px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .phase-number {
        min-width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    .phase-header h3 {
        font-size: 1.3rem;
    }

    .phase-content {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .qualification-phases {
        gap: 20px;
        margin: 30px 0;
    }

    .phase-header {
        padding: 18px 20px;
    }

    .phase-content {
        padding: 20px;
    }

    .phase-content p {
        margin-bottom: 15px;
        font-size: 0.95rem;
    }

    .phase-content li {
        margin-bottom: 10px;
        padding-left: 25px;
        font-size: 0.95rem;
    }

    .phase-content li:before {
        font-size: 1.3rem;
        top: -3px;
    }
}

@media (max-width: 480px) {
    .phase-header {
        padding: 15px;
    }

    .phase-number {
        min-width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }

    .phase-header h3 {
        font-size: 1.2rem;
    }

    .phase-content {
        padding: 18px;
    }

    .phase-content li {
        padding-left: 22px;
    }
}
    /* Info Box Moderno */
    .info-box-modern {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
        color: var(--white);
        padding: 40px;
        border-radius: 10px;
        margin: 50px 0;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    /* CTA Moderno */
    .cta-modern {
        background: linear-gradient(to right, var(--primary-blue) 0%, var(--secondary-blue) 100%);
        color: var(--white);
        padding: 100px 0;
        text-align: center;
        border-radius: 15px;
        margin: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .cta-modern:before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 200%;
        background: rgba(255, 255, 255, 0.05);
        transform: rotate(30deg);
    }

    .cta-modern h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        position: relative;
    }

    .cta-modern p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto 40px;
        position: relative;
    }

    .cta-modern .btn-primary {
        position: relative;
        z-index: 2;
    }

    /* Seção de Vídeo - NOVA */
    .video-section {
        margin: 80px 0;
        padding: 60px 0;
        background-color: var(--light-gray);
    }

    .video-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .video-wrapper {
        position: relative;
        padding-bottom: 56.25%;
        /* Proporção 16:9 */
        height: 0;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    .video-description {
        margin-top: 30px;
        text-align: center;
    }

    .video-description h3 {
        color: var(--primary-blue);
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .video-description p {
        color: var(--dark-gray);
        line-height: 1.7;
        max-width: 800px;
        margin: 0 auto;
        text-align: justify;
    }

    /* Responsividade */
    @media (max-width: 1200px) {
        .hero-content h1 {
            font-size: 3rem;

        }

        .types-grid-modern {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 992px) {
        .intro-modern {
            flex-direction: column;
            gap: 40px;
        }

        .modern-hero {
            height: auto;
            padding: 120px 0 80px;
        }

        .hero-content h1 {
            font-size: 2.5rem;

        }

        .types-grid-modern {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
    }

    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 2.2rem;
        }

        .hero-cta {
            flex-direction: column;
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }

        .btn-primary,
        .btn-secondary {
            width: 100%;
            text-align: center;
            margin-bottom: 15px;
        }

        .section-header h2 {
            font-size: 2rem;
        }

        .definition-highlight {
            font-size: 1.4rem;
            padding: 30px 20px;
        }

        .phase-grid-modern,
        .norm-grid-modern {
            grid-template-columns: 1fr;
        }

        .checklist-modern {
            grid-template-columns: 1fr;
        }

        .cta-modern {
            padding: 70px 0;
        }

        .cta-modern h2 {
            font-size: 2rem;
        }

        .types-grid-modern {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 576px) {
        .hero-content h1 {
            font-size: 1.8rem;
        }

        .hero-content p {
            font-size: 1rem;
        }

        .section-header h2 {
            font-size: 1.8rem;
        }

        .card-image {
            height: 200px;
        }

        .types-grid-modern {
            grid-template-columns: 1fr;
        }
    }

