.secao-cta {
    padding: 80px 0;
    background-color: #fbfbfb; /* Um fundo levemente cinza para destacar a foto branca */
}

.cta-container-interno {
    display: flex;
    align-items: center;
    gap: 50px;
}

.cta-content {
    flex: 1;
    padding-right: 40px;
}

.cta-title {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 2.8rem;
    color: #111;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 1.05rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 35px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--auth-primary, #d09c98);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: var(--auth-primary-hover, #ba8884);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(208, 156, 152, 0.3);
}

.cta-btn i {
    margin-left: 10px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translate(3px, -3px); /* Animação da setinha na diagonal */
}

.cta-image-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-image-wrapper {
    background: #ffffff;
    padding: 15px; /* Simula aquela borda branca do seu protótipo */
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06); /* Sombra elegante */
    margin-bottom: 25px;
    width: 100%;
    max-width: 450px;
}

.cta-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    object-fit: cover;
}

/* Indicadores tipo carrossel (Design do Figma) */
.cta-indicators {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.cta-dot {
    width: 10px;
    height: 10px;
    background-color: #d9d9d9;
    border-radius: 50%;
    display: inline-block;
}

.cta-dot.active {
    width: 30px;
    background-color: var(--auth-primary, #d09c98);
    border-radius: 10px; /* Transforma o círculo ativo em uma "pílula" */
}