/* ===== MINHA HISTÓRIA SECTION ===== */
.my-story-section {
    margin: 80px 0;
    padding: 40px 0;
}

.story-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745, #ffc107, #dc3545);
}

.story-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.story-photo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.story-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 24px rgba(0, 123, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f9fa;
}

.story-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 123, 255, 0.2);
}

.story-photo-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.story-role {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 123, 255, 0.1);
}

.story-company {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.story-quote {
    color: #007bff;
    font-size: 2rem;
    margin-right: 15px;
    opacity: 0.8;
}

.story-title {
    color: #007bff;
    font-weight: 700;
    margin: 0;
    font-size: 1.8rem;
    text-shadow: 0 1px 2px rgba(0, 123, 255, 0.1);
}

.story-content {
    margin-bottom: 25px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #212529;
    margin-bottom: 20px;
    text-align: justify;
    position: relative;
}

.story-text:last-child {
    margin-bottom: 0;
}

.story-text strong {
    color: #007bff;
    font-weight: 600;
    background: linear-gradient(120deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0.05) 100%);
    padding: 2px 6px;
    border-radius: 4px;
}

.story-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.story-badge {
    background: #007bff;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.story-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.story-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.story-badge:hover::before {
    left: 100%;
}

.story-badge:nth-child(2) {
    background: #28a745;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

.story-badge:nth-child(2):hover {
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.story-badge:nth-child(3) {
    background: #dc3545;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.2);
}

.story-badge:nth-child(3):hover {
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Responsividade para o bloco Minha História */
@media (max-width: 768px) {
    .story-card {
        padding: 30px 20px;
        margin: 20px 0;
    }
    
    .story-photo {
        width: 100px;
        height: 100px;
    }
    
    .story-title {
        font-size: 1.5rem;
    }
    
    .story-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .story-badges {
        justify-content: center;
        gap: 8px;
    }
    
    .story-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .story-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .story-quote {
        font-size: 1.5rem;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .my-story-section {
        margin: 40px 0;
        padding: 20px 0;
    }
    
    .story-card {
        padding: 25px 15px;
    }
    
    .story-photo {
        width: 80px;
        height: 80px;
    }
    
    .story-title {
        font-size: 1.3rem;
    }
    
    .story-text {
        font-size: 0.95rem;
    }
}
