.indicado {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.indicado-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.indicado-text {
    padding-right: 2rem;
}

.section-title {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-description {
    color: #636e72;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.beneficios-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.beneficio-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beneficio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Cores específicas para cada segmento */
.beneficio-item:nth-child(1) .icon-wrapper {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
}

.beneficio-item:nth-child(2) .icon-wrapper {
    background: linear-gradient(135deg, #4ecdc4 0%, #6be5dc 100%);
}

.beneficio-item:nth-child(3) .icon-wrapper {
    background: linear-gradient(135deg, #6c5ce7 0%, #a55eea 100%);
}

.beneficio-item:nth-child(4) .icon-wrapper {
    background: linear-gradient(135deg, #0984e3 0%, #74b9ff 100%);
}

.icon-wrapper i {
    color: white;
    font-size: 1.5rem;
}

.beneficio-text h3 {
    color: #2d3436;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.beneficio-text p {
    color: #636e72;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #6c5ce7 0%, #a55eea 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.btn-outline {
    border: 2px solid #6c5ce7;
    color: #6c5ce7;
}

.btn-outline:hover {
    background: #6c5ce7;
    color: white;
    transform: translateY(-2px);
}

.indicado-illustration {
    position: relative;
}

.illustration-wrapper {
    position: relative;
    z-index: 1;
}

.illustration-wrapper img {
    width: 100%;
    height: auto;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    color: #6c5ce7;
    font-size: 1.2rem;
}

.floating-badge span {
    color: #2d3436;
    font-weight: 500;
    font-size: 0.9rem;
}

.badge-top {
    top: 10%;
    right: -5%;
    animation-delay: 0.5s;
}

.badge-bottom {
    bottom: 10%;
    left: -5%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom right, transparent 49%, #fff 50%);
}

/* Responsividade */
@media (max-width: 992px) {
    .indicado-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .indicado-text {
        padding-right: 0;
    }

    .beneficios-list {
        grid-template-columns: 1fr;
    }

    .floating-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .indicado {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .beneficio-item {
        padding: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
