/* ===============================================
   Component: Data Protection Banner
   =============================================== */

.data-protection-section {
    background: #fff;
    padding: 60px 0;
    position: relative;
}

.data-protection-section__container {
    position: relative;
    /* padding: 0 30px; */
    max-width: 83%;
    margin: 0 auto;
    text-align: left;
}

.data-protection-section__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 0;
    border-top: solid 1px #FF6E00;
    border-bottom: none;
}

/* Seta decorativa */
.data-protection-section__arrow svg {
    margin-left: 60%;
}

.data-protection-section__arrow {
    top: 0;
    left: -50px;
    display: inline-block;
    color: #ff6b00;
    margin-bottom: 20px;
    /* animation: bounce 2s infinite; */
}

.data-protection-section__arrow svg {
    width: 32px;
    height: 32px;
}

/* Título */
.data-protection-section__title {
    font-size: 2.125rem;
    font-weight: 700;
    color: #ff6b00;
    margin: 0 0 30px 0;
    line-height: 1.2;
    max-width: 900px;
}

/* Botão CTA */
.data-protection-section__button {
    display: inline-block;
    width: auto;
    background: #ff6b00;
    color: #fff;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
}

.data-protection-section__button:hover {
    background: #e55d00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
    color: #fff;
}

.data-protection-section__button:active {
    transform: translateY(0);
}

/* Animação da seta */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ===============================================
   Responsividade
   =============================================== */

@media (max-width: 768px) {
    .data-protection-section__arrow {
        left: -10px;
    }

    .data-protection-section {
        padding: 40px 20px;
    }

    .data-protection-section__title {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }

    .data-protection-section__button {
        padding: 14px 32px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .data-protection-section__arrow svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .data-protection-section__arrow {
        left: -25px;
    }

    .data-protection-section {
        padding: 30px 15px;
    }

    .data-protection-section__title {
        font-size: 1.5rem;
    }

    .data-protection-section__button {
        font-size: 0.95rem;
        padding: 12px 24px;
    }
}

/* ===============================================
   Variantes (opcional)
   =============================================== */

/* Versão centralizada */
.data-protection-section--centered .data-protection-section__container {
    text-align: center;
}

.data-protection-section--centered .data-protection-section__title {
    margin-left: auto;
    margin-right: auto;
}

/* Versão sem bordas */
.data-protection-section--no-borders {
    border-top: none;
    border-bottom: none;
}

/* Versão com fundo cinza */
.data-protection-section--gray {
    background: #f5f5f5;
}