/* ===================================
   SÉTIMA SEÇÃO: CTA FINAL
   ===================================*/

#cta-section {
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    min-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Título Principal */
.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* Botão CTA */
.cta-button {
    background: linear-gradient(135deg, #E6B75A 0%, #C69D4F 100%);
    color: #1A212E;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 60px;
    text-transform: capitalize;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(230, 183, 90, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Features Grid */
.cta-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

/* Feature Individual */
.cta-feature {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
}

/* Ícone Check */
.cta-feature-icon {
    width: 24px;
    height: 24px;
    background-color: #FFFFFF;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
}

/* Checkmark dentro do círculo */
.cta-feature-icon::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1A212E;
    font-size: 14px;
    font-weight: 700;
}

/* Conteúdo do Feature */
.cta-feature-content {
    flex: 1;
}

.cta-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.3;
}

.cta-feature-text {
    font-size: 14px;
    font-weight: 400;
    color: #B8C5D6;
    line-height: 1.5;
}

/* Texto Final */
.cta-footer-text {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.6;
    margin-top: 20px;
}

/* ===================================
   MEDIA QUERIES - RESPONSIVIDADE
   ===================================*/

/* Telas grandes (1400px ou mais) */
@media (min-width: 1400px) {
    .cta-container {
        max-width: 1400px;
    }
    
    .cta-title {
        font-size: 54px;
    }
    
    .cta-button {
        font-size: 20px;
        padding: 20px 60px;
    }
    
    .cta-features {
        gap: 50px;
    }
}

/* Telas médias-grandes (1200px - 1399px) */
@media (max-width: 1399px) {
    .cta-title {
        font-size: 46px;
    }
    
    .cta-features {
        gap: 35px;
    }
}

/* Tablets grandes e desktops pequenos (992px - 1199px) */
@media (max-width: 1199px) {
    #cta-section {
        padding: 80px 20px;
    }
    
    .cta-title {
        font-size: 42px;
        margin-bottom: 35px;
    }
    
    .cta-button {
        font-size: 17px;
        padding: 16px 45px;
        margin-bottom: 50px;
    }
    
    .cta-features {
        gap: 30px;
    }
    
    .cta-feature-title {
        font-size: 17px;
    }
    
    .cta-footer-text {
        font-size: 15px;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    #cta-section {
        padding: 70px 20px;
    }
    
    .cta-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 15px 40px;
        margin-bottom: 45px;
    }
    
    /* Features empilhados verticalmente */
    .cta-features {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
        margin: 0 auto 40px;
    }
    
    .cta-feature {
        gap: 12px;
    }
    
    .cta-feature-title {
        font-size: 17px;
    }
    
    .cta-feature-text {
        font-size: 14px;
    }
    
    .cta-footer-text {
        font-size: 15px;
    }
}

/* Mobile grande (576px - 767px) */
@media (max-width: 767px) {
    #cta-section {
        padding: 60px 15px;
    }
    
    .cta-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 15px 40px;
        margin-bottom: 40px;
        width: 100%;
        max-width: 350px;
    }
    
    .cta-features {
        gap: 25px;
    }
    
    .cta-feature-title {
        font-size: 16px;
    }
    
    .cta-feature-text {
        font-size: 13px;
    }
    
    .cta-footer-text {
        font-size: 14px;
    }
}

/* Mobile pequeno (até 575px) */
@media (max-width: 575px) {
    #cta-section {
        padding: 50px 15px;
    }
    
    .cta-title {
        font-size: 28px;
        margin-bottom: 25px;
        line-height: 1.3;
    }
    
    .cta-button {
        font-size: 15px;
        padding: 14px 35px;
        margin-bottom: 35px;
        width: 100%;
        max-width: 300px;
    }
    
    .cta-features {
        gap: 20px;
    }
    
    .cta-feature {
        gap: 10px;
    }
    
    .cta-feature-icon {
        width: 20px;
        height: 20px;
    }
    
    .cta-feature-icon::after {
        font-size: 12px;
    }
    
    .cta-feature-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .cta-feature-text {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .cta-footer-text {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Mobile muito pequeno (até 400px) */
@media (max-width: 400px) {
    .cta-title {
        font-size: 24px;
    }
    
    .cta-button {
        font-size: 14px;
        padding: 13px 30px;
    }
    
    .cta-feature-title {
        font-size: 14px;
    }
    
    .cta-feature-text {
        font-size: 12px;
    }
    
    .cta-footer-text {
        font-size: 12px;
    }
}
